body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Saira', sans-serif;
  font-size: 1.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-2 {
  font-family: 'Saira', sans-serif;
  font-size: 1.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-4 {
  font-family: 'Saira', sans-serif;
  font-size: 0.6rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 0.75rem;
}
.display-5 {
  font-family: 'Saira', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-7 {
  font-family: 'Saira', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1rem;
}
/* ---- 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: 1.12rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 0.98rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.48rem;
    font-size: calc( 0.86rem + (0.6 - 0.86) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.86rem + (0.6 - 0.86) * ((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.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))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #414b54 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #fde513 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #414b54 !important;
  border-color: #414b54 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #1b1f23 !important;
  border-color: #1b1f23 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1b1f23 !important;
  border-color: #1b1f23 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fde513 !important;
  border-color: #fde513 !important;
  color: #110f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #b8a502 !important;
  border-color: #b8a502 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #110f00 !important;
  background-color: #b8a502 !important;
  border-color: #b8a502 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #414b54;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #1b1f23 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #414b54 !important;
  border-color: #414b54 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fde513;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #b8a502 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #110f00 !important;
  background-color: #fde513 !important;
  border-color: #fde513 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #414b54 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #fde513 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #15181a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #a99701 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #414b54;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #fde513;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #414b54;
  border-color: #414b54;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #414b54;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b5bec6;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fffbdd;
}
.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: 'Saira', sans-serif;
  font-size: 0.6rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 0.75rem;
}
.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: #414b54 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Saira', sans-serif;
  font-size: 0.6rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 0.75rem;
}
blockquote {
  border-color: #414b54;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #414b54;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #414b54;
}
.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: #414b54;
  border-bottom-color: #414b54;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #414b54 !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='%23414b54' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-vhaEzLkHEH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vhaEzLkHEH nav.navbar {
  position: fixed;
}
.cid-vhaEzLkHEH .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-vhaEzLkHEH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vhaEzLkHEH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vhaEzLkHEH .dropdown-item:hover,
.cid-vhaEzLkHEH .dropdown-item:focus {
  background: #414b54 !important;
  color: white !important;
}
.cid-vhaEzLkHEH .dropdown-item:hover span {
  color: white;
}
.cid-vhaEzLkHEH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vhaEzLkHEH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vhaEzLkHEH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vhaEzLkHEH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vhaEzLkHEH .nav-link {
  position: relative;
}
.cid-vhaEzLkHEH .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vhaEzLkHEH .container {
    flex-wrap: wrap;
  }
}
.cid-vhaEzLkHEH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vhaEzLkHEH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vhaEzLkHEH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vhaEzLkHEH .dropdown-menu,
.cid-vhaEzLkHEH .navbar.opened {
  background: #ffffff !important;
}
.cid-vhaEzLkHEH .nav-item:focus,
.cid-vhaEzLkHEH .nav-link:focus {
  outline: none;
}
.cid-vhaEzLkHEH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vhaEzLkHEH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vhaEzLkHEH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vhaEzLkHEH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vhaEzLkHEH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vhaEzLkHEH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vhaEzLkHEH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-vhaEzLkHEH .navbar.opened {
  transition: all 0.3s;
}
.cid-vhaEzLkHEH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vhaEzLkHEH .navbar .navbar-logo img {
  width: auto;
}
.cid-vhaEzLkHEH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vhaEzLkHEH .navbar.collapsed {
  justify-content: center;
}
.cid-vhaEzLkHEH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vhaEzLkHEH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vhaEzLkHEH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-vhaEzLkHEH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vhaEzLkHEH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vhaEzLkHEH .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-vhaEzLkHEH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vhaEzLkHEH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vhaEzLkHEH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vhaEzLkHEH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vhaEzLkHEH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vhaEzLkHEH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vhaEzLkHEH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vhaEzLkHEH .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-vhaEzLkHEH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vhaEzLkHEH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vhaEzLkHEH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vhaEzLkHEH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vhaEzLkHEH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vhaEzLkHEH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vhaEzLkHEH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vhaEzLkHEH .navbar.navbar-short {
  min-height: 60px;
}
.cid-vhaEzLkHEH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vhaEzLkHEH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vhaEzLkHEH .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-vhaEzLkHEH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vhaEzLkHEH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vhaEzLkHEH .dropdown-item.active,
.cid-vhaEzLkHEH .dropdown-item:active {
  background-color: transparent;
}
.cid-vhaEzLkHEH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vhaEzLkHEH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vhaEzLkHEH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vhaEzLkHEH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vhaEzLkHEH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vhaEzLkHEH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vhaEzLkHEH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vhaEzLkHEH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vhaEzLkHEH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vhaEzLkHEH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vhaEzLkHEH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vhaEzLkHEH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vhaEzLkHEH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vhaEzLkHEH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vhaEzLkHEH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vhaEzLkHEH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vhaEzLkHEH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vhaEzLkHEH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vhaEzLkHEH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vhaEzLkHEH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vhaEzLkHEH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vhaEzLkHEH .navbar {
    height: 70px;
  }
  .cid-vhaEzLkHEH .navbar.opened {
    height: auto;
  }
  .cid-vhaEzLkHEH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vhaZEuvLZP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vhaZEuvLZP .carousel {
  height: 800px;
}
.cid-vhaZEuvLZP .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vhaZEuvLZP .carousel-item,
.cid-vhaZEuvLZP .carousel-inner {
  height: 100%;
}
.cid-vhaZEuvLZP .carousel-caption {
  bottom: 40px;
  z-index: 1;
}
.cid-vhaZEuvLZP .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-vhaZEuvLZP .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-vhaZEuvLZP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-vhaZEuvLZP .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-vhaZEuvLZP .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-vhaZEuvLZP .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-vhaZEuvLZP .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-vhaZEuvLZP .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vhaZEuvLZP .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhaZEuvLZP .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhaZEuvLZP .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vhaZEuvLZP .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-vhaZEuvLZP .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-vhaZEuvLZP .carousel-indicators li.active,
.cid-vhaZEuvLZP .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vhaZEuvLZP .carousel-indicators li::after,
.cid-vhaZEuvLZP .carousel-indicators li::before {
  content: none;
}
.cid-vhaZEuvLZP .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vhaZEuvLZP .carousel-indicators {
    display: none !important;
  }
}
.cid-vhs3gCW6P0 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-vhs3gCW6P0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs3gCW6P0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs3gCW6P0 .mbr-section-title {
  color: #ffffff;
}
.cid-vhvU7quyw0 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vhvU7quyw0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhvU7quyw0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhpAo0c1Ar {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vhpAo0c1Ar .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhpAo0c1Ar .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhpAo0c1Ar .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vhpAo0c1Ar .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vhpAo0c1Ar .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vhpAo0c1Ar .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vhpAo0c1Ar .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vhpAo0c1Ar .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vhpAo0c1Ar .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vhpAo0c1Ar .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vhpAo0c1Ar .card-title {
  text-align: center;
}
.cid-vhpAo0c1Ar .mbr-text,
.cid-vhpAo0c1Ar .mbr-section-btn {
  text-align: center;
}
.cid-vhvYH9NFaz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhvYH9NFaz img,
.cid-vhvYH9NFaz .item-img {
  width: 100%;
}
.cid-vhvYH9NFaz .item:focus,
.cid-vhvYH9NFaz span:focus {
  outline: none;
}
.cid-vhvYH9NFaz .item-wrapper {
  position: relative;
}
.cid-vhvYH9NFaz .slide-content {
  position: relative;
  border-radius: 4px;
  background: #414b54;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhvYH9NFaz .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhvYH9NFaz .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhvYH9NFaz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhvYH9NFaz .mbr-section-title {
  color: #232323;
}
.cid-vhvYH9NFaz .mbr-text,
.cid-vhvYH9NFaz .mbr-section-btn {
  text-align: center;
}
.cid-vhvYH9NFaz .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-vhvYH9NFaz .item-subtitle {
  text-align: left;
}
.cid-vhvYH9NFaz .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhvYH9NFaz .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhvYH9NFaz .embla__button--next,
.cid-vhvYH9NFaz .embla__button--prev {
  display: flex;
}
.cid-vhvYH9NFaz .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhvYH9NFaz .embla__button {
    display: none;
  }
}
.cid-vhvYH9NFaz .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhvYH9NFaz .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhvYH9NFaz .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhvYH9NFaz .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhvYH9NFaz .embla__button {
    top: auto;
  }
}
.cid-vhvYH9NFaz .embla {
  position: relative;
  width: 100%;
}
.cid-vhvYH9NFaz .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhvYH9NFaz .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhvYH9NFaz .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhvYH9NFaz .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhw1cxJ0uZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/kapak-resimleri-20188-1920x800.jpg");
}
.cid-vhw1cxJ0uZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhw1cxJ0uZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhw1cxJ0uZ .mbr-text,
.cid-vhw1cxJ0uZ .mbr-section-btn {
  color: #232323;
}
.cid-vhw1cxJ0uZ .card-title,
.cid-vhw1cxJ0uZ .card-box {
  color: #ffffff;
}
.cid-vhw1cxJ0uZ .mbr-text,
.cid-vhw1cxJ0uZ .link-wrap {
  color: #ffffff;
}
.cid-vhs0c7BVLZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhs0c7BVLZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs0c7BVLZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs0c7BVLZ .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vhs0c7BVLZ .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vhs0c7BVLZ .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vhs0c7BVLZ .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vhs0c7BVLZ .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vhs0c7BVLZ .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vhs0c7BVLZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vhs0c7BVLZ .card-title {
  text-align: center;
}
.cid-vhs0c7BVLZ .mbr-text,
.cid-vhs0c7BVLZ .mbr-section-btn {
  text-align: center;
}
.cid-vhw6pU66zh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhw6pU66zh img,
.cid-vhw6pU66zh .item-img {
  width: 100%;
}
.cid-vhw6pU66zh .item:focus,
.cid-vhw6pU66zh span:focus {
  outline: none;
}
.cid-vhw6pU66zh .item-wrapper {
  position: relative;
}
.cid-vhw6pU66zh .slide-content {
  position: relative;
  border-radius: 4px;
  background: #414b54;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhw6pU66zh .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhw6pU66zh .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhw6pU66zh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhw6pU66zh .mbr-section-title {
  color: #232323;
}
.cid-vhw6pU66zh .mbr-text,
.cid-vhw6pU66zh .mbr-section-btn {
  text-align: left;
}
.cid-vhw6pU66zh .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-vhw6pU66zh .item-subtitle {
  text-align: left;
}
.cid-vhw6pU66zh .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhw6pU66zh .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhw6pU66zh .embla__button--next,
.cid-vhw6pU66zh .embla__button--prev {
  display: flex;
}
.cid-vhw6pU66zh .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhw6pU66zh .embla__button {
    display: none;
  }
}
.cid-vhw6pU66zh .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhw6pU66zh .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhw6pU66zh .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhw6pU66zh .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhw6pU66zh .embla__button {
    top: auto;
  }
}
.cid-vhw6pU66zh .embla {
  position: relative;
  width: 100%;
}
.cid-vhw6pU66zh .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhw6pU66zh .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhw6pU66zh .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhw6pU66zh .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhpBmTBBlc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/elit-camli-korkuluk-slider-203-2000x1212.png");
}
.cid-vhpBmTBBlc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhpBmTBBlc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhpBmTBBlc .mbr-text,
.cid-vhpBmTBBlc .mbr-section-btn {
  color: #232323;
}
.cid-vhpBmTBBlc .card-title,
.cid-vhpBmTBBlc .card-box {
  color: #ffffff;
}
.cid-vhpBmTBBlc .mbr-text,
.cid-vhpBmTBBlc .link-wrap {
  color: #ffffff;
}
.cid-vhwaHJqa4e {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhwaHJqa4e .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwaHJqa4e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhwaHJqa4e .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vhwaHJqa4e .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vhwaHJqa4e .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vhwaHJqa4e .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vhwaHJqa4e .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vhwaHJqa4e .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vhwaHJqa4e .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vhwaHJqa4e .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vhwbkli6Ju {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhwbkli6Ju img,
.cid-vhwbkli6Ju .item-img {
  width: 100%;
}
.cid-vhwbkli6Ju .item:focus,
.cid-vhwbkli6Ju span:focus {
  outline: none;
}
.cid-vhwbkli6Ju .item-wrapper {
  position: relative;
}
.cid-vhwbkli6Ju .slide-content {
  position: relative;
  border-radius: 4px;
  background: #414b54;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhwbkli6Ju .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhwbkli6Ju .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhwbkli6Ju .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhwbkli6Ju .mbr-section-title {
  color: #232323;
}
.cid-vhwbkli6Ju .mbr-text,
.cid-vhwbkli6Ju .mbr-section-btn {
  text-align: left;
}
.cid-vhwbkli6Ju .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-vhwbkli6Ju .item-subtitle {
  text-align: left;
}
.cid-vhwbkli6Ju .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhwbkli6Ju .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhwbkli6Ju .embla__button--next,
.cid-vhwbkli6Ju .embla__button--prev {
  display: flex;
}
.cid-vhwbkli6Ju .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhwbkli6Ju .embla__button {
    display: none;
  }
}
.cid-vhwbkli6Ju .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhwbkli6Ju .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhwbkli6Ju .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhwbkli6Ju .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhwbkli6Ju .embla__button {
    top: auto;
  }
}
.cid-vhwbkli6Ju .embla {
  position: relative;
  width: 100%;
}
.cid-vhwbkli6Ju .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhwbkli6Ju .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhwbkli6Ju .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhwbkli6Ju .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhpCK6y78g {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vhpCK6y78g .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhpCK6y78g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhpCK6y78g .img-wrapper {
  text-align: center;
  padding-bottom: 2rem;
}
.cid-vhpCK6y78g img {
  margin: auto;
  width: 140px;
}
.cid-vhpCK6y78g .row {
  align-items: flex-start;
}
.cid-vhpCK6y78g .item-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 992px) {
  .cid-vhpCK6y78g .item-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-vhpCK6y78g .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vhpCK6y78g .item-wrapper {
    padding: 1rem;
  }
}
.cid-vhwgCNSomZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vhwgCNSomZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwgCNSomZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vhwgCNSomZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vhwgCNSomZ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vhwgCNSomZ .text-wrapper {
    padding: 2rem;
  }
}
.cid-vhwiNnuO4X {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-vhwiNnuO4X .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwiNnuO4X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhwiNnuO4X .mbr-section-title {
  color: #ffffff;
}
.cid-vhwiNnuO4X .mbr-text,
.cid-vhwiNnuO4X .mbr-section-btn {
  color: #ffffff;
}
.cid-vhaLJCGq1Y {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #414b54;
}
.cid-vhaLJCGq1Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhaLJCGq1Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhaLJCGq1Y .mbr-section-title {
  color: #ffffff;
}
.cid-vhaEBypbux {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vhaEBypbux .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhaEBypbux .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhaEBypbux .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vhaEBypbux .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vhaEBypbux .row {
    text-align: center;
  }
  .cid-vhaEBypbux .row > div {
    margin: auto;
  }
  .cid-vhaEBypbux .social-row {
    justify-content: center;
  }
}
.cid-vhaEBypbux .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vhaEBypbux .list {
  list-style: none;
  padding-left: 0;
  color: #414b54;
}
@media (max-width: 991px) {
  .cid-vhaEBypbux .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vhaEBypbux .list {
    margin-bottom: 0rem;
  }
}
.cid-vhaEBypbux .mbr-text {
  color: #414b54;
}
.cid-vhaEBypbux .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vhaEBypbux .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vhaEBypbux div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vhaEBypbux .mbr-section-subtitle {
  color: #232323;
}
.cid-vhaEBypbux H5 {
  color: #232323;
}
.cid-vhaGvoZv0m {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-vhaGvoZv0m .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhaGvoZv0m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhaGvoZv0m .media-container-row {
  justify-content: space-between;
}
.cid-vhaGvoZv0m .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-vhaGvoZv0m .text-content {
    max-width: none;
  }
}
.cid-vhaGvoZv0m .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #414b54;
  border: 2px solid #414b54;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-vhaGvoZv0m .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-vhaGvoZv0m .mbr-iconfont-social:hover {
  background-color: #414b54;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-vhaGvoZv0m .icons {
    justify-content: center !important;
  }
  .cid-vhaGvoZv0m .text-content * {
    text-align: center;
  }
}
.cid-vhaGvoZv0m .mbr-section-title {
  color: #414b54;
}
.cid-vhaGvoZv0m P {
  color: #414b54;
}
.cid-vhaGPNdKl6 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vhaGPNdKl6 img,
.cid-vhaGPNdKl6 .item-img {
  width: 100%;
}
.cid-vhaGPNdKl6 .item:focus,
.cid-vhaGPNdKl6 span:focus {
  outline: none;
}
.cid-vhaGPNdKl6 .item-wrapper {
  position: relative;
}
.cid-vhaGPNdKl6 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhaGPNdKl6 .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhaGPNdKl6 .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhaGPNdKl6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhaGPNdKl6 .mbr-section-title {
  color: #414b54;
}
.cid-vhaGPNdKl6 .mbr-text,
.cid-vhaGPNdKl6 .mbr-section-btn {
  text-align: left;
}
.cid-vhaGPNdKl6 .item-title {
  text-align: center;
}
.cid-vhaGPNdKl6 .item-subtitle {
  text-align: left;
}
.cid-vhaGPNdKl6 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhaGPNdKl6 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhaGPNdKl6 .embla__button--next,
.cid-vhaGPNdKl6 .embla__button--prev {
  display: flex;
}
.cid-vhaGPNdKl6 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhaGPNdKl6 .embla__button {
    display: none;
  }
}
.cid-vhaGPNdKl6 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhaGPNdKl6 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhaGPNdKl6 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhaGPNdKl6 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhaGPNdKl6 .embla__button {
    top: auto;
  }
}
.cid-vhaGPNdKl6 .embla {
  position: relative;
  width: 100%;
}
.cid-vhaGPNdKl6 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhaGPNdKl6 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhaGPNdKl6 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhaGPNdKl6 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhaGPNdKl6 .mbr-section-subtitle {
  color: #414b54;
}
.cid-vhaGC8iDth {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vhaGC8iDth .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhaGC8iDth .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhaGC8iDth .nav-tabs .nav-item.open .nav-link:focus,
.cid-vhaGC8iDth .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-vhaGC8iDth .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #fce412;
}
@media (max-width: 767px) {
  .cid-vhaGC8iDth .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-vhaGC8iDth .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-vhaGC8iDth .nav-tabs .nav-link:not(.active) {
  color: #414b54;
}
.cid-vhaGC8iDth .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-vhaGC8iDth .nav-link,
.cid-vhaGC8iDth .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-vhaGC8iDth .nav-tabs .nav-link.active {
  color: #fce412;
  border-bottom: 3px solid #fce412;
}
.cid-vhaGC8iDth H4 {
  text-align: center;
}
.cid-vhaGC8iDth H3 {
  text-align: left;
  color: #3e4750;
}
.cid-vhaGwpqkSQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kapak-resimlerim-2011-1920x600.jpg");
}
.cid-vhaGwpqkSQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhaGwpqkSQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhaGwpqkSQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vhs6G6deG5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vhs6G6deG5 nav.navbar {
  position: fixed;
}
.cid-vhs6G6deG5 .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-vhs6G6deG5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vhs6G6deG5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vhs6G6deG5 .dropdown-item:hover,
.cid-vhs6G6deG5 .dropdown-item:focus {
  background: #414b54 !important;
  color: white !important;
}
.cid-vhs6G6deG5 .dropdown-item:hover span {
  color: white;
}
.cid-vhs6G6deG5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vhs6G6deG5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vhs6G6deG5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vhs6G6deG5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vhs6G6deG5 .nav-link {
  position: relative;
}
.cid-vhs6G6deG5 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vhs6G6deG5 .container {
    flex-wrap: wrap;
  }
}
.cid-vhs6G6deG5 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vhs6G6deG5 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vhs6G6deG5 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vhs6G6deG5 .dropdown-menu,
.cid-vhs6G6deG5 .navbar.opened {
  background: #ffffff !important;
}
.cid-vhs6G6deG5 .nav-item:focus,
.cid-vhs6G6deG5 .nav-link:focus {
  outline: none;
}
.cid-vhs6G6deG5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vhs6G6deG5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vhs6G6deG5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vhs6G6deG5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vhs6G6deG5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vhs6G6deG5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vhs6G6deG5 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-vhs6G6deG5 .navbar.opened {
  transition: all 0.3s;
}
.cid-vhs6G6deG5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vhs6G6deG5 .navbar .navbar-logo img {
  width: auto;
}
.cid-vhs6G6deG5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vhs6G6deG5 .navbar.collapsed {
  justify-content: center;
}
.cid-vhs6G6deG5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vhs6G6deG5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vhs6G6deG5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-vhs6G6deG5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vhs6G6deG5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vhs6G6deG5 .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-vhs6G6deG5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vhs6G6deG5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vhs6G6deG5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vhs6G6deG5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vhs6G6deG5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vhs6G6deG5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vhs6G6deG5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vhs6G6deG5 .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-vhs6G6deG5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vhs6G6deG5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vhs6G6deG5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vhs6G6deG5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vhs6G6deG5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vhs6G6deG5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vhs6G6deG5 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vhs6G6deG5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-vhs6G6deG5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vhs6G6deG5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vhs6G6deG5 .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-vhs6G6deG5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vhs6G6deG5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vhs6G6deG5 .dropdown-item.active,
.cid-vhs6G6deG5 .dropdown-item:active {
  background-color: transparent;
}
.cid-vhs6G6deG5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vhs6G6deG5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vhs6G6deG5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vhs6G6deG5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vhs6G6deG5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vhs6G6deG5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vhs6G6deG5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vhs6G6deG5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vhs6G6deG5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vhs6G6deG5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vhs6G6deG5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vhs6G6deG5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vhs6G6deG5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vhs6G6deG5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vhs6G6deG5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vhs6G6deG5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vhs6G6deG5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vhs6G6deG5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vhs6G6deG5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vhs6G6deG5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vhs6G6deG5 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vhs6G6deG5 .navbar {
    height: 70px;
  }
  .cid-vhs6G6deG5 .navbar.opened {
    height: auto;
  }
  .cid-vhs6G6deG5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vhs70espGI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/kapak-resimleri-20204-1920x583.jpg");
}
.cid-vhs70espGI .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs70espGI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhyyIIMYAH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhyyIIMYAH .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhyyIIMYAH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhyyWSC6qo {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhyyWSC6qo .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhyyWSC6qo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhyyWSC6qo .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vhyyWSC6qo .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-vhyzVWDAcF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhyzVWDAcF blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-vhyzWF9DyJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhyzWF9DyJ blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-vhyzXfO1xT {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhyzXfO1xT blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-vhwoS5TZlH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vhwoS5TZlH .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwoS5TZlH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhwoS5TZlH .img-wrapper {
  text-align: center;
  padding-bottom: 2rem;
}
.cid-vhwoS5TZlH img {
  margin: auto;
  width: 140px;
}
.cid-vhwoS5TZlH .row {
  align-items: flex-start;
}
.cid-vhwoS5TZlH .item-wrapper {
  border-radius: 4px;
  background: #bbbbbb;
}
@media (max-width: 992px) {
  .cid-vhwoS5TZlH .item-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-vhwoS5TZlH .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vhwoS5TZlH .item-wrapper {
    padding: 1rem;
  }
}
.cid-vhwoQHoIxr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vhwoQHoIxr .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwoQHoIxr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vhwoQHoIxr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vhwoQHoIxr img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vhwoQHoIxr .text-wrapper {
    padding: 2rem;
  }
}
.cid-vhwoPhatiZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-vhwoPhatiZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwoPhatiZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhwoPhatiZ .mbr-section-title {
  color: #ffffff;
}
.cid-vhwoPhatiZ .mbr-text,
.cid-vhwoPhatiZ .mbr-section-btn {
  color: #ffffff;
}
.cid-vhs6GnoLbW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #414b54;
}
.cid-vhs6GnoLbW .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs6GnoLbW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs6GnoLbW .mbr-section-title {
  color: #ffffff;
}
.cid-vhs6Go12Tf {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vhs6Go12Tf .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs6Go12Tf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs6Go12Tf .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vhs6Go12Tf .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vhs6Go12Tf .row {
    text-align: center;
  }
  .cid-vhs6Go12Tf .row > div {
    margin: auto;
  }
  .cid-vhs6Go12Tf .social-row {
    justify-content: center;
  }
}
.cid-vhs6Go12Tf .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vhs6Go12Tf .list {
  list-style: none;
  padding-left: 0;
  color: #414b54;
}
@media (max-width: 991px) {
  .cid-vhs6Go12Tf .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vhs6Go12Tf .list {
    margin-bottom: 0rem;
  }
}
.cid-vhs6Go12Tf .mbr-text {
  color: #414b54;
}
.cid-vhs6Go12Tf .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vhs6Go12Tf .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vhs6Go12Tf div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vhs6Go12Tf .mbr-section-subtitle {
  color: #232323;
}
.cid-vhs6Go12Tf H5 {
  color: #232323;
}
.cid-vhs6GoGLIC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-vhs6GoGLIC .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs6GoGLIC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs6GoGLIC .media-container-row {
  justify-content: space-between;
}
.cid-vhs6GoGLIC .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-vhs6GoGLIC .text-content {
    max-width: none;
  }
}
.cid-vhs6GoGLIC .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #414b54;
  border: 2px solid #414b54;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-vhs6GoGLIC .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-vhs6GoGLIC .mbr-iconfont-social:hover {
  background-color: #414b54;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-vhs6GoGLIC .icons {
    justify-content: center !important;
  }
  .cid-vhs6GoGLIC .text-content * {
    text-align: center;
  }
}
.cid-vhs6GoGLIC .mbr-section-title {
  color: #414b54;
}
.cid-vhs6GoGLIC P {
  color: #414b54;
}
.cid-vhs6Gpmu1s {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vhs6Gpmu1s img,
.cid-vhs6Gpmu1s .item-img {
  width: 100%;
}
.cid-vhs6Gpmu1s .item:focus,
.cid-vhs6Gpmu1s span:focus {
  outline: none;
}
.cid-vhs6Gpmu1s .item-wrapper {
  position: relative;
}
.cid-vhs6Gpmu1s .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhs6Gpmu1s .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhs6Gpmu1s .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhs6Gpmu1s .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhs6Gpmu1s .mbr-section-title {
  color: #414b54;
}
.cid-vhs6Gpmu1s .mbr-text,
.cid-vhs6Gpmu1s .mbr-section-btn {
  text-align: left;
}
.cid-vhs6Gpmu1s .item-title {
  text-align: center;
}
.cid-vhs6Gpmu1s .item-subtitle {
  text-align: left;
}
.cid-vhs6Gpmu1s .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhs6Gpmu1s .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhs6Gpmu1s .embla__button--next,
.cid-vhs6Gpmu1s .embla__button--prev {
  display: flex;
}
.cid-vhs6Gpmu1s .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhs6Gpmu1s .embla__button {
    display: none;
  }
}
.cid-vhs6Gpmu1s .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhs6Gpmu1s .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhs6Gpmu1s .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhs6Gpmu1s .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhs6Gpmu1s .embla__button {
    top: auto;
  }
}
.cid-vhs6Gpmu1s .embla {
  position: relative;
  width: 100%;
}
.cid-vhs6Gpmu1s .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhs6Gpmu1s .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhs6Gpmu1s .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhs6Gpmu1s .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhs6Gpmu1s .mbr-section-subtitle {
  color: #414b54;
}
.cid-vhs6GsgxRi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vhs6GsgxRi .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs6GsgxRi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs6GsgxRi .nav-tabs .nav-item.open .nav-link:focus,
.cid-vhs6GsgxRi .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-vhs6GsgxRi .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #fce412;
}
@media (max-width: 767px) {
  .cid-vhs6GsgxRi .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-vhs6GsgxRi .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-vhs6GsgxRi .nav-tabs .nav-link:not(.active) {
  color: #414b54;
}
.cid-vhs6GsgxRi .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-vhs6GsgxRi .nav-link,
.cid-vhs6GsgxRi .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-vhs6GsgxRi .nav-tabs .nav-link.active {
  color: #fce412;
  border-bottom: 3px solid #fce412;
}
.cid-vhs6GsgxRi H4 {
  text-align: center;
}
.cid-vhs6GsgxRi H3 {
  text-align: left;
  color: #3e4750;
}
.cid-vhs6GsXhtJ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kapak-resimlerim-2011-1920x600.jpg");
}
.cid-vhs6GsXhtJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs6GsXhtJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs6GsXhtJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vhs8ujVh41 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vhs8ujVh41 nav.navbar {
  position: fixed;
}
.cid-vhs8ujVh41 .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-vhs8ujVh41 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vhs8ujVh41 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vhs8ujVh41 .dropdown-item:hover,
.cid-vhs8ujVh41 .dropdown-item:focus {
  background: #414b54 !important;
  color: white !important;
}
.cid-vhs8ujVh41 .dropdown-item:hover span {
  color: white;
}
.cid-vhs8ujVh41 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vhs8ujVh41 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vhs8ujVh41 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vhs8ujVh41 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vhs8ujVh41 .nav-link {
  position: relative;
}
.cid-vhs8ujVh41 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vhs8ujVh41 .container {
    flex-wrap: wrap;
  }
}
.cid-vhs8ujVh41 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vhs8ujVh41 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vhs8ujVh41 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vhs8ujVh41 .dropdown-menu,
.cid-vhs8ujVh41 .navbar.opened {
  background: #ffffff !important;
}
.cid-vhs8ujVh41 .nav-item:focus,
.cid-vhs8ujVh41 .nav-link:focus {
  outline: none;
}
.cid-vhs8ujVh41 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vhs8ujVh41 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vhs8ujVh41 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vhs8ujVh41 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vhs8ujVh41 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vhs8ujVh41 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vhs8ujVh41 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-vhs8ujVh41 .navbar.opened {
  transition: all 0.3s;
}
.cid-vhs8ujVh41 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vhs8ujVh41 .navbar .navbar-logo img {
  width: auto;
}
.cid-vhs8ujVh41 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vhs8ujVh41 .navbar.collapsed {
  justify-content: center;
}
.cid-vhs8ujVh41 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vhs8ujVh41 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vhs8ujVh41 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-vhs8ujVh41 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vhs8ujVh41 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vhs8ujVh41 .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-vhs8ujVh41 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vhs8ujVh41 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vhs8ujVh41 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vhs8ujVh41 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vhs8ujVh41 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vhs8ujVh41 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vhs8ujVh41 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vhs8ujVh41 .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-vhs8ujVh41 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vhs8ujVh41 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vhs8ujVh41 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vhs8ujVh41 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vhs8ujVh41 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vhs8ujVh41 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vhs8ujVh41 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vhs8ujVh41 .navbar.navbar-short {
  min-height: 60px;
}
.cid-vhs8ujVh41 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vhs8ujVh41 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vhs8ujVh41 .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-vhs8ujVh41 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vhs8ujVh41 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vhs8ujVh41 .dropdown-item.active,
.cid-vhs8ujVh41 .dropdown-item:active {
  background-color: transparent;
}
.cid-vhs8ujVh41 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vhs8ujVh41 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vhs8ujVh41 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vhs8ujVh41 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vhs8ujVh41 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vhs8ujVh41 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vhs8ujVh41 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vhs8ujVh41 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vhs8ujVh41 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vhs8ujVh41 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vhs8ujVh41 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vhs8ujVh41 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vhs8ujVh41 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vhs8ujVh41 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vhs8ujVh41 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vhs8ujVh41 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vhs8ujVh41 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vhs8ujVh41 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vhs8ujVh41 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vhs8ujVh41 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vhs8ujVh41 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vhs8ujVh41 .navbar {
    height: 70px;
  }
  .cid-vhs8ujVh41 .navbar.opened {
    height: auto;
  }
  .cid-vhs8ujVh41 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vhs8ukmv7I {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/kapak-resimleri-20204-1920x583.jpg");
}
.cid-vhs8ukmv7I .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8ukmv7I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhy4HDOj5F {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhy4HDOj5F .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhy4HDOj5F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhy4HDOj5F .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vhy4HDOj5F .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-vhwpo4PmgX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vhwpo4PmgX .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwpo4PmgX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vhwpo4PmgX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vhwpo4PmgX img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vhwpo4PmgX .text-wrapper {
    padding: 2rem;
  }
}
.cid-vhwpnc83wR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-vhwpnc83wR .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwpnc83wR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhwpnc83wR .mbr-section-title {
  color: #ffffff;
}
.cid-vhwpnc83wR .mbr-text,
.cid-vhwpnc83wR .mbr-section-btn {
  color: #ffffff;
}
.cid-vhs8ulyFB2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #414b54;
}
.cid-vhs8ulyFB2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8ulyFB2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs8ulyFB2 .mbr-section-title {
  color: #ffffff;
}
.cid-vhs8ulQH8E {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vhs8ulQH8E .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8ulQH8E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs8ulQH8E .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vhs8ulQH8E .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vhs8ulQH8E .row {
    text-align: center;
  }
  .cid-vhs8ulQH8E .row > div {
    margin: auto;
  }
  .cid-vhs8ulQH8E .social-row {
    justify-content: center;
  }
}
.cid-vhs8ulQH8E .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vhs8ulQH8E .list {
  list-style: none;
  padding-left: 0;
  color: #414b54;
}
@media (max-width: 991px) {
  .cid-vhs8ulQH8E .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vhs8ulQH8E .list {
    margin-bottom: 0rem;
  }
}
.cid-vhs8ulQH8E .mbr-text {
  color: #414b54;
}
.cid-vhs8ulQH8E .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vhs8ulQH8E .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vhs8ulQH8E div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vhs8ulQH8E .mbr-section-subtitle {
  color: #232323;
}
.cid-vhs8ulQH8E H5 {
  color: #232323;
}
.cid-vhs8umh3vg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-vhs8umh3vg .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8umh3vg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs8umh3vg .media-container-row {
  justify-content: space-between;
}
.cid-vhs8umh3vg .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-vhs8umh3vg .text-content {
    max-width: none;
  }
}
.cid-vhs8umh3vg .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #414b54;
  border: 2px solid #414b54;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-vhs8umh3vg .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-vhs8umh3vg .mbr-iconfont-social:hover {
  background-color: #414b54;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-vhs8umh3vg .icons {
    justify-content: center !important;
  }
  .cid-vhs8umh3vg .text-content * {
    text-align: center;
  }
}
.cid-vhs8umh3vg .mbr-section-title {
  color: #414b54;
}
.cid-vhs8umh3vg P {
  color: #414b54;
}
.cid-vhs8umRy7o {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vhs8umRy7o img,
.cid-vhs8umRy7o .item-img {
  width: 100%;
}
.cid-vhs8umRy7o .item:focus,
.cid-vhs8umRy7o span:focus {
  outline: none;
}
.cid-vhs8umRy7o .item-wrapper {
  position: relative;
}
.cid-vhs8umRy7o .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhs8umRy7o .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhs8umRy7o .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhs8umRy7o .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhs8umRy7o .mbr-section-title {
  color: #414b54;
}
.cid-vhs8umRy7o .mbr-text,
.cid-vhs8umRy7o .mbr-section-btn {
  text-align: left;
}
.cid-vhs8umRy7o .item-title {
  text-align: center;
}
.cid-vhs8umRy7o .item-subtitle {
  text-align: left;
}
.cid-vhs8umRy7o .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhs8umRy7o .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhs8umRy7o .embla__button--next,
.cid-vhs8umRy7o .embla__button--prev {
  display: flex;
}
.cid-vhs8umRy7o .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhs8umRy7o .embla__button {
    display: none;
  }
}
.cid-vhs8umRy7o .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhs8umRy7o .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhs8umRy7o .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhs8umRy7o .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhs8umRy7o .embla__button {
    top: auto;
  }
}
.cid-vhs8umRy7o .embla {
  position: relative;
  width: 100%;
}
.cid-vhs8umRy7o .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhs8umRy7o .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhs8umRy7o .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhs8umRy7o .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhs8umRy7o .mbr-section-subtitle {
  color: #414b54;
}
.cid-vhs8uoCRAV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vhs8uoCRAV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8uoCRAV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs8uoCRAV .nav-tabs .nav-item.open .nav-link:focus,
.cid-vhs8uoCRAV .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-vhs8uoCRAV .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #fce412;
}
@media (max-width: 767px) {
  .cid-vhs8uoCRAV .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-vhs8uoCRAV .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-vhs8uoCRAV .nav-tabs .nav-link:not(.active) {
  color: #414b54;
}
.cid-vhs8uoCRAV .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-vhs8uoCRAV .nav-link,
.cid-vhs8uoCRAV .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-vhs8uoCRAV .nav-tabs .nav-link.active {
  color: #fce412;
  border-bottom: 3px solid #fce412;
}
.cid-vhs8uoCRAV H4 {
  text-align: center;
}
.cid-vhs8uoCRAV H3 {
  text-align: left;
  color: #3e4750;
}
.cid-vhs8up622R {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kapak-resimlerim-2011-1920x600.jpg");
}
.cid-vhs8up622R .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8up622R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs8up622R .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vhs8rmcTfG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vhs8rmcTfG nav.navbar {
  position: fixed;
}
.cid-vhs8rmcTfG .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-vhs8rmcTfG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vhs8rmcTfG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vhs8rmcTfG .dropdown-item:hover,
.cid-vhs8rmcTfG .dropdown-item:focus {
  background: #414b54 !important;
  color: white !important;
}
.cid-vhs8rmcTfG .dropdown-item:hover span {
  color: white;
}
.cid-vhs8rmcTfG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vhs8rmcTfG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vhs8rmcTfG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vhs8rmcTfG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vhs8rmcTfG .nav-link {
  position: relative;
}
.cid-vhs8rmcTfG .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vhs8rmcTfG .container {
    flex-wrap: wrap;
  }
}
.cid-vhs8rmcTfG .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vhs8rmcTfG .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vhs8rmcTfG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vhs8rmcTfG .dropdown-menu,
.cid-vhs8rmcTfG .navbar.opened {
  background: #ffffff !important;
}
.cid-vhs8rmcTfG .nav-item:focus,
.cid-vhs8rmcTfG .nav-link:focus {
  outline: none;
}
.cid-vhs8rmcTfG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vhs8rmcTfG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vhs8rmcTfG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vhs8rmcTfG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vhs8rmcTfG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vhs8rmcTfG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vhs8rmcTfG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-vhs8rmcTfG .navbar.opened {
  transition: all 0.3s;
}
.cid-vhs8rmcTfG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vhs8rmcTfG .navbar .navbar-logo img {
  width: auto;
}
.cid-vhs8rmcTfG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vhs8rmcTfG .navbar.collapsed {
  justify-content: center;
}
.cid-vhs8rmcTfG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vhs8rmcTfG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vhs8rmcTfG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-vhs8rmcTfG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vhs8rmcTfG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vhs8rmcTfG .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-vhs8rmcTfG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vhs8rmcTfG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vhs8rmcTfG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vhs8rmcTfG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vhs8rmcTfG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vhs8rmcTfG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vhs8rmcTfG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vhs8rmcTfG .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-vhs8rmcTfG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vhs8rmcTfG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vhs8rmcTfG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vhs8rmcTfG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vhs8rmcTfG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vhs8rmcTfG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vhs8rmcTfG .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vhs8rmcTfG .navbar.navbar-short {
  min-height: 60px;
}
.cid-vhs8rmcTfG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vhs8rmcTfG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vhs8rmcTfG .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-vhs8rmcTfG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vhs8rmcTfG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vhs8rmcTfG .dropdown-item.active,
.cid-vhs8rmcTfG .dropdown-item:active {
  background-color: transparent;
}
.cid-vhs8rmcTfG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vhs8rmcTfG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vhs8rmcTfG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vhs8rmcTfG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vhs8rmcTfG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vhs8rmcTfG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vhs8rmcTfG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vhs8rmcTfG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vhs8rmcTfG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vhs8rmcTfG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vhs8rmcTfG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vhs8rmcTfG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vhs8rmcTfG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vhs8rmcTfG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vhs8rmcTfG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vhs8rmcTfG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vhs8rmcTfG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vhs8rmcTfG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vhs8rmcTfG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vhs8rmcTfG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vhs8rmcTfG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vhs8rmcTfG .navbar {
    height: 70px;
  }
  .cid-vhs8rmcTfG .navbar.opened {
    height: auto;
  }
  .cid-vhs8rmcTfG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vhs8rmB9eS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/kapak-resimleri-20204-1920x583.jpg");
}
.cid-vhs8rmB9eS .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8rmB9eS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhybR31BFF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhybR31BFF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhybR31BFF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhybR31BFF .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vhybR31BFF .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-vhycXj1lAG {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-vhycXj1lAG img,
.cid-vhycXj1lAG .item-img {
  width: 100%;
}
.cid-vhycXj1lAG .item:focus,
.cid-vhycXj1lAG span:focus {
  outline: none;
}
.cid-vhycXj1lAG .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vhycXj1lAG .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #414b54;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhycXj1lAG .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhycXj1lAG .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-vhycXj1lAG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhycXj1lAG .mbr-section-title {
  color: #232323;
}
.cid-vhycXj1lAG .mbr-text,
.cid-vhycXj1lAG .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-vhycXj1lAG .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-vhycXj1lAG .item-subtitle {
  text-align: center;
}
.cid-vhyiWXUcbe {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vhyiWXUcbe .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhyiWXUcbe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhycgfaw45 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhycgfaw45 img,
.cid-vhycgfaw45 .item-img {
  width: 100%;
}
.cid-vhycgfaw45 .item:focus,
.cid-vhycgfaw45 span:focus {
  outline: none;
}
.cid-vhycgfaw45 .item-wrapper {
  position: relative;
}
.cid-vhycgfaw45 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhycgfaw45 .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhycgfaw45 .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhycgfaw45 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhycgfaw45 .mbr-section-title {
  color: #232323;
}
.cid-vhycgfaw45 .mbr-text,
.cid-vhycgfaw45 .mbr-section-btn {
  text-align: center;
}
.cid-vhycgfaw45 .item-title {
  text-align: center;
}
.cid-vhycgfaw45 .item-subtitle {
  text-align: left;
}
.cid-vhycgfaw45 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhycgfaw45 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhycgfaw45 .embla__button--next,
.cid-vhycgfaw45 .embla__button--prev {
  display: flex;
}
.cid-vhycgfaw45 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhycgfaw45 .embla__button {
    display: none;
  }
}
.cid-vhycgfaw45 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhycgfaw45 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhycgfaw45 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhycgfaw45 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhycgfaw45 .embla__button {
    top: auto;
  }
}
.cid-vhycgfaw45 .embla {
  position: relative;
  width: 100%;
}
.cid-vhycgfaw45 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhycgfaw45 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhycgfaw45 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhycgfaw45 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhwpjnaOxP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vhwpjnaOxP .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwpjnaOxP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhwpjnaOxP .img-wrapper {
  text-align: center;
  padding-bottom: 2rem;
}
.cid-vhwpjnaOxP img {
  margin: auto;
  width: 140px;
}
.cid-vhwpjnaOxP .row {
  align-items: flex-start;
}
.cid-vhwpjnaOxP .item-wrapper {
  border-radius: 4px;
  background: #bbbbbb;
}
@media (max-width: 992px) {
  .cid-vhwpjnaOxP .item-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-vhwpjnaOxP .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vhwpjnaOxP .item-wrapper {
    padding: 1rem;
  }
}
.cid-vhwpinHwGJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vhwpinHwGJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwpinHwGJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vhwpinHwGJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vhwpinHwGJ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vhwpinHwGJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-vhwphhCRB1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-vhwphhCRB1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwphhCRB1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhwphhCRB1 .mbr-section-title {
  color: #ffffff;
}
.cid-vhwphhCRB1 .mbr-text,
.cid-vhwphhCRB1 .mbr-section-btn {
  color: #ffffff;
}
.cid-vhs8rnyFTD {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #414b54;
}
.cid-vhs8rnyFTD .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8rnyFTD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs8rnyFTD .mbr-section-title {
  color: #ffffff;
}
.cid-vhs8rnO6lW {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vhs8rnO6lW .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8rnO6lW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs8rnO6lW .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vhs8rnO6lW .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vhs8rnO6lW .row {
    text-align: center;
  }
  .cid-vhs8rnO6lW .row > div {
    margin: auto;
  }
  .cid-vhs8rnO6lW .social-row {
    justify-content: center;
  }
}
.cid-vhs8rnO6lW .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vhs8rnO6lW .list {
  list-style: none;
  padding-left: 0;
  color: #414b54;
}
@media (max-width: 991px) {
  .cid-vhs8rnO6lW .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vhs8rnO6lW .list {
    margin-bottom: 0rem;
  }
}
.cid-vhs8rnO6lW .mbr-text {
  color: #414b54;
}
.cid-vhs8rnO6lW .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vhs8rnO6lW .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vhs8rnO6lW div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vhs8rnO6lW .mbr-section-subtitle {
  color: #232323;
}
.cid-vhs8rnO6lW H5 {
  color: #232323;
}
.cid-vhs8roeIXF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-vhs8roeIXF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8roeIXF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs8roeIXF .media-container-row {
  justify-content: space-between;
}
.cid-vhs8roeIXF .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-vhs8roeIXF .text-content {
    max-width: none;
  }
}
.cid-vhs8roeIXF .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #414b54;
  border: 2px solid #414b54;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-vhs8roeIXF .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-vhs8roeIXF .mbr-iconfont-social:hover {
  background-color: #414b54;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-vhs8roeIXF .icons {
    justify-content: center !important;
  }
  .cid-vhs8roeIXF .text-content * {
    text-align: center;
  }
}
.cid-vhs8roeIXF .mbr-section-title {
  color: #414b54;
}
.cid-vhs8roeIXF P {
  color: #414b54;
}
.cid-vhs8roG3Hp {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vhs8roG3Hp img,
.cid-vhs8roG3Hp .item-img {
  width: 100%;
}
.cid-vhs8roG3Hp .item:focus,
.cid-vhs8roG3Hp span:focus {
  outline: none;
}
.cid-vhs8roG3Hp .item-wrapper {
  position: relative;
}
.cid-vhs8roG3Hp .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhs8roG3Hp .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhs8roG3Hp .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhs8roG3Hp .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhs8roG3Hp .mbr-section-title {
  color: #414b54;
}
.cid-vhs8roG3Hp .mbr-text,
.cid-vhs8roG3Hp .mbr-section-btn {
  text-align: left;
}
.cid-vhs8roG3Hp .item-title {
  text-align: center;
}
.cid-vhs8roG3Hp .item-subtitle {
  text-align: left;
}
.cid-vhs8roG3Hp .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhs8roG3Hp .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhs8roG3Hp .embla__button--next,
.cid-vhs8roG3Hp .embla__button--prev {
  display: flex;
}
.cid-vhs8roG3Hp .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhs8roG3Hp .embla__button {
    display: none;
  }
}
.cid-vhs8roG3Hp .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhs8roG3Hp .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhs8roG3Hp .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhs8roG3Hp .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhs8roG3Hp .embla__button {
    top: auto;
  }
}
.cid-vhs8roG3Hp .embla {
  position: relative;
  width: 100%;
}
.cid-vhs8roG3Hp .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhs8roG3Hp .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhs8roG3Hp .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhs8roG3Hp .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhs8roG3Hp .mbr-section-subtitle {
  color: #414b54;
}
.cid-vhs8rqqJZz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vhs8rqqJZz .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8rqqJZz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs8rqqJZz .nav-tabs .nav-item.open .nav-link:focus,
.cid-vhs8rqqJZz .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-vhs8rqqJZz .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #fce412;
}
@media (max-width: 767px) {
  .cid-vhs8rqqJZz .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-vhs8rqqJZz .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-vhs8rqqJZz .nav-tabs .nav-link:not(.active) {
  color: #414b54;
}
.cid-vhs8rqqJZz .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-vhs8rqqJZz .nav-link,
.cid-vhs8rqqJZz .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-vhs8rqqJZz .nav-tabs .nav-link.active {
  color: #fce412;
  border-bottom: 3px solid #fce412;
}
.cid-vhs8rqqJZz H4 {
  text-align: center;
}
.cid-vhs8rqqJZz H3 {
  text-align: left;
  color: #3e4750;
}
.cid-vhs8rqZkb5 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kapak-resimlerim-2011-1920x600.jpg");
}
.cid-vhs8rqZkb5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8rqZkb5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs8rqZkb5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vhs8osXs65 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vhs8osXs65 nav.navbar {
  position: fixed;
}
.cid-vhs8osXs65 .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-vhs8osXs65 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vhs8osXs65 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vhs8osXs65 .dropdown-item:hover,
.cid-vhs8osXs65 .dropdown-item:focus {
  background: #414b54 !important;
  color: white !important;
}
.cid-vhs8osXs65 .dropdown-item:hover span {
  color: white;
}
.cid-vhs8osXs65 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vhs8osXs65 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vhs8osXs65 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vhs8osXs65 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vhs8osXs65 .nav-link {
  position: relative;
}
.cid-vhs8osXs65 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vhs8osXs65 .container {
    flex-wrap: wrap;
  }
}
.cid-vhs8osXs65 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vhs8osXs65 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vhs8osXs65 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vhs8osXs65 .dropdown-menu,
.cid-vhs8osXs65 .navbar.opened {
  background: #ffffff !important;
}
.cid-vhs8osXs65 .nav-item:focus,
.cid-vhs8osXs65 .nav-link:focus {
  outline: none;
}
.cid-vhs8osXs65 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vhs8osXs65 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vhs8osXs65 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vhs8osXs65 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vhs8osXs65 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vhs8osXs65 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vhs8osXs65 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-vhs8osXs65 .navbar.opened {
  transition: all 0.3s;
}
.cid-vhs8osXs65 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vhs8osXs65 .navbar .navbar-logo img {
  width: auto;
}
.cid-vhs8osXs65 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vhs8osXs65 .navbar.collapsed {
  justify-content: center;
}
.cid-vhs8osXs65 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vhs8osXs65 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vhs8osXs65 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-vhs8osXs65 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vhs8osXs65 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vhs8osXs65 .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-vhs8osXs65 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vhs8osXs65 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vhs8osXs65 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vhs8osXs65 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vhs8osXs65 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vhs8osXs65 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vhs8osXs65 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vhs8osXs65 .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-vhs8osXs65 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vhs8osXs65 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vhs8osXs65 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vhs8osXs65 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vhs8osXs65 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vhs8osXs65 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vhs8osXs65 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vhs8osXs65 .navbar.navbar-short {
  min-height: 60px;
}
.cid-vhs8osXs65 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vhs8osXs65 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vhs8osXs65 .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-vhs8osXs65 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vhs8osXs65 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vhs8osXs65 .dropdown-item.active,
.cid-vhs8osXs65 .dropdown-item:active {
  background-color: transparent;
}
.cid-vhs8osXs65 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vhs8osXs65 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vhs8osXs65 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vhs8osXs65 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vhs8osXs65 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vhs8osXs65 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vhs8osXs65 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vhs8osXs65 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vhs8osXs65 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vhs8osXs65 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vhs8osXs65 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vhs8osXs65 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vhs8osXs65 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vhs8osXs65 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vhs8osXs65 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vhs8osXs65 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vhs8osXs65 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vhs8osXs65 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vhs8osXs65 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vhs8osXs65 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vhs8osXs65 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vhs8osXs65 .navbar {
    height: 70px;
  }
  .cid-vhs8osXs65 .navbar.opened {
    height: auto;
  }
  .cid-vhs8osXs65 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vhs8otWx0d {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/kapak-resimleri-20204-1920x583.jpg");
}
.cid-vhs8otWx0d .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8otWx0d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhylseVc4N {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhylseVc4N .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhylseVc4N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhylPo2tao {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhylPo2tao img,
.cid-vhylPo2tao .item-img {
  width: 100%;
}
.cid-vhylPo2tao .item:focus,
.cid-vhylPo2tao span:focus {
  outline: none;
}
.cid-vhylPo2tao .item-wrapper {
  position: relative;
}
.cid-vhylPo2tao .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhylPo2tao .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhylPo2tao .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhylPo2tao .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhylPo2tao .mbr-section-title {
  color: #232323;
}
.cid-vhylPo2tao .mbr-text,
.cid-vhylPo2tao .mbr-section-btn {
  text-align: left;
}
.cid-vhylPo2tao .item-title {
  text-align: left;
}
.cid-vhylPo2tao .item-subtitle {
  text-align: left;
}
.cid-vhylPo2tao .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhylPo2tao .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhylPo2tao .embla__button--next,
.cid-vhylPo2tao .embla__button--prev {
  display: flex;
}
.cid-vhylPo2tao .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhylPo2tao .embla__button {
    display: none;
  }
}
.cid-vhylPo2tao .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhylPo2tao .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhylPo2tao .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhylPo2tao .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhylPo2tao .embla__button {
    top: auto;
  }
}
.cid-vhylPo2tao .embla {
  position: relative;
  width: 100%;
}
.cid-vhylPo2tao .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhylPo2tao .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhylPo2tao .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhylPo2tao .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhym4ZVy5I {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhym4ZVy5I img,
.cid-vhym4ZVy5I .item-img {
  width: 100%;
}
.cid-vhym4ZVy5I .item:focus,
.cid-vhym4ZVy5I span:focus {
  outline: none;
}
.cid-vhym4ZVy5I .item-wrapper {
  position: relative;
}
.cid-vhym4ZVy5I .slide-content {
  position: relative;
  border-radius: 4px;
  background: #414b54;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhym4ZVy5I .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhym4ZVy5I .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhym4ZVy5I .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhym4ZVy5I .mbr-section-title {
  color: #232323;
}
.cid-vhym4ZVy5I .mbr-text,
.cid-vhym4ZVy5I .mbr-section-btn {
  text-align: left;
}
.cid-vhym4ZVy5I .item-title {
  text-align: left;
}
.cid-vhym4ZVy5I .item-subtitle {
  text-align: left;
}
.cid-vhym4ZVy5I .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhym4ZVy5I .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhym4ZVy5I .embla__button--next,
.cid-vhym4ZVy5I .embla__button--prev {
  display: flex;
}
.cid-vhym4ZVy5I .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhym4ZVy5I .embla__button {
    display: none;
  }
}
.cid-vhym4ZVy5I .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhym4ZVy5I .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhym4ZVy5I .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhym4ZVy5I .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhym4ZVy5I .embla__button {
    top: auto;
  }
}
.cid-vhym4ZVy5I .embla {
  position: relative;
  width: 100%;
}
.cid-vhym4ZVy5I .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhym4ZVy5I .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhym4ZVy5I .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhym4ZVy5I .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhwpd7GwGB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vhwpd7GwGB .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwpd7GwGB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhwpd7GwGB .img-wrapper {
  text-align: center;
  padding-bottom: 2rem;
}
.cid-vhwpd7GwGB img {
  margin: auto;
  width: 140px;
}
.cid-vhwpd7GwGB .row {
  align-items: flex-start;
}
.cid-vhwpd7GwGB .item-wrapper {
  border-radius: 4px;
  background: #bbbbbb;
}
@media (max-width: 992px) {
  .cid-vhwpd7GwGB .item-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-vhwpd7GwGB .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vhwpd7GwGB .item-wrapper {
    padding: 1rem;
  }
}
.cid-vhwpcixc4A {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vhwpcixc4A .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwpcixc4A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vhwpcixc4A .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vhwpcixc4A img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vhwpcixc4A .text-wrapper {
    padding: 2rem;
  }
}
.cid-vhwpb97A55 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-vhwpb97A55 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwpb97A55 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhwpb97A55 .mbr-section-title {
  color: #ffffff;
}
.cid-vhwpb97A55 .mbr-text,
.cid-vhwpb97A55 .mbr-section-btn {
  color: #ffffff;
}
.cid-vhs8ovKgfR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #414b54;
}
.cid-vhs8ovKgfR .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8ovKgfR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs8ovKgfR .mbr-section-title {
  color: #ffffff;
}
.cid-vhs8owudRV {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vhs8owudRV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8owudRV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs8owudRV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vhs8owudRV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vhs8owudRV .row {
    text-align: center;
  }
  .cid-vhs8owudRV .row > div {
    margin: auto;
  }
  .cid-vhs8owudRV .social-row {
    justify-content: center;
  }
}
.cid-vhs8owudRV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vhs8owudRV .list {
  list-style: none;
  padding-left: 0;
  color: #414b54;
}
@media (max-width: 991px) {
  .cid-vhs8owudRV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vhs8owudRV .list {
    margin-bottom: 0rem;
  }
}
.cid-vhs8owudRV .mbr-text {
  color: #414b54;
}
.cid-vhs8owudRV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vhs8owudRV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vhs8owudRV div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vhs8owudRV .mbr-section-subtitle {
  color: #232323;
}
.cid-vhs8owudRV H5 {
  color: #232323;
}
.cid-vhs8ox2d8r {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-vhs8ox2d8r .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8ox2d8r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs8ox2d8r .media-container-row {
  justify-content: space-between;
}
.cid-vhs8ox2d8r .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-vhs8ox2d8r .text-content {
    max-width: none;
  }
}
.cid-vhs8ox2d8r .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #414b54;
  border: 2px solid #414b54;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-vhs8ox2d8r .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-vhs8ox2d8r .mbr-iconfont-social:hover {
  background-color: #414b54;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-vhs8ox2d8r .icons {
    justify-content: center !important;
  }
  .cid-vhs8ox2d8r .text-content * {
    text-align: center;
  }
}
.cid-vhs8ox2d8r .mbr-section-title {
  color: #414b54;
}
.cid-vhs8ox2d8r P {
  color: #414b54;
}
.cid-vhs8oxzPMc {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vhs8oxzPMc img,
.cid-vhs8oxzPMc .item-img {
  width: 100%;
}
.cid-vhs8oxzPMc .item:focus,
.cid-vhs8oxzPMc span:focus {
  outline: none;
}
.cid-vhs8oxzPMc .item-wrapper {
  position: relative;
}
.cid-vhs8oxzPMc .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhs8oxzPMc .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhs8oxzPMc .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhs8oxzPMc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhs8oxzPMc .mbr-section-title {
  color: #414b54;
}
.cid-vhs8oxzPMc .mbr-text,
.cid-vhs8oxzPMc .mbr-section-btn {
  text-align: left;
}
.cid-vhs8oxzPMc .item-title {
  text-align: center;
}
.cid-vhs8oxzPMc .item-subtitle {
  text-align: left;
}
.cid-vhs8oxzPMc .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhs8oxzPMc .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhs8oxzPMc .embla__button--next,
.cid-vhs8oxzPMc .embla__button--prev {
  display: flex;
}
.cid-vhs8oxzPMc .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhs8oxzPMc .embla__button {
    display: none;
  }
}
.cid-vhs8oxzPMc .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhs8oxzPMc .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhs8oxzPMc .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhs8oxzPMc .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhs8oxzPMc .embla__button {
    top: auto;
  }
}
.cid-vhs8oxzPMc .embla {
  position: relative;
  width: 100%;
}
.cid-vhs8oxzPMc .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhs8oxzPMc .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhs8oxzPMc .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhs8oxzPMc .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhs8oxzPMc .mbr-section-subtitle {
  color: #414b54;
}
.cid-vhs8ozhKPu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vhs8ozhKPu .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8ozhKPu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs8ozhKPu .nav-tabs .nav-item.open .nav-link:focus,
.cid-vhs8ozhKPu .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-vhs8ozhKPu .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #fce412;
}
@media (max-width: 767px) {
  .cid-vhs8ozhKPu .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-vhs8ozhKPu .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-vhs8ozhKPu .nav-tabs .nav-link:not(.active) {
  color: #414b54;
}
.cid-vhs8ozhKPu .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-vhs8ozhKPu .nav-link,
.cid-vhs8ozhKPu .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-vhs8ozhKPu .nav-tabs .nav-link.active {
  color: #fce412;
  border-bottom: 3px solid #fce412;
}
.cid-vhs8ozhKPu H4 {
  text-align: center;
}
.cid-vhs8ozhKPu H3 {
  text-align: left;
  color: #3e4750;
}
.cid-vhs8ozGwb8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kapak-resimlerim-2011-1920x600.jpg");
}
.cid-vhs8ozGwb8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8ozGwb8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs8ozGwb8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vhs8heTIRD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vhs8heTIRD nav.navbar {
  position: fixed;
}
.cid-vhs8heTIRD .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-vhs8heTIRD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vhs8heTIRD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vhs8heTIRD .dropdown-item:hover,
.cid-vhs8heTIRD .dropdown-item:focus {
  background: #414b54 !important;
  color: white !important;
}
.cid-vhs8heTIRD .dropdown-item:hover span {
  color: white;
}
.cid-vhs8heTIRD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vhs8heTIRD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vhs8heTIRD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vhs8heTIRD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vhs8heTIRD .nav-link {
  position: relative;
}
.cid-vhs8heTIRD .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vhs8heTIRD .container {
    flex-wrap: wrap;
  }
}
.cid-vhs8heTIRD .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vhs8heTIRD .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vhs8heTIRD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vhs8heTIRD .dropdown-menu,
.cid-vhs8heTIRD .navbar.opened {
  background: #ffffff !important;
}
.cid-vhs8heTIRD .nav-item:focus,
.cid-vhs8heTIRD .nav-link:focus {
  outline: none;
}
.cid-vhs8heTIRD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vhs8heTIRD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vhs8heTIRD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vhs8heTIRD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vhs8heTIRD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vhs8heTIRD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vhs8heTIRD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-vhs8heTIRD .navbar.opened {
  transition: all 0.3s;
}
.cid-vhs8heTIRD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vhs8heTIRD .navbar .navbar-logo img {
  width: auto;
}
.cid-vhs8heTIRD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vhs8heTIRD .navbar.collapsed {
  justify-content: center;
}
.cid-vhs8heTIRD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vhs8heTIRD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vhs8heTIRD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-vhs8heTIRD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vhs8heTIRD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vhs8heTIRD .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-vhs8heTIRD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vhs8heTIRD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vhs8heTIRD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vhs8heTIRD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vhs8heTIRD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vhs8heTIRD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vhs8heTIRD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vhs8heTIRD .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-vhs8heTIRD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vhs8heTIRD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vhs8heTIRD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vhs8heTIRD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vhs8heTIRD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vhs8heTIRD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vhs8heTIRD .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vhs8heTIRD .navbar.navbar-short {
  min-height: 60px;
}
.cid-vhs8heTIRD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vhs8heTIRD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vhs8heTIRD .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-vhs8heTIRD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vhs8heTIRD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vhs8heTIRD .dropdown-item.active,
.cid-vhs8heTIRD .dropdown-item:active {
  background-color: transparent;
}
.cid-vhs8heTIRD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vhs8heTIRD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vhs8heTIRD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vhs8heTIRD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vhs8heTIRD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vhs8heTIRD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vhs8heTIRD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vhs8heTIRD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vhs8heTIRD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vhs8heTIRD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vhs8heTIRD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vhs8heTIRD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vhs8heTIRD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vhs8heTIRD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vhs8heTIRD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vhs8heTIRD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vhs8heTIRD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vhs8heTIRD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vhs8heTIRD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vhs8heTIRD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vhs8heTIRD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vhs8heTIRD .navbar {
    height: 70px;
  }
  .cid-vhs8heTIRD .navbar.opened {
    height: auto;
  }
  .cid-vhs8heTIRD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vhs8hfoCLY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/kapak-resimleri-20204-1920x583.jpg");
}
.cid-vhs8hfoCLY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8hfoCLY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhyo3Z3Zvm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhyo3Z3Zvm .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhyo3Z3Zvm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhypansfNm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhypansfNm .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhypansfNm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhyowUTQ4M {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhyowUTQ4M .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhyowUTQ4M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhyowUTQ4M .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #414b54;
  margin-bottom: 2rem;
}
.cid-vhyowUTQ4M .card-wrapper {
  padding: 3rem;
  background: #414b54;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-vhyowUTQ4M .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vhyowUTQ4M .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-vhyowUTQ4M .card-title {
  color: #ffffff;
}
.cid-vhyowUTQ4M .mbr-text {
  color: #ffffff;
}
.cid-vhyowUTQ4M .link {
  color: #ffffff;
}
.cid-vhyqQSfnpC {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-vhyqQSfnpC .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhyqQSfnpC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhyqQSfnpC .google-map {
  height: 30rem;
  position: relative;
}
.cid-vhyqQSfnpC .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-vhyqQSfnpC .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-vhyqQSfnpC .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vhyqQSfnpC .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-vhwp75O2jv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vhwp75O2jv .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwp75O2jv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhwp75O2jv .img-wrapper {
  text-align: center;
  padding-bottom: 2rem;
}
.cid-vhwp75O2jv img {
  margin: auto;
  width: 140px;
}
.cid-vhwp75O2jv .row {
  align-items: flex-start;
}
.cid-vhwp75O2jv .item-wrapper {
  border-radius: 4px;
  background: #bbbbbb;
}
@media (max-width: 992px) {
  .cid-vhwp75O2jv .item-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-vhwp75O2jv .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vhwp75O2jv .item-wrapper {
    padding: 1rem;
  }
}
.cid-vhwp6e7zGz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vhwp6e7zGz .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwp6e7zGz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vhwp6e7zGz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vhwp6e7zGz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vhwp6e7zGz .text-wrapper {
    padding: 2rem;
  }
}
.cid-vhs8hgzcDy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #414b54;
}
.cid-vhs8hgzcDy .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8hgzcDy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs8hgzcDy .mbr-section-title {
  color: #ffffff;
}
.cid-vhs8hgQoJa {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vhs8hgQoJa .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8hgQoJa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs8hgQoJa .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vhs8hgQoJa .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vhs8hgQoJa .row {
    text-align: center;
  }
  .cid-vhs8hgQoJa .row > div {
    margin: auto;
  }
  .cid-vhs8hgQoJa .social-row {
    justify-content: center;
  }
}
.cid-vhs8hgQoJa .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vhs8hgQoJa .list {
  list-style: none;
  padding-left: 0;
  color: #414b54;
}
@media (max-width: 991px) {
  .cid-vhs8hgQoJa .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vhs8hgQoJa .list {
    margin-bottom: 0rem;
  }
}
.cid-vhs8hgQoJa .mbr-text {
  color: #414b54;
}
.cid-vhs8hgQoJa .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vhs8hgQoJa .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vhs8hgQoJa div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vhs8hgQoJa .mbr-section-subtitle {
  color: #232323;
}
.cid-vhs8hgQoJa H5 {
  color: #232323;
}
.cid-vhs8hhramB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-vhs8hhramB .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8hhramB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs8hhramB .media-container-row {
  justify-content: space-between;
}
.cid-vhs8hhramB .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-vhs8hhramB .text-content {
    max-width: none;
  }
}
.cid-vhs8hhramB .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #414b54;
  border: 2px solid #414b54;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-vhs8hhramB .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-vhs8hhramB .mbr-iconfont-social:hover {
  background-color: #414b54;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-vhs8hhramB .icons {
    justify-content: center !important;
  }
  .cid-vhs8hhramB .text-content * {
    text-align: center;
  }
}
.cid-vhs8hhramB .mbr-section-title {
  color: #414b54;
}
.cid-vhs8hhramB P {
  color: #414b54;
}
.cid-vhs8hi0Qp1 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vhs8hi0Qp1 img,
.cid-vhs8hi0Qp1 .item-img {
  width: 100%;
}
.cid-vhs8hi0Qp1 .item:focus,
.cid-vhs8hi0Qp1 span:focus {
  outline: none;
}
.cid-vhs8hi0Qp1 .item-wrapper {
  position: relative;
}
.cid-vhs8hi0Qp1 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhs8hi0Qp1 .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhs8hi0Qp1 .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhs8hi0Qp1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhs8hi0Qp1 .mbr-section-title {
  color: #414b54;
}
.cid-vhs8hi0Qp1 .mbr-text,
.cid-vhs8hi0Qp1 .mbr-section-btn {
  text-align: left;
}
.cid-vhs8hi0Qp1 .item-title {
  text-align: center;
}
.cid-vhs8hi0Qp1 .item-subtitle {
  text-align: left;
}
.cid-vhs8hi0Qp1 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhs8hi0Qp1 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhs8hi0Qp1 .embla__button--next,
.cid-vhs8hi0Qp1 .embla__button--prev {
  display: flex;
}
.cid-vhs8hi0Qp1 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhs8hi0Qp1 .embla__button {
    display: none;
  }
}
.cid-vhs8hi0Qp1 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhs8hi0Qp1 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhs8hi0Qp1 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhs8hi0Qp1 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhs8hi0Qp1 .embla__button {
    top: auto;
  }
}
.cid-vhs8hi0Qp1 .embla {
  position: relative;
  width: 100%;
}
.cid-vhs8hi0Qp1 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhs8hi0Qp1 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhs8hi0Qp1 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhs8hi0Qp1 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhs8hi0Qp1 .mbr-section-subtitle {
  color: #414b54;
}
.cid-vhs8hkl9yN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vhs8hkl9yN .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8hkl9yN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs8hkl9yN .nav-tabs .nav-item.open .nav-link:focus,
.cid-vhs8hkl9yN .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-vhs8hkl9yN .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #fce412;
}
@media (max-width: 767px) {
  .cid-vhs8hkl9yN .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-vhs8hkl9yN .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-vhs8hkl9yN .nav-tabs .nav-link:not(.active) {
  color: #414b54;
}
.cid-vhs8hkl9yN .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-vhs8hkl9yN .nav-link,
.cid-vhs8hkl9yN .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-vhs8hkl9yN .nav-tabs .nav-link.active {
  color: #fce412;
  border-bottom: 3px solid #fce412;
}
.cid-vhs8hkl9yN H4 {
  text-align: center;
}
.cid-vhs8hkl9yN H3 {
  text-align: left;
  color: #3e4750;
}
.cid-vhs8hkMAdL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kapak-resimlerim-2011-1920x600.jpg");
}
.cid-vhs8hkMAdL .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8hkMAdL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs8hkMAdL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vhs8fm2UaZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vhs8fm2UaZ nav.navbar {
  position: fixed;
}
.cid-vhs8fm2UaZ .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-vhs8fm2UaZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vhs8fm2UaZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vhs8fm2UaZ .dropdown-item:hover,
.cid-vhs8fm2UaZ .dropdown-item:focus {
  background: #414b54 !important;
  color: white !important;
}
.cid-vhs8fm2UaZ .dropdown-item:hover span {
  color: white;
}
.cid-vhs8fm2UaZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vhs8fm2UaZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vhs8fm2UaZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vhs8fm2UaZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vhs8fm2UaZ .nav-link {
  position: relative;
}
.cid-vhs8fm2UaZ .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vhs8fm2UaZ .container {
    flex-wrap: wrap;
  }
}
.cid-vhs8fm2UaZ .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vhs8fm2UaZ .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vhs8fm2UaZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vhs8fm2UaZ .dropdown-menu,
.cid-vhs8fm2UaZ .navbar.opened {
  background: #ffffff !important;
}
.cid-vhs8fm2UaZ .nav-item:focus,
.cid-vhs8fm2UaZ .nav-link:focus {
  outline: none;
}
.cid-vhs8fm2UaZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vhs8fm2UaZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vhs8fm2UaZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vhs8fm2UaZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vhs8fm2UaZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vhs8fm2UaZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vhs8fm2UaZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-vhs8fm2UaZ .navbar.opened {
  transition: all 0.3s;
}
.cid-vhs8fm2UaZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vhs8fm2UaZ .navbar .navbar-logo img {
  width: auto;
}
.cid-vhs8fm2UaZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vhs8fm2UaZ .navbar.collapsed {
  justify-content: center;
}
.cid-vhs8fm2UaZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vhs8fm2UaZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vhs8fm2UaZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-vhs8fm2UaZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vhs8fm2UaZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vhs8fm2UaZ .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-vhs8fm2UaZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vhs8fm2UaZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vhs8fm2UaZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vhs8fm2UaZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vhs8fm2UaZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vhs8fm2UaZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vhs8fm2UaZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vhs8fm2UaZ .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-vhs8fm2UaZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vhs8fm2UaZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vhs8fm2UaZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vhs8fm2UaZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vhs8fm2UaZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vhs8fm2UaZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vhs8fm2UaZ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vhs8fm2UaZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-vhs8fm2UaZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vhs8fm2UaZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vhs8fm2UaZ .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-vhs8fm2UaZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vhs8fm2UaZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vhs8fm2UaZ .dropdown-item.active,
.cid-vhs8fm2UaZ .dropdown-item:active {
  background-color: transparent;
}
.cid-vhs8fm2UaZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vhs8fm2UaZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vhs8fm2UaZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vhs8fm2UaZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vhs8fm2UaZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vhs8fm2UaZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vhs8fm2UaZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vhs8fm2UaZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vhs8fm2UaZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vhs8fm2UaZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vhs8fm2UaZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vhs8fm2UaZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vhs8fm2UaZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vhs8fm2UaZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vhs8fm2UaZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vhs8fm2UaZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vhs8fm2UaZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vhs8fm2UaZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vhs8fm2UaZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vhs8fm2UaZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vhs8fm2UaZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vhs8fm2UaZ .navbar {
    height: 70px;
  }
  .cid-vhs8fm2UaZ .navbar.opened {
    height: auto;
  }
  .cid-vhs8fm2UaZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vhs8fmLTPV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/kapak-resimleri-20204-1920x583.jpg");
}
.cid-vhs8fmLTPV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8fmLTPV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhytq3fdJF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhytq3fdJF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhytq3fdJF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhyuG1qJoQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhyuG1qJoQ img,
.cid-vhyuG1qJoQ .item-img {
  width: 100%;
}
.cid-vhyuG1qJoQ .item:focus,
.cid-vhyuG1qJoQ span:focus {
  outline: none;
}
.cid-vhyuG1qJoQ .item-wrapper {
  position: relative;
}
.cid-vhyuG1qJoQ .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhyuG1qJoQ .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhyuG1qJoQ .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhyuG1qJoQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhyuG1qJoQ .mbr-section-title {
  color: #232323;
}
.cid-vhyuG1qJoQ .mbr-text,
.cid-vhyuG1qJoQ .mbr-section-btn {
  text-align: left;
}
.cid-vhyuG1qJoQ .item-title {
  text-align: left;
}
.cid-vhyuG1qJoQ .item-subtitle {
  text-align: left;
}
.cid-vhyuG1qJoQ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhyuG1qJoQ .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhyuG1qJoQ .embla__button--next,
.cid-vhyuG1qJoQ .embla__button--prev {
  display: flex;
}
.cid-vhyuG1qJoQ .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhyuG1qJoQ .embla__button {
    display: none;
  }
}
.cid-vhyuG1qJoQ .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhyuG1qJoQ .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhyuG1qJoQ .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhyuG1qJoQ .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhyuG1qJoQ .embla__button {
    top: auto;
  }
}
.cid-vhyuG1qJoQ .embla {
  position: relative;
  width: 100%;
}
.cid-vhyuG1qJoQ .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhyuG1qJoQ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhyuG1qJoQ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhyuG1qJoQ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhyuGAZ3VU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhyuGAZ3VU img,
.cid-vhyuGAZ3VU .item-img {
  width: 100%;
}
.cid-vhyuGAZ3VU .item:focus,
.cid-vhyuGAZ3VU span:focus {
  outline: none;
}
.cid-vhyuGAZ3VU .item-wrapper {
  position: relative;
}
.cid-vhyuGAZ3VU .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhyuGAZ3VU .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhyuGAZ3VU .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhyuGAZ3VU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhyuGAZ3VU .mbr-section-title {
  color: #232323;
}
.cid-vhyuGAZ3VU .mbr-text,
.cid-vhyuGAZ3VU .mbr-section-btn {
  text-align: left;
}
.cid-vhyuGAZ3VU .item-title {
  text-align: left;
}
.cid-vhyuGAZ3VU .item-subtitle {
  text-align: left;
}
.cid-vhyuGAZ3VU .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhyuGAZ3VU .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhyuGAZ3VU .embla__button--next,
.cid-vhyuGAZ3VU .embla__button--prev {
  display: flex;
}
.cid-vhyuGAZ3VU .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhyuGAZ3VU .embla__button {
    display: none;
  }
}
.cid-vhyuGAZ3VU .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhyuGAZ3VU .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhyuGAZ3VU .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhyuGAZ3VU .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhyuGAZ3VU .embla__button {
    top: auto;
  }
}
.cid-vhyuGAZ3VU .embla {
  position: relative;
  width: 100%;
}
.cid-vhyuGAZ3VU .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhyuGAZ3VU .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhyuGAZ3VU .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhyuGAZ3VU .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhyuH85yVx {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhyuH85yVx img,
.cid-vhyuH85yVx .item-img {
  width: 100%;
}
.cid-vhyuH85yVx .item:focus,
.cid-vhyuH85yVx span:focus {
  outline: none;
}
.cid-vhyuH85yVx .item-wrapper {
  position: relative;
}
.cid-vhyuH85yVx .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhyuH85yVx .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhyuH85yVx .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhyuH85yVx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhyuH85yVx .mbr-section-title {
  color: #232323;
}
.cid-vhyuH85yVx .mbr-text,
.cid-vhyuH85yVx .mbr-section-btn {
  text-align: left;
}
.cid-vhyuH85yVx .item-title {
  text-align: left;
}
.cid-vhyuH85yVx .item-subtitle {
  text-align: left;
}
.cid-vhyuH85yVx .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhyuH85yVx .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhyuH85yVx .embla__button--next,
.cid-vhyuH85yVx .embla__button--prev {
  display: flex;
}
.cid-vhyuH85yVx .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhyuH85yVx .embla__button {
    display: none;
  }
}
.cid-vhyuH85yVx .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhyuH85yVx .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhyuH85yVx .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhyuH85yVx .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhyuH85yVx .embla__button {
    top: auto;
  }
}
.cid-vhyuH85yVx .embla {
  position: relative;
  width: 100%;
}
.cid-vhyuH85yVx .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhyuH85yVx .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhyuH85yVx .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhyuH85yVx .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhwp03gZRt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vhwp03gZRt .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwp03gZRt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vhwp03gZRt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vhwp03gZRt img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vhwp03gZRt .text-wrapper {
    padding: 2rem;
  }
}
.cid-vhwoYMFqoI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-vhwoYMFqoI .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwoYMFqoI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhwoYMFqoI .mbr-section-title {
  color: #ffffff;
}
.cid-vhwoYMFqoI .mbr-text,
.cid-vhwoYMFqoI .mbr-section-btn {
  color: #ffffff;
}
.cid-vhs8folTy0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #414b54;
}
.cid-vhs8folTy0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8folTy0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs8folTy0 .mbr-section-title {
  color: #ffffff;
}
.cid-vhs8foH6LP {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vhs8foH6LP .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8foH6LP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs8foH6LP .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vhs8foH6LP .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vhs8foH6LP .row {
    text-align: center;
  }
  .cid-vhs8foH6LP .row > div {
    margin: auto;
  }
  .cid-vhs8foH6LP .social-row {
    justify-content: center;
  }
}
.cid-vhs8foH6LP .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vhs8foH6LP .list {
  list-style: none;
  padding-left: 0;
  color: #414b54;
}
@media (max-width: 991px) {
  .cid-vhs8foH6LP .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vhs8foH6LP .list {
    margin-bottom: 0rem;
  }
}
.cid-vhs8foH6LP .mbr-text {
  color: #414b54;
}
.cid-vhs8foH6LP .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vhs8foH6LP .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vhs8foH6LP div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vhs8foH6LP .mbr-section-subtitle {
  color: #232323;
}
.cid-vhs8foH6LP H5 {
  color: #232323;
}
.cid-vhs8fpoygh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-vhs8fpoygh .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8fpoygh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs8fpoygh .media-container-row {
  justify-content: space-between;
}
.cid-vhs8fpoygh .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-vhs8fpoygh .text-content {
    max-width: none;
  }
}
.cid-vhs8fpoygh .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #414b54;
  border: 2px solid #414b54;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-vhs8fpoygh .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-vhs8fpoygh .mbr-iconfont-social:hover {
  background-color: #414b54;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-vhs8fpoygh .icons {
    justify-content: center !important;
  }
  .cid-vhs8fpoygh .text-content * {
    text-align: center;
  }
}
.cid-vhs8fpoygh .mbr-section-title {
  color: #414b54;
}
.cid-vhs8fpoygh P {
  color: #414b54;
}
.cid-vhs8fq1Foe {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vhs8fq1Foe img,
.cid-vhs8fq1Foe .item-img {
  width: 100%;
}
.cid-vhs8fq1Foe .item:focus,
.cid-vhs8fq1Foe span:focus {
  outline: none;
}
.cid-vhs8fq1Foe .item-wrapper {
  position: relative;
}
.cid-vhs8fq1Foe .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhs8fq1Foe .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhs8fq1Foe .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhs8fq1Foe .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhs8fq1Foe .mbr-section-title {
  color: #414b54;
}
.cid-vhs8fq1Foe .mbr-text,
.cid-vhs8fq1Foe .mbr-section-btn {
  text-align: left;
}
.cid-vhs8fq1Foe .item-title {
  text-align: center;
}
.cid-vhs8fq1Foe .item-subtitle {
  text-align: left;
}
.cid-vhs8fq1Foe .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhs8fq1Foe .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhs8fq1Foe .embla__button--next,
.cid-vhs8fq1Foe .embla__button--prev {
  display: flex;
}
.cid-vhs8fq1Foe .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhs8fq1Foe .embla__button {
    display: none;
  }
}
.cid-vhs8fq1Foe .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhs8fq1Foe .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhs8fq1Foe .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhs8fq1Foe .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhs8fq1Foe .embla__button {
    top: auto;
  }
}
.cid-vhs8fq1Foe .embla {
  position: relative;
  width: 100%;
}
.cid-vhs8fq1Foe .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhs8fq1Foe .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhs8fq1Foe .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhs8fq1Foe .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhs8fq1Foe .mbr-section-subtitle {
  color: #414b54;
}
.cid-vhs8fsf7De {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vhs8fsf7De .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8fsf7De .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs8fsf7De .nav-tabs .nav-item.open .nav-link:focus,
.cid-vhs8fsf7De .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-vhs8fsf7De .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #fce412;
}
@media (max-width: 767px) {
  .cid-vhs8fsf7De .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-vhs8fsf7De .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-vhs8fsf7De .nav-tabs .nav-link:not(.active) {
  color: #414b54;
}
.cid-vhs8fsf7De .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-vhs8fsf7De .nav-link,
.cid-vhs8fsf7De .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-vhs8fsf7De .nav-tabs .nav-link.active {
  color: #fce412;
  border-bottom: 3px solid #fce412;
}
.cid-vhs8fsf7De H4 {
  text-align: center;
}
.cid-vhs8fsf7De H3 {
  text-align: left;
  color: #3e4750;
}
.cid-vhs8fsQVYX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kapak-resimlerim-2011-1920x600.jpg");
}
.cid-vhs8fsQVYX .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs8fsQVYX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs8fsQVYX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vhqs8p0oui {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vhqs8p0oui nav.navbar {
  position: fixed;
}
.cid-vhqs8p0oui .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-vhqs8p0oui .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vhqs8p0oui .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vhqs8p0oui .dropdown-item:hover,
.cid-vhqs8p0oui .dropdown-item:focus {
  background: #414b54 !important;
  color: white !important;
}
.cid-vhqs8p0oui .dropdown-item:hover span {
  color: white;
}
.cid-vhqs8p0oui .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vhqs8p0oui .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vhqs8p0oui .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vhqs8p0oui .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vhqs8p0oui .nav-link {
  position: relative;
}
.cid-vhqs8p0oui .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vhqs8p0oui .container {
    flex-wrap: wrap;
  }
}
.cid-vhqs8p0oui .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vhqs8p0oui .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vhqs8p0oui .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vhqs8p0oui .dropdown-menu,
.cid-vhqs8p0oui .navbar.opened {
  background: #ffffff !important;
}
.cid-vhqs8p0oui .nav-item:focus,
.cid-vhqs8p0oui .nav-link:focus {
  outline: none;
}
.cid-vhqs8p0oui .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vhqs8p0oui .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vhqs8p0oui .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vhqs8p0oui .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vhqs8p0oui .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vhqs8p0oui .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vhqs8p0oui .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-vhqs8p0oui .navbar.opened {
  transition: all 0.3s;
}
.cid-vhqs8p0oui .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vhqs8p0oui .navbar .navbar-logo img {
  width: auto;
}
.cid-vhqs8p0oui .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vhqs8p0oui .navbar.collapsed {
  justify-content: center;
}
.cid-vhqs8p0oui .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vhqs8p0oui .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vhqs8p0oui .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-vhqs8p0oui .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vhqs8p0oui .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vhqs8p0oui .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-vhqs8p0oui .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vhqs8p0oui .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vhqs8p0oui .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vhqs8p0oui .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vhqs8p0oui .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vhqs8p0oui .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vhqs8p0oui .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vhqs8p0oui .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-vhqs8p0oui .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vhqs8p0oui .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vhqs8p0oui .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vhqs8p0oui .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vhqs8p0oui .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vhqs8p0oui .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vhqs8p0oui .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vhqs8p0oui .navbar.navbar-short {
  min-height: 60px;
}
.cid-vhqs8p0oui .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vhqs8p0oui .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vhqs8p0oui .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-vhqs8p0oui .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vhqs8p0oui .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vhqs8p0oui .dropdown-item.active,
.cid-vhqs8p0oui .dropdown-item:active {
  background-color: transparent;
}
.cid-vhqs8p0oui .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vhqs8p0oui .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vhqs8p0oui .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vhqs8p0oui .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vhqs8p0oui .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vhqs8p0oui .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vhqs8p0oui ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vhqs8p0oui .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vhqs8p0oui button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vhqs8p0oui button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vhqs8p0oui button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vhqs8p0oui button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vhqs8p0oui button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vhqs8p0oui button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vhqs8p0oui nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vhqs8p0oui nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vhqs8p0oui nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vhqs8p0oui nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vhqs8p0oui .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vhqs8p0oui a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vhqs8p0oui .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vhqs8p0oui .navbar {
    height: 70px;
  }
  .cid-vhqs8p0oui .navbar.opened {
    height: auto;
  }
  .cid-vhqs8p0oui .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vhqsf6v26T {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/aparatx-gorsel-2-2000x1125.png");
}
.cid-vhqsf6v26T .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhqsf6v26T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhqs8ryiBJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhqs8ryiBJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhqs8ryiBJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhqs8ryiBJ .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vhqs8ryiBJ .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vhqs8ryiBJ .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vhqs8ryiBJ .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vhqs8ryiBJ .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vhqs8ryiBJ .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vhqs8ryiBJ .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vhqs8ryiBJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vhqs8ryiBJ .card-title {
  text-align: center;
}
.cid-vhqs8ryiBJ .mbr-text,
.cid-vhqs8ryiBJ .mbr-section-btn {
  text-align: center;
}
.cid-vhyBuC7u04 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhyBuC7u04 img,
.cid-vhyBuC7u04 .item-img {
  width: 100%;
}
.cid-vhyBuC7u04 .item:focus,
.cid-vhyBuC7u04 span:focus {
  outline: none;
}
.cid-vhyBuC7u04 .item-wrapper {
  position: relative;
}
.cid-vhyBuC7u04 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhyBuC7u04 .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhyBuC7u04 .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhyBuC7u04 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhyBuC7u04 .mbr-section-title {
  color: #232323;
}
.cid-vhyBuC7u04 .mbr-text,
.cid-vhyBuC7u04 .mbr-section-btn {
  text-align: left;
}
.cid-vhyBuC7u04 .item-title {
  text-align: left;
}
.cid-vhyBuC7u04 .item-subtitle {
  text-align: left;
}
.cid-vhyBuC7u04 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhyBuC7u04 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhyBuC7u04 .embla__button--next,
.cid-vhyBuC7u04 .embla__button--prev {
  display: flex;
}
.cid-vhyBuC7u04 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhyBuC7u04 .embla__button {
    display: none;
  }
}
.cid-vhyBuC7u04 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhyBuC7u04 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhyBuC7u04 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhyBuC7u04 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhyBuC7u04 .embla__button {
    top: auto;
  }
}
.cid-vhyBuC7u04 .embla {
  position: relative;
  width: 100%;
}
.cid-vhyBuC7u04 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhyBuC7u04 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhyBuC7u04 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhyBuC7u04 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhqs8rZAhV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/elit-camli-korkuluk-slider-205-2000x1212.png");
}
.cid-vhqs8rZAhV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhqs8rZAhV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhqs8rZAhV .mbr-text,
.cid-vhqs8rZAhV .mbr-section-btn {
  color: #232323;
}
.cid-vhqs8rZAhV .card-title,
.cid-vhqs8rZAhV .card-box {
  color: #ffffff;
}
.cid-vhqs8rZAhV .mbr-text,
.cid-vhqs8rZAhV .link-wrap {
  color: #ffffff;
}
.cid-vhqs8slCRE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhqs8slCRE img,
.cid-vhqs8slCRE .item-img {
  width: 100%;
}
.cid-vhqs8slCRE .item:focus,
.cid-vhqs8slCRE span:focus {
  outline: none;
}
.cid-vhqs8slCRE .item-wrapper {
  position: relative;
}
.cid-vhqs8slCRE .slide-content {
  position: relative;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhqs8slCRE .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhqs8slCRE .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhqs8slCRE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhqs8slCRE .mbr-section-title {
  color: #232323;
}
.cid-vhqs8slCRE .mbr-text,
.cid-vhqs8slCRE .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-vhqs8slCRE .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-vhqs8slCRE .item-subtitle {
  text-align: left;
}
.cid-vhqs8slCRE .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhqs8slCRE .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhqs8slCRE .embla__button--next,
.cid-vhqs8slCRE .embla__button--prev {
  display: flex;
}
.cid-vhqs8slCRE .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhqs8slCRE .embla__button {
    display: none;
  }
}
.cid-vhqs8slCRE .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhqs8slCRE .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhqs8slCRE .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhqs8slCRE .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhqs8slCRE .embla__button {
    top: auto;
  }
}
.cid-vhqs8slCRE .embla {
  position: relative;
  width: 100%;
}
.cid-vhqs8slCRE .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhqs8slCRE .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhqs8slCRE .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhqs8slCRE .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhqu6Y8mra {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhqu6Y8mra img,
.cid-vhqu6Y8mra .item-img {
  width: 100%;
}
.cid-vhqu6Y8mra .item:focus,
.cid-vhqu6Y8mra span:focus {
  outline: none;
}
.cid-vhqu6Y8mra .item-wrapper {
  position: relative;
}
.cid-vhqu6Y8mra .slide-content {
  position: relative;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhqu6Y8mra .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhqu6Y8mra .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhqu6Y8mra .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhqu6Y8mra .mbr-section-title {
  color: #232323;
}
.cid-vhqu6Y8mra .mbr-text,
.cid-vhqu6Y8mra .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-vhqu6Y8mra .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-vhqu6Y8mra .item-subtitle {
  text-align: left;
}
.cid-vhqu6Y8mra .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhqu6Y8mra .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhqu6Y8mra .embla__button--next,
.cid-vhqu6Y8mra .embla__button--prev {
  display: flex;
}
.cid-vhqu6Y8mra .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhqu6Y8mra .embla__button {
    display: none;
  }
}
.cid-vhqu6Y8mra .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhqu6Y8mra .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhqu6Y8mra .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhqu6Y8mra .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhqu6Y8mra .embla__button {
    top: auto;
  }
}
.cid-vhqu6Y8mra .embla {
  position: relative;
  width: 100%;
}
.cid-vhqu6Y8mra .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhqu6Y8mra .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhqu6Y8mra .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhqu6Y8mra .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhqs8vUz1b {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/aparatx-gorsel-1-2000x1125.png");
}
.cid-vhqs8vUz1b .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhqs8vUz1b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhqs8vUz1b .mbr-text,
.cid-vhqs8vUz1b .mbr-section-btn {
  color: #232323;
}
.cid-vhqs8vUz1b .card-title,
.cid-vhqs8vUz1b .card-box {
  color: #ffffff;
}
.cid-vhqs8vUz1b .mbr-text,
.cid-vhqs8vUz1b .link-wrap {
  color: #ffffff;
}
.cid-vhqSe98E9n {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-vhqSe98E9n img,
.cid-vhqSe98E9n .item-img {
  width: 100%;
}
.cid-vhqSe98E9n .item:focus,
.cid-vhqSe98E9n span:focus {
  outline: none;
}
.cid-vhqSe98E9n .item-wrapper {
  position: relative;
}
.cid-vhqSe98E9n .slide-content {
  position: relative;
  border-radius: 4px;
  background: #414b54;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhqSe98E9n .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhqSe98E9n .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhqSe98E9n .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhqSe98E9n .mbr-section-title {
  color: #232323;
}
.cid-vhqSe98E9n .mbr-text,
.cid-vhqSe98E9n .mbr-section-btn {
  text-align: center;
}
.cid-vhqSe98E9n .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-vhqSe98E9n .item-subtitle {
  text-align: left;
}
.cid-vhqSe98E9n .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhqSe98E9n .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhqSe98E9n .embla__button--next,
.cid-vhqSe98E9n .embla__button--prev {
  display: flex;
}
.cid-vhqSe98E9n .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhqSe98E9n .embla__button {
    display: none;
  }
}
.cid-vhqSe98E9n .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhqSe98E9n .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhqSe98E9n .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhqSe98E9n .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhqSe98E9n .embla__button {
    top: auto;
  }
}
.cid-vhqSe98E9n .embla {
  position: relative;
  width: 100%;
}
.cid-vhqSe98E9n .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhqSe98E9n .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhqSe98E9n .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhqSe98E9n .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhwoKmDN9N {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vhwoKmDN9N .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwoKmDN9N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhwoKmDN9N .img-wrapper {
  text-align: center;
  padding-bottom: 2rem;
}
.cid-vhwoKmDN9N img {
  margin: auto;
  width: 140px;
}
.cid-vhwoKmDN9N .row {
  align-items: flex-start;
}
.cid-vhwoKmDN9N .item-wrapper {
  border-radius: 4px;
  background: #bbbbbb;
}
@media (max-width: 992px) {
  .cid-vhwoKmDN9N .item-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-vhwoKmDN9N .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vhwoKmDN9N .item-wrapper {
    padding: 1rem;
  }
}
.cid-vhwoJmBPti {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vhwoJmBPti .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwoJmBPti .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vhwoJmBPti .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vhwoJmBPti img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vhwoJmBPti .text-wrapper {
    padding: 2rem;
  }
}
.cid-vhwoIe9RZp {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-vhwoIe9RZp .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwoIe9RZp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhwoIe9RZp .mbr-section-title {
  color: #ffffff;
}
.cid-vhwoIe9RZp .mbr-text,
.cid-vhwoIe9RZp .mbr-section-btn {
  color: #ffffff;
}
.cid-vhqs8BH87O {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #414b54;
}
.cid-vhqs8BH87O .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhqs8BH87O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhqs8BH87O .mbr-section-title {
  color: #ffffff;
}
.cid-vhqs8C5TKh {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vhqs8C5TKh .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhqs8C5TKh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhqs8C5TKh .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vhqs8C5TKh .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vhqs8C5TKh .row {
    text-align: center;
  }
  .cid-vhqs8C5TKh .row > div {
    margin: auto;
  }
  .cid-vhqs8C5TKh .social-row {
    justify-content: center;
  }
}
.cid-vhqs8C5TKh .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vhqs8C5TKh .list {
  list-style: none;
  padding-left: 0;
  color: #414b54;
}
@media (max-width: 991px) {
  .cid-vhqs8C5TKh .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vhqs8C5TKh .list {
    margin-bottom: 0rem;
  }
}
.cid-vhqs8C5TKh .mbr-text {
  color: #414b54;
}
.cid-vhqs8C5TKh .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vhqs8C5TKh .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vhqs8C5TKh div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vhqs8C5TKh .mbr-section-subtitle {
  color: #232323;
}
.cid-vhqs8C5TKh H5 {
  color: #232323;
}
.cid-vhqs8CJYEs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-vhqs8CJYEs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhqs8CJYEs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhqs8CJYEs .media-container-row {
  justify-content: space-between;
}
.cid-vhqs8CJYEs .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-vhqs8CJYEs .text-content {
    max-width: none;
  }
}
.cid-vhqs8CJYEs .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #414b54;
  border: 2px solid #414b54;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-vhqs8CJYEs .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-vhqs8CJYEs .mbr-iconfont-social:hover {
  background-color: #414b54;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-vhqs8CJYEs .icons {
    justify-content: center !important;
  }
  .cid-vhqs8CJYEs .text-content * {
    text-align: center;
  }
}
.cid-vhqs8CJYEs .mbr-section-title {
  color: #414b54;
}
.cid-vhqs8CJYEs P {
  color: #414b54;
}
.cid-vhqs8DqmEp {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vhqs8DqmEp img,
.cid-vhqs8DqmEp .item-img {
  width: 100%;
}
.cid-vhqs8DqmEp .item:focus,
.cid-vhqs8DqmEp span:focus {
  outline: none;
}
.cid-vhqs8DqmEp .item-wrapper {
  position: relative;
}
.cid-vhqs8DqmEp .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhqs8DqmEp .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhqs8DqmEp .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhqs8DqmEp .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhqs8DqmEp .mbr-section-title {
  color: #414b54;
}
.cid-vhqs8DqmEp .mbr-text,
.cid-vhqs8DqmEp .mbr-section-btn {
  text-align: left;
}
.cid-vhqs8DqmEp .item-title {
  text-align: center;
}
.cid-vhqs8DqmEp .item-subtitle {
  text-align: left;
}
.cid-vhqs8DqmEp .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhqs8DqmEp .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhqs8DqmEp .embla__button--next,
.cid-vhqs8DqmEp .embla__button--prev {
  display: flex;
}
.cid-vhqs8DqmEp .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhqs8DqmEp .embla__button {
    display: none;
  }
}
.cid-vhqs8DqmEp .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhqs8DqmEp .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhqs8DqmEp .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhqs8DqmEp .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhqs8DqmEp .embla__button {
    top: auto;
  }
}
.cid-vhqs8DqmEp .embla {
  position: relative;
  width: 100%;
}
.cid-vhqs8DqmEp .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhqs8DqmEp .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhqs8DqmEp .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhqs8DqmEp .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhqs8DqmEp .mbr-section-subtitle {
  color: #414b54;
}
.cid-vhqs8G7TwD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vhqs8G7TwD .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhqs8G7TwD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhqs8G7TwD .nav-tabs .nav-item.open .nav-link:focus,
.cid-vhqs8G7TwD .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-vhqs8G7TwD .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #fce412;
}
@media (max-width: 767px) {
  .cid-vhqs8G7TwD .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-vhqs8G7TwD .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-vhqs8G7TwD .nav-tabs .nav-link:not(.active) {
  color: #414b54;
}
.cid-vhqs8G7TwD .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-vhqs8G7TwD .nav-link,
.cid-vhqs8G7TwD .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-vhqs8G7TwD .nav-tabs .nav-link.active {
  color: #fce412;
  border-bottom: 3px solid #fce412;
}
.cid-vhqs8G7TwD H4 {
  text-align: center;
}
.cid-vhqs8G7TwD H3 {
  text-align: left;
  color: #3e4750;
}
.cid-vhqs8GJpc6 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kapak-resimlerim-2011-1920x600.jpg");
}
.cid-vhqs8GJpc6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhqs8GJpc6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhqs8GJpc6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vhs7Xkwg20 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vhs7Xkwg20 nav.navbar {
  position: fixed;
}
.cid-vhs7Xkwg20 .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-vhs7Xkwg20 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vhs7Xkwg20 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vhs7Xkwg20 .dropdown-item:hover,
.cid-vhs7Xkwg20 .dropdown-item:focus {
  background: #414b54 !important;
  color: white !important;
}
.cid-vhs7Xkwg20 .dropdown-item:hover span {
  color: white;
}
.cid-vhs7Xkwg20 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vhs7Xkwg20 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vhs7Xkwg20 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vhs7Xkwg20 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vhs7Xkwg20 .nav-link {
  position: relative;
}
.cid-vhs7Xkwg20 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vhs7Xkwg20 .container {
    flex-wrap: wrap;
  }
}
.cid-vhs7Xkwg20 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vhs7Xkwg20 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vhs7Xkwg20 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vhs7Xkwg20 .dropdown-menu,
.cid-vhs7Xkwg20 .navbar.opened {
  background: #ffffff !important;
}
.cid-vhs7Xkwg20 .nav-item:focus,
.cid-vhs7Xkwg20 .nav-link:focus {
  outline: none;
}
.cid-vhs7Xkwg20 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vhs7Xkwg20 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vhs7Xkwg20 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vhs7Xkwg20 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vhs7Xkwg20 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vhs7Xkwg20 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vhs7Xkwg20 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-vhs7Xkwg20 .navbar.opened {
  transition: all 0.3s;
}
.cid-vhs7Xkwg20 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vhs7Xkwg20 .navbar .navbar-logo img {
  width: auto;
}
.cid-vhs7Xkwg20 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vhs7Xkwg20 .navbar.collapsed {
  justify-content: center;
}
.cid-vhs7Xkwg20 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vhs7Xkwg20 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vhs7Xkwg20 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-vhs7Xkwg20 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vhs7Xkwg20 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vhs7Xkwg20 .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-vhs7Xkwg20 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vhs7Xkwg20 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vhs7Xkwg20 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vhs7Xkwg20 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vhs7Xkwg20 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vhs7Xkwg20 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vhs7Xkwg20 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vhs7Xkwg20 .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-vhs7Xkwg20 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vhs7Xkwg20 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vhs7Xkwg20 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vhs7Xkwg20 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vhs7Xkwg20 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vhs7Xkwg20 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vhs7Xkwg20 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vhs7Xkwg20 .navbar.navbar-short {
  min-height: 60px;
}
.cid-vhs7Xkwg20 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vhs7Xkwg20 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vhs7Xkwg20 .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-vhs7Xkwg20 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vhs7Xkwg20 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vhs7Xkwg20 .dropdown-item.active,
.cid-vhs7Xkwg20 .dropdown-item:active {
  background-color: transparent;
}
.cid-vhs7Xkwg20 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vhs7Xkwg20 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vhs7Xkwg20 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vhs7Xkwg20 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vhs7Xkwg20 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vhs7Xkwg20 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vhs7Xkwg20 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vhs7Xkwg20 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vhs7Xkwg20 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vhs7Xkwg20 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vhs7Xkwg20 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vhs7Xkwg20 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vhs7Xkwg20 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vhs7Xkwg20 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vhs7Xkwg20 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vhs7Xkwg20 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vhs7Xkwg20 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vhs7Xkwg20 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vhs7Xkwg20 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vhs7Xkwg20 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vhs7Xkwg20 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vhs7Xkwg20 .navbar {
    height: 70px;
  }
  .cid-vhs7Xkwg20 .navbar.opened {
    height: auto;
  }
  .cid-vhs7Xkwg20 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vhs7XlKMnr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/kapak-resimleri-20204-1920x583.jpg");
}
.cid-vhs7XlKMnr .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs7XlKMnr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhyISyy9in {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vhyISyy9in .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhyISyy9in .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhyISyy9in .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vhyISyy9in .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vhyISyy9in .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vhyISyy9in .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vhyISyy9in .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vhyISyy9in .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vhyISyy9in .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vhyISyy9in .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vhyISyy9in .card-title {
  text-align: center;
}
.cid-vhyISyy9in .mbr-text,
.cid-vhyISyy9in .mbr-section-btn {
  text-align: center;
}
.cid-vhwd8E768C {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhwd8E768C img,
.cid-vhwd8E768C .item-img {
  width: 100%;
}
.cid-vhwd8E768C .item:focus,
.cid-vhwd8E768C span:focus {
  outline: none;
}
.cid-vhwd8E768C .item-wrapper {
  position: relative;
}
.cid-vhwd8E768C .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhwd8E768C .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhwd8E768C .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhwd8E768C .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhwd8E768C .mbr-section-title {
  color: #232323;
}
.cid-vhwd8E768C .mbr-text,
.cid-vhwd8E768C .mbr-section-btn {
  text-align: center;
}
.cid-vhwd8E768C .item-title {
  text-align: center;
}
.cid-vhwd8E768C .item-subtitle {
  text-align: left;
}
.cid-vhwd8E768C .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhwd8E768C .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhwd8E768C .embla__button--next,
.cid-vhwd8E768C .embla__button--prev {
  display: flex;
}
.cid-vhwd8E768C .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhwd8E768C .embla__button {
    display: none;
  }
}
.cid-vhwd8E768C .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhwd8E768C .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhwd8E768C .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhwd8E768C .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhwd8E768C .embla__button {
    top: auto;
  }
}
.cid-vhwd8E768C .embla {
  position: relative;
  width: 100%;
}
.cid-vhwd8E768C .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhwd8E768C .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhwd8E768C .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhwd8E768C .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhyJwsDFom {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhyJwsDFom .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhyJwsDFom .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhyJwsDFom .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vhyJwsDFom .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-vhyLthmlit {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhyLthmlit img,
.cid-vhyLthmlit .item-img {
  width: 100%;
}
.cid-vhyLthmlit .item:focus,
.cid-vhyLthmlit span:focus {
  outline: none;
}
.cid-vhyLthmlit .item-wrapper {
  position: relative;
}
.cid-vhyLthmlit .slide-content {
  position: relative;
  border-radius: 4px;
  background: #414b54;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhyLthmlit .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhyLthmlit .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhyLthmlit .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhyLthmlit .mbr-section-title {
  color: #232323;
}
.cid-vhyLthmlit .mbr-text,
.cid-vhyLthmlit .mbr-section-btn {
  text-align: center;
}
.cid-vhyLthmlit .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-vhyLthmlit .item-subtitle {
  text-align: left;
}
.cid-vhyLthmlit .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhyLthmlit .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhyLthmlit .embla__button--next,
.cid-vhyLthmlit .embla__button--prev {
  display: flex;
}
.cid-vhyLthmlit .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhyLthmlit .embla__button {
    display: none;
  }
}
.cid-vhyLthmlit .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhyLthmlit .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhyLthmlit .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhyLthmlit .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhyLthmlit .embla__button {
    top: auto;
  }
}
.cid-vhyLthmlit .embla {
  position: relative;
  width: 100%;
}
.cid-vhyLthmlit .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhyLthmlit .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhyLthmlit .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhyLthmlit .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhyJxD5UNg {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-vhyJxD5UNg img,
.cid-vhyJxD5UNg .item-img {
  width: 100%;
}
.cid-vhyJxD5UNg .item:focus,
.cid-vhyJxD5UNg span:focus {
  outline: none;
}
.cid-vhyJxD5UNg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vhyJxD5UNg .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #414b54;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhyJxD5UNg .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhyJxD5UNg .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-vhyJxD5UNg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhyJxD5UNg .mbr-section-title {
  color: #232323;
}
.cid-vhyJxD5UNg .mbr-text,
.cid-vhyJxD5UNg .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-vhyJxD5UNg .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-vhyJxD5UNg .item-subtitle {
  text-align: center;
}
.cid-vhyJzYXmwD {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vhyJzYXmwD .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhyJzYXmwD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhyJNslKzd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhyJNslKzd img,
.cid-vhyJNslKzd .item-img {
  width: 100%;
}
.cid-vhyJNslKzd .item:focus,
.cid-vhyJNslKzd span:focus {
  outline: none;
}
.cid-vhyJNslKzd .item-wrapper {
  position: relative;
}
.cid-vhyJNslKzd .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhyJNslKzd .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhyJNslKzd .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhyJNslKzd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhyJNslKzd .mbr-section-title {
  color: #232323;
}
.cid-vhyJNslKzd .mbr-text,
.cid-vhyJNslKzd .mbr-section-btn {
  text-align: center;
}
.cid-vhyJNslKzd .item-title {
  text-align: center;
}
.cid-vhyJNslKzd .item-subtitle {
  text-align: left;
}
.cid-vhyJNslKzd .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhyJNslKzd .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhyJNslKzd .embla__button--next,
.cid-vhyJNslKzd .embla__button--prev {
  display: flex;
}
.cid-vhyJNslKzd .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhyJNslKzd .embla__button {
    display: none;
  }
}
.cid-vhyJNslKzd .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhyJNslKzd .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhyJNslKzd .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhyJNslKzd .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhyJNslKzd .embla__button {
    top: auto;
  }
}
.cid-vhyJNslKzd .embla {
  position: relative;
  width: 100%;
}
.cid-vhyJNslKzd .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhyJNslKzd .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhyJNslKzd .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhyJNslKzd .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhwoDgu5E9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vhwoDgu5E9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwoDgu5E9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhwoDgu5E9 .img-wrapper {
  text-align: center;
  padding-bottom: 2rem;
}
.cid-vhwoDgu5E9 img {
  margin: auto;
  width: 140px;
}
.cid-vhwoDgu5E9 .row {
  align-items: flex-start;
}
.cid-vhwoDgu5E9 .item-wrapper {
  border-radius: 4px;
  background: #bbbbbb;
}
@media (max-width: 992px) {
  .cid-vhwoDgu5E9 .item-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-vhwoDgu5E9 .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vhwoDgu5E9 .item-wrapper {
    padding: 1rem;
  }
}
.cid-vhwoCjjONk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vhwoCjjONk .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwoCjjONk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vhwoCjjONk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vhwoCjjONk img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vhwoCjjONk .text-wrapper {
    padding: 2rem;
  }
}
.cid-vhwoAWo9ne {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-vhwoAWo9ne .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwoAWo9ne .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhwoAWo9ne .mbr-section-title {
  color: #ffffff;
}
.cid-vhwoAWo9ne .mbr-text,
.cid-vhwoAWo9ne .mbr-section-btn {
  color: #ffffff;
}
.cid-vhs7XpkAsL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #414b54;
}
.cid-vhs7XpkAsL .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs7XpkAsL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs7XpkAsL .mbr-section-title {
  color: #ffffff;
}
.cid-vhs7XpJMBD {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vhs7XpJMBD .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs7XpJMBD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs7XpJMBD .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vhs7XpJMBD .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vhs7XpJMBD .row {
    text-align: center;
  }
  .cid-vhs7XpJMBD .row > div {
    margin: auto;
  }
  .cid-vhs7XpJMBD .social-row {
    justify-content: center;
  }
}
.cid-vhs7XpJMBD .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vhs7XpJMBD .list {
  list-style: none;
  padding-left: 0;
  color: #414b54;
}
@media (max-width: 991px) {
  .cid-vhs7XpJMBD .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vhs7XpJMBD .list {
    margin-bottom: 0rem;
  }
}
.cid-vhs7XpJMBD .mbr-text {
  color: #414b54;
}
.cid-vhs7XpJMBD .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vhs7XpJMBD .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vhs7XpJMBD div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vhs7XpJMBD .mbr-section-subtitle {
  color: #232323;
}
.cid-vhs7XpJMBD H5 {
  color: #232323;
}
.cid-vhs7XqlvSH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-vhs7XqlvSH .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs7XqlvSH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs7XqlvSH .media-container-row {
  justify-content: space-between;
}
.cid-vhs7XqlvSH .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-vhs7XqlvSH .text-content {
    max-width: none;
  }
}
.cid-vhs7XqlvSH .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #414b54;
  border: 2px solid #414b54;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-vhs7XqlvSH .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-vhs7XqlvSH .mbr-iconfont-social:hover {
  background-color: #414b54;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-vhs7XqlvSH .icons {
    justify-content: center !important;
  }
  .cid-vhs7XqlvSH .text-content * {
    text-align: center;
  }
}
.cid-vhs7XqlvSH .mbr-section-title {
  color: #414b54;
}
.cid-vhs7XqlvSH P {
  color: #414b54;
}
.cid-vhs7XqNODI {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vhs7XqNODI img,
.cid-vhs7XqNODI .item-img {
  width: 100%;
}
.cid-vhs7XqNODI .item:focus,
.cid-vhs7XqNODI span:focus {
  outline: none;
}
.cid-vhs7XqNODI .item-wrapper {
  position: relative;
}
.cid-vhs7XqNODI .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhs7XqNODI .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhs7XqNODI .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhs7XqNODI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhs7XqNODI .mbr-section-title {
  color: #414b54;
}
.cid-vhs7XqNODI .mbr-text,
.cid-vhs7XqNODI .mbr-section-btn {
  text-align: left;
}
.cid-vhs7XqNODI .item-title {
  text-align: center;
}
.cid-vhs7XqNODI .item-subtitle {
  text-align: left;
}
.cid-vhs7XqNODI .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhs7XqNODI .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhs7XqNODI .embla__button--next,
.cid-vhs7XqNODI .embla__button--prev {
  display: flex;
}
.cid-vhs7XqNODI .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhs7XqNODI .embla__button {
    display: none;
  }
}
.cid-vhs7XqNODI .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhs7XqNODI .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhs7XqNODI .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhs7XqNODI .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhs7XqNODI .embla__button {
    top: auto;
  }
}
.cid-vhs7XqNODI .embla {
  position: relative;
  width: 100%;
}
.cid-vhs7XqNODI .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhs7XqNODI .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhs7XqNODI .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhs7XqNODI .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhs7XqNODI .mbr-section-subtitle {
  color: #414b54;
}
.cid-vhs7XsVOdv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vhs7XsVOdv .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs7XsVOdv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs7XsVOdv .nav-tabs .nav-item.open .nav-link:focus,
.cid-vhs7XsVOdv .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-vhs7XsVOdv .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #fce412;
}
@media (max-width: 767px) {
  .cid-vhs7XsVOdv .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-vhs7XsVOdv .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-vhs7XsVOdv .nav-tabs .nav-link:not(.active) {
  color: #414b54;
}
.cid-vhs7XsVOdv .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-vhs7XsVOdv .nav-link,
.cid-vhs7XsVOdv .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-vhs7XsVOdv .nav-tabs .nav-link.active {
  color: #fce412;
  border-bottom: 3px solid #fce412;
}
.cid-vhs7XsVOdv H4 {
  text-align: center;
}
.cid-vhs7XsVOdv H3 {
  text-align: left;
  color: #3e4750;
}
.cid-vhs7Xtpbsh {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kapak-resimlerim-2011-1920x600.jpg");
}
.cid-vhs7Xtpbsh .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs7Xtpbsh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs7Xtpbsh .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vhs874E8RG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vhs874E8RG nav.navbar {
  position: fixed;
}
.cid-vhs874E8RG .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-vhs874E8RG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vhs874E8RG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vhs874E8RG .dropdown-item:hover,
.cid-vhs874E8RG .dropdown-item:focus {
  background: #414b54 !important;
  color: white !important;
}
.cid-vhs874E8RG .dropdown-item:hover span {
  color: white;
}
.cid-vhs874E8RG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vhs874E8RG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vhs874E8RG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vhs874E8RG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vhs874E8RG .nav-link {
  position: relative;
}
.cid-vhs874E8RG .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vhs874E8RG .container {
    flex-wrap: wrap;
  }
}
.cid-vhs874E8RG .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vhs874E8RG .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vhs874E8RG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vhs874E8RG .dropdown-menu,
.cid-vhs874E8RG .navbar.opened {
  background: #ffffff !important;
}
.cid-vhs874E8RG .nav-item:focus,
.cid-vhs874E8RG .nav-link:focus {
  outline: none;
}
.cid-vhs874E8RG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vhs874E8RG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vhs874E8RG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vhs874E8RG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vhs874E8RG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vhs874E8RG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vhs874E8RG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-vhs874E8RG .navbar.opened {
  transition: all 0.3s;
}
.cid-vhs874E8RG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vhs874E8RG .navbar .navbar-logo img {
  width: auto;
}
.cid-vhs874E8RG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vhs874E8RG .navbar.collapsed {
  justify-content: center;
}
.cid-vhs874E8RG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vhs874E8RG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vhs874E8RG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-vhs874E8RG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vhs874E8RG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vhs874E8RG .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-vhs874E8RG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vhs874E8RG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vhs874E8RG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vhs874E8RG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vhs874E8RG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vhs874E8RG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vhs874E8RG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vhs874E8RG .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-vhs874E8RG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vhs874E8RG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vhs874E8RG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vhs874E8RG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vhs874E8RG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vhs874E8RG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vhs874E8RG .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vhs874E8RG .navbar.navbar-short {
  min-height: 60px;
}
.cid-vhs874E8RG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vhs874E8RG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vhs874E8RG .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-vhs874E8RG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vhs874E8RG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vhs874E8RG .dropdown-item.active,
.cid-vhs874E8RG .dropdown-item:active {
  background-color: transparent;
}
.cid-vhs874E8RG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vhs874E8RG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vhs874E8RG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vhs874E8RG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vhs874E8RG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vhs874E8RG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vhs874E8RG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vhs874E8RG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vhs874E8RG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vhs874E8RG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vhs874E8RG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vhs874E8RG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vhs874E8RG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vhs874E8RG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vhs874E8RG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vhs874E8RG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vhs874E8RG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vhs874E8RG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vhs874E8RG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vhs874E8RG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vhs874E8RG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vhs874E8RG .navbar {
    height: 70px;
  }
  .cid-vhs874E8RG .navbar.opened {
    height: auto;
  }
  .cid-vhs874E8RG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vhs875j7q1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/kapak-resimleri-20204-1920x583.jpg");
}
.cid-vhs875j7q1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs875j7q1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhwvcwbYYf {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vhwvcwbYYf .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwvcwbYYf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhwxpg9nA5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhwxpg9nA5 img,
.cid-vhwxpg9nA5 .item-img {
  width: 100%;
}
.cid-vhwxpg9nA5 .item:focus,
.cid-vhwxpg9nA5 span:focus {
  outline: none;
}
.cid-vhwxpg9nA5 .item-wrapper {
  position: relative;
}
.cid-vhwxpg9nA5 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #414b54;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhwxpg9nA5 .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhwxpg9nA5 .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhwxpg9nA5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhwxpg9nA5 .mbr-section-title {
  color: #232323;
}
.cid-vhwxpg9nA5 .mbr-text,
.cid-vhwxpg9nA5 .mbr-section-btn {
  text-align: left;
}
.cid-vhwxpg9nA5 .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-vhwxpg9nA5 .item-subtitle {
  text-align: left;
}
.cid-vhwxpg9nA5 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhwxpg9nA5 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhwxpg9nA5 .embla__button--next,
.cid-vhwxpg9nA5 .embla__button--prev {
  display: flex;
}
.cid-vhwxpg9nA5 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhwxpg9nA5 .embla__button {
    display: none;
  }
}
.cid-vhwxpg9nA5 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhwxpg9nA5 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhwxpg9nA5 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhwxpg9nA5 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhwxpg9nA5 .embla__button {
    top: auto;
  }
}
.cid-vhwxpg9nA5 .embla {
  position: relative;
  width: 100%;
}
.cid-vhwxpg9nA5 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhwxpg9nA5 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhwxpg9nA5 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhwxpg9nA5 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhwxwp7ZE8 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhwxwp7ZE8 img,
.cid-vhwxwp7ZE8 .item-img {
  width: 100%;
}
.cid-vhwxwp7ZE8 .item:focus,
.cid-vhwxwp7ZE8 span:focus {
  outline: none;
}
.cid-vhwxwp7ZE8 .item-wrapper {
  position: relative;
}
.cid-vhwxwp7ZE8 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #414b54;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhwxwp7ZE8 .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhwxwp7ZE8 .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhwxwp7ZE8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhwxwp7ZE8 .mbr-section-title {
  color: #232323;
}
.cid-vhwxwp7ZE8 .mbr-text,
.cid-vhwxwp7ZE8 .mbr-section-btn {
  text-align: center;
}
.cid-vhwxwp7ZE8 .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-vhwxwp7ZE8 .item-subtitle {
  text-align: left;
}
.cid-vhwxwp7ZE8 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhwxwp7ZE8 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhwxwp7ZE8 .embla__button--next,
.cid-vhwxwp7ZE8 .embla__button--prev {
  display: flex;
}
.cid-vhwxwp7ZE8 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhwxwp7ZE8 .embla__button {
    display: none;
  }
}
.cid-vhwxwp7ZE8 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhwxwp7ZE8 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhwxwp7ZE8 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhwxwp7ZE8 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhwxwp7ZE8 .embla__button {
    top: auto;
  }
}
.cid-vhwxwp7ZE8 .embla {
  position: relative;
  width: 100%;
}
.cid-vhwxwp7ZE8 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhwxwp7ZE8 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhwxwp7ZE8 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhwxwp7ZE8 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhwysoFarX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhwysoFarX img,
.cid-vhwysoFarX .item-img {
  width: 100%;
}
.cid-vhwysoFarX .item:focus,
.cid-vhwysoFarX span:focus {
  outline: none;
}
.cid-vhwysoFarX .item-wrapper {
  position: relative;
}
.cid-vhwysoFarX .slide-content {
  position: relative;
  border-radius: 4px;
  background: #414b54;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhwysoFarX .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhwysoFarX .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhwysoFarX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhwysoFarX .mbr-section-title {
  color: #232323;
}
.cid-vhwysoFarX .mbr-text,
.cid-vhwysoFarX .mbr-section-btn {
  text-align: center;
}
.cid-vhwysoFarX .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-vhwysoFarX .item-subtitle {
  text-align: left;
}
.cid-vhwysoFarX .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhwysoFarX .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhwysoFarX .embla__button--next,
.cid-vhwysoFarX .embla__button--prev {
  display: flex;
}
.cid-vhwysoFarX .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhwysoFarX .embla__button {
    display: none;
  }
}
.cid-vhwysoFarX .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhwysoFarX .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhwysoFarX .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhwysoFarX .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhwysoFarX .embla__button {
    top: auto;
  }
}
.cid-vhwysoFarX .embla {
  position: relative;
  width: 100%;
}
.cid-vhwysoFarX .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhwysoFarX .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhwysoFarX .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhwysoFarX .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhwy7yyd9f {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vhwy7yyd9f img,
.cid-vhwy7yyd9f .item-img {
  width: 100%;
}
.cid-vhwy7yyd9f .item:focus,
.cid-vhwy7yyd9f span:focus {
  outline: none;
}
.cid-vhwy7yyd9f .item-wrapper {
  position: relative;
}
.cid-vhwy7yyd9f .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhwy7yyd9f .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhwy7yyd9f .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhwy7yyd9f .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhwy7yyd9f .mbr-section-title {
  color: #232323;
}
.cid-vhwy7yyd9f .mbr-text,
.cid-vhwy7yyd9f .mbr-section-btn {
  text-align: left;
}
.cid-vhwy7yyd9f .item-title {
  text-align: center;
}
.cid-vhwy7yyd9f .item-subtitle {
  text-align: left;
}
.cid-vhwy7yyd9f .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhwy7yyd9f .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhwy7yyd9f .embla__button--next,
.cid-vhwy7yyd9f .embla__button--prev {
  display: flex;
}
.cid-vhwy7yyd9f .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhwy7yyd9f .embla__button {
    display: none;
  }
}
.cid-vhwy7yyd9f .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhwy7yyd9f .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhwy7yyd9f .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhwy7yyd9f .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhwy7yyd9f .embla__button {
    top: auto;
  }
}
.cid-vhwy7yyd9f .embla {
  position: relative;
  width: 100%;
}
.cid-vhwy7yyd9f .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhwy7yyd9f .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhwy7yyd9f .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhwy7yyd9f .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhwowpiciu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vhwowpiciu .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwowpiciu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhwowpiciu .img-wrapper {
  text-align: center;
  padding-bottom: 2rem;
}
.cid-vhwowpiciu img {
  margin: auto;
  width: 140px;
}
.cid-vhwowpiciu .row {
  align-items: flex-start;
}
.cid-vhwowpiciu .item-wrapper {
  border-radius: 4px;
  background: #bbbbbb;
}
@media (max-width: 992px) {
  .cid-vhwowpiciu .item-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-vhwowpiciu .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vhwowpiciu .item-wrapper {
    padding: 1rem;
  }
}
.cid-vhwouFvBPA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vhwouFvBPA .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwouFvBPA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vhwouFvBPA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vhwouFvBPA img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vhwouFvBPA .text-wrapper {
    padding: 2rem;
  }
}
.cid-vhwoswXVDK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-vhwoswXVDK .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhwoswXVDK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhwoswXVDK .mbr-section-title {
  color: #ffffff;
}
.cid-vhwoswXVDK .mbr-text,
.cid-vhwoswXVDK .mbr-section-btn {
  color: #ffffff;
}
.cid-vhs876N0DX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #414b54;
}
.cid-vhs876N0DX .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs876N0DX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs876N0DX .mbr-section-title {
  color: #ffffff;
}
.cid-vhs877eYQt {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vhs877eYQt .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs877eYQt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs877eYQt .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vhs877eYQt .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vhs877eYQt .row {
    text-align: center;
  }
  .cid-vhs877eYQt .row > div {
    margin: auto;
  }
  .cid-vhs877eYQt .social-row {
    justify-content: center;
  }
}
.cid-vhs877eYQt .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vhs877eYQt .list {
  list-style: none;
  padding-left: 0;
  color: #414b54;
}
@media (max-width: 991px) {
  .cid-vhs877eYQt .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vhs877eYQt .list {
    margin-bottom: 0rem;
  }
}
.cid-vhs877eYQt .mbr-text {
  color: #414b54;
}
.cid-vhs877eYQt .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vhs877eYQt .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vhs877eYQt div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vhs877eYQt .mbr-section-subtitle {
  color: #232323;
}
.cid-vhs877eYQt H5 {
  color: #232323;
}
.cid-vhs877Sjl6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-vhs877Sjl6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs877Sjl6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs877Sjl6 .media-container-row {
  justify-content: space-between;
}
.cid-vhs877Sjl6 .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-vhs877Sjl6 .text-content {
    max-width: none;
  }
}
.cid-vhs877Sjl6 .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #414b54;
  border: 2px solid #414b54;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-vhs877Sjl6 .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-vhs877Sjl6 .mbr-iconfont-social:hover {
  background-color: #414b54;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-vhs877Sjl6 .icons {
    justify-content: center !important;
  }
  .cid-vhs877Sjl6 .text-content * {
    text-align: center;
  }
}
.cid-vhs877Sjl6 .mbr-section-title {
  color: #414b54;
}
.cid-vhs877Sjl6 P {
  color: #414b54;
}
.cid-vhs878xZ4t {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vhs878xZ4t img,
.cid-vhs878xZ4t .item-img {
  width: 100%;
}
.cid-vhs878xZ4t .item:focus,
.cid-vhs878xZ4t span:focus {
  outline: none;
}
.cid-vhs878xZ4t .item-wrapper {
  position: relative;
}
.cid-vhs878xZ4t .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vhs878xZ4t .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vhs878xZ4t .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-vhs878xZ4t .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vhs878xZ4t .mbr-section-title {
  color: #414b54;
}
.cid-vhs878xZ4t .mbr-text,
.cid-vhs878xZ4t .mbr-section-btn {
  text-align: left;
}
.cid-vhs878xZ4t .item-title {
  text-align: center;
}
.cid-vhs878xZ4t .item-subtitle {
  text-align: left;
}
.cid-vhs878xZ4t .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-vhs878xZ4t .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vhs878xZ4t .embla__button--next,
.cid-vhs878xZ4t .embla__button--prev {
  display: flex;
}
.cid-vhs878xZ4t .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-vhs878xZ4t .embla__button {
    display: none;
  }
}
.cid-vhs878xZ4t .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vhs878xZ4t .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vhs878xZ4t .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhs878xZ4t .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhs878xZ4t .embla__button {
    top: auto;
  }
}
.cid-vhs878xZ4t .embla {
  position: relative;
  width: 100%;
}
.cid-vhs878xZ4t .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vhs878xZ4t .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhs878xZ4t .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhs878xZ4t .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhs878xZ4t .mbr-section-subtitle {
  color: #414b54;
}
.cid-vhs87aPbU5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vhs87aPbU5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs87aPbU5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs87aPbU5 .nav-tabs .nav-item.open .nav-link:focus,
.cid-vhs87aPbU5 .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-vhs87aPbU5 .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #fce412;
}
@media (max-width: 767px) {
  .cid-vhs87aPbU5 .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-vhs87aPbU5 .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-vhs87aPbU5 .nav-tabs .nav-link:not(.active) {
  color: #414b54;
}
.cid-vhs87aPbU5 .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-vhs87aPbU5 .nav-link,
.cid-vhs87aPbU5 .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-vhs87aPbU5 .nav-tabs .nav-link.active {
  color: #fce412;
  border-bottom: 3px solid #fce412;
}
.cid-vhs87aPbU5 H4 {
  text-align: center;
}
.cid-vhs87aPbU5 H3 {
  text-align: left;
  color: #3e4750;
}
.cid-vhs87bxtLa {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kapak-resimlerim-2011-1920x600.jpg");
}
.cid-vhs87bxtLa .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhs87bxtLa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhs87bxtLa .mbr-section-subtitle {
  color: #ffffff;
}
