.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-2 {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 2.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-4 {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 2.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.24rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.96rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: #192c8c !important;
}
.bg-success {
  background-color: #0fa733 !important;
}
.bg-info {
  background-color: #192c8c !important;
}
.bg-warning {
  background-color: #0a1651 !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #192c8c !important;
  border-color: #192c8c !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: #0c1542 !important;
  border-color: #0c1542 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0c1542 !important;
  border-color: #0c1542 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !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: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-info,
.btn-info:active {
  background-color: #192c8c !important;
  border-color: #192c8c !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: #0c1542 !important;
  border-color: #0c1542 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0c1542 !important;
  border-color: #0c1542 !important;
}
.btn-success,
.btn-success:active {
  background-color: #0fa733 !important;
  border-color: #0fa733 !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: #08571b !important;
  border-color: #08571b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #08571b !important;
  border-color: #08571b !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #0a1651 !important;
  border-color: #0a1651 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #000104 !important;
  border-color: #000104 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #000104 !important;
  border-color: #000104 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !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: #192c8c;
  color: #192c8c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0c1542 !important;
  background-color: transparent!important;
  border-color: #0c1542 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #192c8c !important;
  border-color: #192c8c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #e43f3f;
  color: #e43f3f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #b31919 !important;
  background-color: transparent!important;
  border-color: #b31919 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #192c8c;
  color: #192c8c;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #0c1542 !important;
  background-color: transparent!important;
  border-color: #0c1542 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #192c8c !important;
  border-color: #192c8c !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #0fa733;
  color: #0fa733;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #08571b !important;
  background-color: transparent!important;
  border-color: #08571b !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #0fa733 !important;
  border-color: #0fa733 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #0a1651;
  color: #0a1651;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #000104 !important;
  background-color: transparent!important;
  border-color: #000104 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #0a1651 !important;
  border-color: #0a1651 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #192c8c !important;
}
.text-secondary {
  color: #e43f3f !important;
}
.text-success {
  color: #0fa733 !important;
}
.text-info {
  color: #192c8c !important;
}
.text-warning {
  color: #0a1651 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0a1135 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #a61717 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #074916 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #0a1135 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #000000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #cccccc !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: #192c8c;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #192c8c;
}
.alert-warning {
  background-color: #0a1651;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-gallery-filter li.active .btn {
  background-color: #192c8c;
  border-color: #192c8c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #192c8c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #465fde;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #47ee6f;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #465fde;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #566fea;
}
.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: 'Darker Grotesque', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.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: #192c8c !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #192c8c;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #192c8c;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #192c8c;
}
.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: #192c8c;
  border-bottom-color: #192c8c;
}
.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: #192c8c !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #e43f3f !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='%23192c8c' %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-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #192c8c !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #ffffff !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.1rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDKD5jdvxH {
  display: flex;
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/yildiz-ana-ekran-2-1823x624.webp");
}
.cid-tDKD5jdvxH .mbr-overlay {
  background-color: #0a1651;
  opacity: 0.5;
}
.cid-tDKD5jdvxH .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tDKD5jdvxH {
    align-items: flex-end;
  }
  .cid-tDKD5jdvxH .row {
    justify-content: flex-start;
  }
  .cid-tDKD5jdvxH .content-wrap {
    width: 100%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tDKD5jdvxH .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tDKD5jdvxH {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tDKD5jdvxH .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tDKD5jdvxH .content-wrap {
    width: 100%;
  }
}
.cid-tDJUpzdh3G {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tDJUpzdh3G .mbr-overlay {
  background: #fafafa;
  opacity: 0.4;
}
.cid-tDJUpzdh3G img,
.cid-tDJUpzdh3G .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tDJUpzdh3G .item:focus,
.cid-tDJUpzdh3G span:focus {
  outline: none;
}
.cid-tDJUpzdh3G .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tDJUpzdh3G .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #e8eaf5;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tDJUpzdh3G .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tDJUpzdh3G .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tDJUpzdh3G .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tDJUpzdh3G .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tDJUpzdh3G .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tDJUpzdh3G .mbr-section-title {
  color: #0e1f75;
}
.cid-tDJUpzdh3G .mbr-text,
.cid-tDJUpzdh3G .mbr-section-btn {
  text-align: left;
}
.cid-tDJUpzdh3G .item-title {
  text-align: left;
}
.cid-tDJUpzdh3G .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tDL2oG2rdS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tDL2oG2rdS .mbr-overlay {
  background: #fafafa;
  opacity: 0.4;
}
.cid-tDL2oG2rdS img,
.cid-tDL2oG2rdS .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tDL2oG2rdS .item:focus,
.cid-tDL2oG2rdS span:focus {
  outline: none;
}
.cid-tDL2oG2rdS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tDL2oG2rdS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #e8eaf5;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tDL2oG2rdS .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tDL2oG2rdS .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tDL2oG2rdS .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tDL2oG2rdS .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tDL2oG2rdS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tDL2oG2rdS .mbr-section-title {
  color: #232323;
}
.cid-tDL2oG2rdS .mbr-text,
.cid-tDL2oG2rdS .mbr-section-btn {
  text-align: left;
}
.cid-tDL2oG2rdS .item-title {
  text-align: left;
}
.cid-tDL2oG2rdS .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tDL2DnPC1h {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tDL2DnPC1h .mbr-overlay {
  background: #fafafa;
  opacity: 0.4;
}
.cid-tDL2DnPC1h img,
.cid-tDL2DnPC1h .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tDL2DnPC1h .item:focus,
.cid-tDL2DnPC1h span:focus {
  outline: none;
}
.cid-tDL2DnPC1h .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tDL2DnPC1h .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #e8eaf5;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tDL2DnPC1h .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tDL2DnPC1h .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tDL2DnPC1h .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tDL2DnPC1h .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tDL2DnPC1h .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tDL2DnPC1h .mbr-section-title {
  color: #232323;
}
.cid-tDL2DnPC1h .mbr-text,
.cid-tDL2DnPC1h .mbr-section-btn {
  text-align: left;
}
.cid-tDL2DnPC1h .item-title {
  text-align: left;
}
.cid-tDL2DnPC1h .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-u2zzKs5eop {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-u2zzKs5eop .mbr-overlay {
  background: #fafafa;
  opacity: 0.4;
}
.cid-u2zzKs5eop img,
.cid-u2zzKs5eop .item-img {
  width: 100%;
}
.cid-u2zzKs5eop .item:focus,
.cid-u2zzKs5eop span:focus {
  outline: none;
}
.cid-u2zzKs5eop .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u2zzKs5eop .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2zzKs5eop .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2zzKs5eop .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u2zzKs5eop .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2zzKs5eop .mbr-section-title {
  color: #0e1f75;
}
.cid-u2zzKs5eop .mbr-text,
.cid-u2zzKs5eop .mbr-section-btn {
  text-align: left;
}
.cid-u2zzKs5eop .item-title {
  text-align: left;
}
.cid-u2zzKs5eop .item-subtitle {
  text-align: center;
}
.cid-u2zzKs5eop .mbr-section-subtitle {
  color: #232323;
}
.cid-tKm2ov1wj1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tKm2ov1wj1 .mbr-overlay {
  background: #fafafa;
  opacity: 0.4;
}
.cid-tKm2ov1wj1 img,
.cid-tKm2ov1wj1 .item-img {
  width: 100%;
  height: 100%;
  height: 100px;
  object-fit: cover;
}
.cid-tKm2ov1wj1 .item:focus,
.cid-tKm2ov1wj1 span:focus {
  outline: none;
}
.cid-tKm2ov1wj1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tKm2ov1wj1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #e8eaf5;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tKm2ov1wj1 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tKm2ov1wj1 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tKm2ov1wj1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tKm2ov1wj1 .mbr-section-title {
  color: #232323;
}
.cid-tKm2ov1wj1 .mbr-text,
.cid-tKm2ov1wj1 .mbr-section-btn {
  text-align: left;
}
.cid-tKm2ov1wj1 .item-title {
  text-align: left;
}
.cid-tKm2ov1wj1 .item-subtitle {
  text-align: center;
}
.cid-tDL5dxTWv9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tDL5dxTWv9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDL5dxTWv9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDL5dxTWv9 .item {
  padding-bottom: 2rem;
}
.cid-tDL5dxTWv9 .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tDL5dxTWv9 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tDL5dxTWv9 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tDL5dxTWv9 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tDL5dxTWv9 .carousel-control,
.cid-tDL5dxTWv9 .close {
  background: #1b1b1b;
}
.cid-tDL5dxTWv9 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tDL5dxTWv9 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tDL5dxTWv9 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tDL5dxTWv9 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tDL5dxTWv9 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tDL5dxTWv9 .close::before {
  content: '\e91a';
}
.cid-tDL5dxTWv9 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tDL5dxTWv9 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tDL5dxTWv9 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDL5dxTWv9 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDL5dxTWv9 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDL5dxTWv9 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tDL5dxTWv9 .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-tDL5dxTWv9 .carousel-indicators li.active,
.cid-tDL5dxTWv9 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDL5dxTWv9 .carousel-indicators li::after,
.cid-tDL5dxTWv9 .carousel-indicators li::before {
  content: none;
}
.cid-tDL5dxTWv9 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDL5dxTWv9 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tDL5dxTWv9 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tDL5dxTWv9 .carousel-indicators {
    display: none;
  }
}
.cid-tDL5dxTWv9 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDL5dxTWv9 .carousel-inner > .active {
  display: block;
}
.cid-tDL5dxTWv9 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDL5dxTWv9 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDL5dxTWv9 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tDL5dxTWv9 .carousel-control,
  .cid-tDL5dxTWv9 .carousel-indicators,
  .cid-tDL5dxTWv9 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tDL5dxTWv9 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tDL5dxTWv9 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tDL5dxTWv9 .carousel-indicators .active,
.cid-tDL5dxTWv9 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tDL5dxTWv9 .carousel-indicators .active {
  background: #fff;
}
.cid-tDL5dxTWv9 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tDL5dxTWv9 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tDL5dxTWv9 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tDL5dxTWv9 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tDL5dxTWv9 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tDL5dxTWv9 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tDL5dxTWv9 .carousel {
  width: 100%;
}
.cid-tDL5dxTWv9 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tDL5dxTWv9 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tDL5dxTWv9 .modal.fade .modal-dialog,
.cid-tDL5dxTWv9 .modal.in .modal-dialog {
  transform: none;
}
.cid-tDL5dxTWv9 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tDL5dxTWv9 H6 {
  text-align: center;
}
.cid-tDL5dxTWv9 H3 {
  color: #0e1f75;
}
.cid-ubpzcN8OGq {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-ubpzcN8OGq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubpzcN8OGq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubpzcN8OGq .content-wrapper {
  background: #e8eaf5;
}
@media (max-width: 991px) {
  .cid-ubpzcN8OGq .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-ubpzcN8OGq .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ubpzcN8OGq .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ubpzcN8OGq .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ubpzcN8OGq .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ubpzcN8OGq .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-ubpzcN8OGq .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ubpzcN8OGq .card-title {
  color: #0e1f75;
}
.cid-tDKBiwSrqE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tDKBiwSrqE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDKBiwSrqE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDKBiwSrqE .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tDKBiwSrqE .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tDKBiwSrqE .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-tDKBiwSrqE .bg-instagram:hover {
  background: #bd005c;
}
.cid-tDKBiwSrqE .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tDKBiwSrqE .bg-youtube:hover {
  background: #cc0000;
}
.cid-tDKBiwSrqE .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-tDKBiwSrqE [class^="socicon-"]:before,
.cid-tDKBiwSrqE [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tDKBiwSrqE .mbr-section-title,
.cid-tDKBiwSrqE .social-list {
  color: #0e1f75;
}
.cid-tDVxSEneNm {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tDVxSEneNm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDVxSEneNm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDVxSEneNm .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tDVxSEneNm .container {
    max-width: 1400px;
  }
}
.cid-tDVxSEneNm .card {
  margin: auto;
}
.cid-tDVxSEneNm .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0a1651;
  margin-bottom: 2rem;
}
.cid-tDVxSEneNm .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tDVxSEneNm .row {
  justify-content: center;
}
.cid-tDVxSEneNm H3 {
  color: #0e1f75;
}
.cid-tDJTvtFH2L {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alt-iletisim-banner-2-1920x1080.webp");
}
.cid-tDJTvtFH2L .mbr-overlay {
  background-color: #0a1651;
  opacity: 0.6;
}
.cid-tDJTvtFH2L form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tDJTvtFH2L form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tDJTvtFH2L form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tDJTvtFH2L .mbr-section-title {
  color: #ffffff;
}
.cid-tDJTvtFH2L .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tDJUFbUZUK {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDJUFbUZUK img {
  width: 120px;
  margin: auto;
}
.cid-tDJUFbUZUK .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tDJUFbUZUK .card {
    max-width: 12.5%;
  }
}
.cid-tDJUFbUZUK .mbr-section-title {
  color: #0e1f75;
}
.cid-uubcxMyn0d {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uubcxMyn0d img {
  width: 120px;
  margin: auto;
}
.cid-uubcxMyn0d .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uubcxMyn0d .card {
    max-width: 12.5%;
  }
}
.cid-tE8dHxRVL7 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tE8dHxRVL7 img {
  width: 120px;
  margin: auto;
}
.cid-tE8dHxRVL7 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tE8dHxRVL7 .card {
    max-width: 12.5%;
  }
}
.cid-tE8Uu4JRGW {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tE8Uu4JRGW img {
  width: 120px;
  margin: auto;
}
.cid-tE8Uu4JRGW .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tE8Uu4JRGW .card {
    max-width: 12.5%;
  }
}
.cid-ubpvtVnhn9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-ubpvtVnhn9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubpvtVnhn9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubpvtVnhn9 .card-wrapper {
  background: #e8eaf5;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ubpvtVnhn9 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ubpvtVnhn9 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ubpvtVnhn9 .card-wrapper {
    padding: 4rem;
  }
}
.cid-ubpvtVnhn9 .mbr-text,
.cid-ubpvtVnhn9 .mbr-section-btn {
  color: #192c8c;
}
.cid-ubpvtVnhn9 .card-title {
  color: #0e1f75;
}
.cid-tDL4VOTheM {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDL4VOTheM img {
  width: 120px;
  margin: auto;
}
.cid-tDL4VOTheM .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tDL4VOTheM .card {
    max-width: 12.5%;
  }
}
.cid-tDL4VOTheM .mbr-section-title {
  color: #0e1f75;
}
.cid-tDJTeaXSWE {
  padding-top: 90px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/yildiz-yeni-alt-kisim-1920x1080.webp");
}
@media (max-width: 767px) {
  .cid-tDJTeaXSWE .content {
    text-align: center;
  }
  .cid-tDJTeaXSWE .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tDJTeaXSWE .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tDJTeaXSWE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tDJTeaXSWE .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tDJTeaXSWE .google-map {
  height: 25rem;
  position: relative;
}
.cid-tDJTeaXSWE .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tDJTeaXSWE .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-tDJTeaXSWE .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tDJTeaXSWE .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tDJTeaXSWE .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tDJTeaXSWE .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tDJTeaXSWE .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tDJTeaXSWE .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tDJTeaXSWE .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tDJTeaXSWE .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tDJTeaXSWE .list {
  list-style-type: none;
  padding: 0;
}
.cid-tDJTeaXSWE H5 {
  color: #ffffff;
}
.cid-tDLaaFysXO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDLaaFysXO nav.navbar {
  position: fixed;
}
.cid-tDLaaFysXO .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-tDLaaFysXO .dropdown-menu {
  padding: 0;
}
.cid-tDLaaFysXO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDLaaFysXO .dropdown-item:hover,
.cid-tDLaaFysXO .dropdown-item:focus {
  background: #192c8c !important;
  color: white !important;
}
.cid-tDLaaFysXO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tDLaaFysXO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDLaaFysXO .nav-link {
  position: relative;
}
.cid-tDLaaFysXO .container {
  display: flex;
  margin: auto;
}
.cid-tDLaaFysXO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tDLaaFysXO .navbar-caption {
  padding-right: 4rem;
}
.cid-tDLaaFysXO .dropdown-menu,
.cid-tDLaaFysXO .navbar.opened {
  background: #ffffff !important;
}
.cid-tDLaaFysXO .nav-item:focus,
.cid-tDLaaFysXO .nav-link:focus {
  outline: none;
}
.cid-tDLaaFysXO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDLaaFysXO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDLaaFysXO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tDLaaFysXO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDLaaFysXO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDLaaFysXO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDLaaFysXO .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tDLaaFysXO .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDLaaFysXO .navbar.opened {
  transition: all .3s;
}
.cid-tDLaaFysXO .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tDLaaFysXO .navbar .navbar-logo img {
  width: auto;
}
.cid-tDLaaFysXO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDLaaFysXO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDLaaFysXO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDLaaFysXO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.1rem);
  }
}
.cid-tDLaaFysXO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDLaaFysXO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDLaaFysXO .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: 55%;
}
.cid-tDLaaFysXO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDLaaFysXO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tDLaaFysXO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tDLaaFysXO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDLaaFysXO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDLaaFysXO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDLaaFysXO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDLaaFysXO .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: 55%;
  }
  .cid-tDLaaFysXO .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tDLaaFysXO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDLaaFysXO .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDLaaFysXO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDLaaFysXO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDLaaFysXO .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tDLaaFysXO .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDLaaFysXO .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tDLaaFysXO .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tDLaaFysXO .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDLaaFysXO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDLaaFysXO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDLaaFysXO .dropdown-item.active,
.cid-tDLaaFysXO .dropdown-item:active {
  background-color: transparent;
}
.cid-tDLaaFysXO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDLaaFysXO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDLaaFysXO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDLaaFysXO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tDLaaFysXO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDLaaFysXO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDLaaFysXO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDLaaFysXO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDLaaFysXO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tDLaaFysXO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tDLaaFysXO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tDLaaFysXO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tDLaaFysXO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tDLaaFysXO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tDLaaFysXO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDLaaFysXO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tDLaaFysXO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tDLaaFysXO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDLaaFysXO .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tDLaaFysXO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDLaaFysXO .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-tDLaaFysXO .navbar {
    height: 77px;
  }
  .cid-tDLaaFysXO .navbar.opened {
    height: auto;
  }
  .cid-tDLaaFysXO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDRr44lbkX {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/alt-iletisim-banner-2-1920x1080.webp");
}
.cid-tDRr44lbkX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDRr44lbkX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDRefeHb3e {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tDRefeHb3e .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDRefeHb3e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDRefeHb3e .card-wrapper {
  background: #e8eaf5;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tDRefeHb3e .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tDRefeHb3e .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDRefeHb3e .card-wrapper {
    padding: 4rem;
  }
}
.cid-tDRefeHb3e .mbr-text,
.cid-tDRefeHb3e .mbr-section-btn {
  color: #000000;
}
.cid-tDRefeHb3e .card-title,
.cid-tDRefeHb3e .card-box {
  text-align: left;
  color: #000000;
}
.cid-tDLaaEQWHd {
  padding-top: 90px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/yildiz-yeni-alt-kisim-1920x1080.webp");
}
@media (max-width: 767px) {
  .cid-tDLaaEQWHd .content {
    text-align: center;
  }
  .cid-tDLaaEQWHd .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tDLaaEQWHd .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tDLaaEQWHd .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tDLaaEQWHd .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tDLaaEQWHd .google-map {
  height: 25rem;
  position: relative;
}
.cid-tDLaaEQWHd .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tDLaaEQWHd .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-tDLaaEQWHd .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tDLaaEQWHd .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tDLaaEQWHd .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tDLaaEQWHd .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tDLaaEQWHd .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tDLaaEQWHd .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tDLaaEQWHd .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tDLaaEQWHd .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tDLaaEQWHd .list {
  list-style-type: none;
  padding: 0;
}
.cid-tDLaaEQWHd H5 {
  color: #ffffff;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #192c8c !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #ffffff !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.1rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDRqL83mHf {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/alt-iletisim-banner-2-1920x1080.webp");
}
.cid-tDRqL83mHf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDRqL83mHf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDR676xuCh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tDR676xuCh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDR676xuCh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDR676xuCh .card-wrapper {
  background: #e8eaf5;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tDR676xuCh .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tDR676xuCh .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDR676xuCh .card-wrapper {
    padding: 4rem;
  }
}
.cid-tDR676xuCh .mbr-text,
.cid-tDR676xuCh .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tDR676xuCh .card-title,
.cid-tDR676xuCh .card-box {
  text-align: left;
  color: #000000;
}
.cid-tDJTeaXSWE {
  padding-top: 90px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/yildiz-yeni-alt-kisim-1920x1080.webp");
}
@media (max-width: 767px) {
  .cid-tDJTeaXSWE .content {
    text-align: center;
  }
  .cid-tDJTeaXSWE .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tDJTeaXSWE .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tDJTeaXSWE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tDJTeaXSWE .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tDJTeaXSWE .google-map {
  height: 25rem;
  position: relative;
}
.cid-tDJTeaXSWE .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tDJTeaXSWE .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-tDJTeaXSWE .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tDJTeaXSWE .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tDJTeaXSWE .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tDJTeaXSWE .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tDJTeaXSWE .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tDJTeaXSWE .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tDJTeaXSWE .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tDJTeaXSWE .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tDJTeaXSWE .list {
  list-style-type: none;
  padding: 0;
}
.cid-tDJTeaXSWE H5 {
  color: #ffffff;
}
.cid-tDLaBpTItU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDLaBpTItU nav.navbar {
  position: fixed;
}
.cid-tDLaBpTItU .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-tDLaBpTItU .dropdown-menu {
  padding: 0;
}
.cid-tDLaBpTItU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDLaBpTItU .dropdown-item:hover,
.cid-tDLaBpTItU .dropdown-item:focus {
  background: #192c8c !important;
  color: white !important;
}
.cid-tDLaBpTItU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tDLaBpTItU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDLaBpTItU .nav-link {
  position: relative;
}
.cid-tDLaBpTItU .container {
  display: flex;
  margin: auto;
}
.cid-tDLaBpTItU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tDLaBpTItU .navbar-caption {
  padding-right: 4rem;
}
.cid-tDLaBpTItU .dropdown-menu,
.cid-tDLaBpTItU .navbar.opened {
  background: #ffffff !important;
}
.cid-tDLaBpTItU .nav-item:focus,
.cid-tDLaBpTItU .nav-link:focus {
  outline: none;
}
.cid-tDLaBpTItU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDLaBpTItU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDLaBpTItU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tDLaBpTItU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDLaBpTItU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDLaBpTItU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDLaBpTItU .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tDLaBpTItU .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDLaBpTItU .navbar.opened {
  transition: all .3s;
}
.cid-tDLaBpTItU .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tDLaBpTItU .navbar .navbar-logo img {
  width: auto;
}
.cid-tDLaBpTItU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDLaBpTItU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDLaBpTItU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDLaBpTItU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.1rem);
  }
}
.cid-tDLaBpTItU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDLaBpTItU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDLaBpTItU .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: 55%;
}
.cid-tDLaBpTItU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDLaBpTItU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tDLaBpTItU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tDLaBpTItU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDLaBpTItU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDLaBpTItU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDLaBpTItU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDLaBpTItU .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: 55%;
  }
  .cid-tDLaBpTItU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tDLaBpTItU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDLaBpTItU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDLaBpTItU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDLaBpTItU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDLaBpTItU .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tDLaBpTItU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDLaBpTItU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tDLaBpTItU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tDLaBpTItU .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDLaBpTItU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDLaBpTItU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDLaBpTItU .dropdown-item.active,
.cid-tDLaBpTItU .dropdown-item:active {
  background-color: transparent;
}
.cid-tDLaBpTItU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDLaBpTItU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDLaBpTItU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDLaBpTItU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tDLaBpTItU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDLaBpTItU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDLaBpTItU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDLaBpTItU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDLaBpTItU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tDLaBpTItU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tDLaBpTItU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tDLaBpTItU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tDLaBpTItU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tDLaBpTItU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tDLaBpTItU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDLaBpTItU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tDLaBpTItU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tDLaBpTItU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDLaBpTItU .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tDLaBpTItU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDLaBpTItU .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-tDLaBpTItU .navbar {
    height: 77px;
  }
  .cid-tDLaBpTItU .navbar.opened {
    height: auto;
  }
  .cid-tDLaBpTItU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDRh2rMOVY {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/alt-iletisim-banner-2-1920x1080.webp");
}
.cid-tDRh2rMOVY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDRh2rMOVY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDRfWvHS4k {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tDRfWvHS4k .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDRfWvHS4k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDRfWvHS4k .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tDRfWvHS4k .card {
    margin-bottom: 2rem!important;
  }
  .cid-tDRfWvHS4k .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tDRfWvHS4k .link-wrap {
    align-items: center;
  }
}
.cid-tDRfWvHS4k .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDRfWvHS4k .mbr-text,
.cid-tDRfWvHS4k .link-wrap,
.cid-tDRfWvHS4k .mbr-section-btn {
  color: #192c8c;
}
.cid-tDLaBozAYG {
  padding-top: 90px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/yildiz-yeni-alt-kisim-1920x1080.webp");
}
@media (max-width: 767px) {
  .cid-tDLaBozAYG .content {
    text-align: center;
  }
  .cid-tDLaBozAYG .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tDLaBozAYG .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tDLaBozAYG .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tDLaBozAYG .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tDLaBozAYG .google-map {
  height: 25rem;
  position: relative;
}
.cid-tDLaBozAYG .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tDLaBozAYG .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-tDLaBozAYG .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tDLaBozAYG .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tDLaBozAYG .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tDLaBozAYG .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tDLaBozAYG .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tDLaBozAYG .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tDLaBozAYG .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tDLaBozAYG .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tDLaBozAYG .list {
  list-style-type: none;
  padding: 0;
}
.cid-tDLaBozAYG H5 {
  color: #ffffff;
}
.cid-tDLdAAkSBM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDLdAAkSBM nav.navbar {
  position: fixed;
}
.cid-tDLdAAkSBM .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-tDLdAAkSBM .dropdown-menu {
  padding: 0;
}
.cid-tDLdAAkSBM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDLdAAkSBM .dropdown-item:hover,
.cid-tDLdAAkSBM .dropdown-item:focus {
  background: #192c8c !important;
  color: white !important;
}
.cid-tDLdAAkSBM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tDLdAAkSBM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDLdAAkSBM .nav-link {
  position: relative;
}
.cid-tDLdAAkSBM .container {
  display: flex;
  margin: auto;
}
.cid-tDLdAAkSBM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tDLdAAkSBM .navbar-caption {
  padding-right: 4rem;
}
.cid-tDLdAAkSBM .dropdown-menu,
.cid-tDLdAAkSBM .navbar.opened {
  background: #ffffff !important;
}
.cid-tDLdAAkSBM .nav-item:focus,
.cid-tDLdAAkSBM .nav-link:focus {
  outline: none;
}
.cid-tDLdAAkSBM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDLdAAkSBM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDLdAAkSBM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tDLdAAkSBM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDLdAAkSBM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDLdAAkSBM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDLdAAkSBM .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tDLdAAkSBM .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDLdAAkSBM .navbar.opened {
  transition: all .3s;
}
.cid-tDLdAAkSBM .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tDLdAAkSBM .navbar .navbar-logo img {
  width: auto;
}
.cid-tDLdAAkSBM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDLdAAkSBM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDLdAAkSBM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDLdAAkSBM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.1rem);
  }
}
.cid-tDLdAAkSBM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDLdAAkSBM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDLdAAkSBM .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: 55%;
}
.cid-tDLdAAkSBM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDLdAAkSBM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tDLdAAkSBM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tDLdAAkSBM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDLdAAkSBM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDLdAAkSBM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDLdAAkSBM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDLdAAkSBM .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: 55%;
  }
  .cid-tDLdAAkSBM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tDLdAAkSBM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDLdAAkSBM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDLdAAkSBM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDLdAAkSBM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDLdAAkSBM .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tDLdAAkSBM .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDLdAAkSBM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tDLdAAkSBM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tDLdAAkSBM .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDLdAAkSBM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDLdAAkSBM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDLdAAkSBM .dropdown-item.active,
.cid-tDLdAAkSBM .dropdown-item:active {
  background-color: transparent;
}
.cid-tDLdAAkSBM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDLdAAkSBM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDLdAAkSBM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDLdAAkSBM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tDLdAAkSBM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDLdAAkSBM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDLdAAkSBM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDLdAAkSBM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDLdAAkSBM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tDLdAAkSBM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tDLdAAkSBM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tDLdAAkSBM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tDLdAAkSBM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tDLdAAkSBM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tDLdAAkSBM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDLdAAkSBM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tDLdAAkSBM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tDLdAAkSBM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDLdAAkSBM .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tDLdAAkSBM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDLdAAkSBM .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-tDLdAAkSBM .navbar {
    height: 77px;
  }
  .cid-tDLdAAkSBM .navbar.opened {
    height: auto;
  }
  .cid-tDLdAAkSBM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDRroc4fSG {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/alt-iletisim-banner-2-1920x1080.webp");
}
.cid-tDRroc4fSG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDRroc4fSG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDRfiUKJMB {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tDRfiUKJMB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDRfiUKJMB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDRfiUKJMB .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tDRfiUKJMB .card {
    margin-bottom: 2rem!important;
  }
  .cid-tDRfiUKJMB .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tDRfiUKJMB .link-wrap {
    align-items: center;
  }
}
.cid-tDRfiUKJMB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDRfiUKJMB .mbr-text,
.cid-tDRfiUKJMB .link-wrap,
.cid-tDRfiUKJMB .mbr-section-btn {
  color: #192c8c;
}
.cid-tDLdAz1urN {
  padding-top: 90px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/yildiz-yeni-alt-kisim-1920x1080.webp");
}
@media (max-width: 767px) {
  .cid-tDLdAz1urN .content {
    text-align: center;
  }
  .cid-tDLdAz1urN .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tDLdAz1urN .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tDLdAz1urN .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tDLdAz1urN .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tDLdAz1urN .google-map {
  height: 25rem;
  position: relative;
}
.cid-tDLdAz1urN .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tDLdAz1urN .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-tDLdAz1urN .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tDLdAz1urN .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tDLdAz1urN .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tDLdAz1urN .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tDLdAz1urN .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tDLdAz1urN .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tDLdAz1urN .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tDLdAz1urN .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tDLdAz1urN .list {
  list-style-type: none;
  padding: 0;
}
.cid-tDLdAz1urN H5 {
  color: #ffffff;
}
.cid-tDLdJxEp4G {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDLdJxEp4G nav.navbar {
  position: fixed;
}
.cid-tDLdJxEp4G .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-tDLdJxEp4G .dropdown-menu {
  padding: 0;
}
.cid-tDLdJxEp4G .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDLdJxEp4G .dropdown-item:hover,
.cid-tDLdJxEp4G .dropdown-item:focus {
  background: #192c8c !important;
  color: white !important;
}
.cid-tDLdJxEp4G .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tDLdJxEp4G .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDLdJxEp4G .nav-link {
  position: relative;
}
.cid-tDLdJxEp4G .container {
  display: flex;
  margin: auto;
}
.cid-tDLdJxEp4G .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tDLdJxEp4G .navbar-caption {
  padding-right: 4rem;
}
.cid-tDLdJxEp4G .dropdown-menu,
.cid-tDLdJxEp4G .navbar.opened {
  background: #ffffff !important;
}
.cid-tDLdJxEp4G .nav-item:focus,
.cid-tDLdJxEp4G .nav-link:focus {
  outline: none;
}
.cid-tDLdJxEp4G .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDLdJxEp4G .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDLdJxEp4G .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tDLdJxEp4G .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDLdJxEp4G .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDLdJxEp4G .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDLdJxEp4G .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tDLdJxEp4G .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDLdJxEp4G .navbar.opened {
  transition: all .3s;
}
.cid-tDLdJxEp4G .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tDLdJxEp4G .navbar .navbar-logo img {
  width: auto;
}
.cid-tDLdJxEp4G .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDLdJxEp4G .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDLdJxEp4G .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDLdJxEp4G .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.1rem);
  }
}
.cid-tDLdJxEp4G .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDLdJxEp4G .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDLdJxEp4G .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: 55%;
}
.cid-tDLdJxEp4G .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDLdJxEp4G .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tDLdJxEp4G .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tDLdJxEp4G .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDLdJxEp4G .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDLdJxEp4G .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDLdJxEp4G .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDLdJxEp4G .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: 55%;
  }
  .cid-tDLdJxEp4G .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tDLdJxEp4G .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDLdJxEp4G .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDLdJxEp4G .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDLdJxEp4G .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDLdJxEp4G .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tDLdJxEp4G .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDLdJxEp4G .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tDLdJxEp4G .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tDLdJxEp4G .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDLdJxEp4G .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDLdJxEp4G .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDLdJxEp4G .dropdown-item.active,
.cid-tDLdJxEp4G .dropdown-item:active {
  background-color: transparent;
}
.cid-tDLdJxEp4G .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDLdJxEp4G .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDLdJxEp4G .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDLdJxEp4G .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tDLdJxEp4G .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDLdJxEp4G .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDLdJxEp4G ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDLdJxEp4G .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDLdJxEp4G button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tDLdJxEp4G button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tDLdJxEp4G button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tDLdJxEp4G button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tDLdJxEp4G button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tDLdJxEp4G button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tDLdJxEp4G nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDLdJxEp4G nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tDLdJxEp4G nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tDLdJxEp4G nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDLdJxEp4G .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tDLdJxEp4G a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDLdJxEp4G .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-tDLdJxEp4G .navbar {
    height: 77px;
  }
  .cid-tDLdJxEp4G .navbar.opened {
    height: auto;
  }
  .cid-tDLdJxEp4G .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDRrvh5tKy {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/alt-iletisim-banner-2-1920x1080.webp");
}
.cid-tDRrvh5tKy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDRrvh5tKy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDRwaB7WKN {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tDRwaB7WKN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDRwaB7WKN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDRwaB7WKN .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tDRwaB7WKN .card {
    margin-bottom: 2rem!important;
  }
  .cid-tDRwaB7WKN .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tDRwaB7WKN .link-wrap {
    align-items: center;
  }
}
.cid-tDRwaB7WKN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDRwaB7WKN .card-title,
.cid-tDRwaB7WKN .card-box {
  text-align: left;
}
.cid-tDRwaB7WKN .mbr-text,
.cid-tDRwaB7WKN .link-wrap,
.cid-tDRwaB7WKN .mbr-section-btn {
  color: #192c8c;
}
.cid-tEuHSE0B2f {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #bed3f9;
}
.cid-tDLdJwGy9R {
  padding-top: 90px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/yildiz-yeni-alt-kisim-1920x1080.webp");
}
@media (max-width: 767px) {
  .cid-tDLdJwGy9R .content {
    text-align: center;
  }
  .cid-tDLdJwGy9R .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tDLdJwGy9R .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tDLdJwGy9R .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tDLdJwGy9R .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tDLdJwGy9R .google-map {
  height: 25rem;
  position: relative;
}
.cid-tDLdJwGy9R .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tDLdJwGy9R .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-tDLdJwGy9R .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tDLdJwGy9R .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tDLdJwGy9R .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tDLdJwGy9R .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tDLdJwGy9R .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tDLdJwGy9R .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tDLdJwGy9R .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tDLdJwGy9R .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tDLdJwGy9R .list {
  list-style-type: none;
  padding: 0;
}
.cid-tDLdJwGy9R H5 {
  color: #ffffff;
}
.cid-tDLejlcmtp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDLejlcmtp nav.navbar {
  position: fixed;
}
.cid-tDLejlcmtp .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-tDLejlcmtp .dropdown-menu {
  padding: 0;
}
.cid-tDLejlcmtp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDLejlcmtp .dropdown-item:hover,
.cid-tDLejlcmtp .dropdown-item:focus {
  background: #192c8c !important;
  color: white !important;
}
.cid-tDLejlcmtp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tDLejlcmtp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDLejlcmtp .nav-link {
  position: relative;
}
.cid-tDLejlcmtp .container {
  display: flex;
  margin: auto;
}
.cid-tDLejlcmtp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tDLejlcmtp .navbar-caption {
  padding-right: 4rem;
}
.cid-tDLejlcmtp .dropdown-menu,
.cid-tDLejlcmtp .navbar.opened {
  background: #ffffff !important;
}
.cid-tDLejlcmtp .nav-item:focus,
.cid-tDLejlcmtp .nav-link:focus {
  outline: none;
}
.cid-tDLejlcmtp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDLejlcmtp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDLejlcmtp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tDLejlcmtp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDLejlcmtp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDLejlcmtp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDLejlcmtp .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tDLejlcmtp .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDLejlcmtp .navbar.opened {
  transition: all .3s;
}
.cid-tDLejlcmtp .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tDLejlcmtp .navbar .navbar-logo img {
  width: auto;
}
.cid-tDLejlcmtp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDLejlcmtp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDLejlcmtp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDLejlcmtp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.1rem);
  }
}
.cid-tDLejlcmtp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDLejlcmtp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDLejlcmtp .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: 55%;
}
.cid-tDLejlcmtp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDLejlcmtp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tDLejlcmtp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tDLejlcmtp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDLejlcmtp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDLejlcmtp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDLejlcmtp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDLejlcmtp .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: 55%;
  }
  .cid-tDLejlcmtp .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tDLejlcmtp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDLejlcmtp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDLejlcmtp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDLejlcmtp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDLejlcmtp .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tDLejlcmtp .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDLejlcmtp .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tDLejlcmtp .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tDLejlcmtp .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDLejlcmtp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDLejlcmtp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDLejlcmtp .dropdown-item.active,
.cid-tDLejlcmtp .dropdown-item:active {
  background-color: transparent;
}
.cid-tDLejlcmtp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDLejlcmtp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDLejlcmtp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDLejlcmtp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tDLejlcmtp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDLejlcmtp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDLejlcmtp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDLejlcmtp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDLejlcmtp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tDLejlcmtp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tDLejlcmtp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tDLejlcmtp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tDLejlcmtp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tDLejlcmtp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tDLejlcmtp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDLejlcmtp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tDLejlcmtp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tDLejlcmtp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDLejlcmtp .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tDLejlcmtp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDLejlcmtp .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-tDLejlcmtp .navbar {
    height: 77px;
  }
  .cid-tDLejlcmtp .navbar.opened {
    height: auto;
  }
  .cid-tDLejlcmtp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDRsPBs6j8 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/alt-iletisim-banner-2-1920x1080.webp");
}
.cid-tDRsPBs6j8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDRsPBs6j8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDRwjstbW1 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tDRwjstbW1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDRwjstbW1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDRwjstbW1 .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tDRwjstbW1 .card {
    margin-bottom: 2rem!important;
  }
  .cid-tDRwjstbW1 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tDRwjstbW1 .link-wrap {
    align-items: center;
  }
}
.cid-tDRwjstbW1 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDRwjstbW1 .card-title,
.cid-tDRwjstbW1 .card-box {
  text-align: left;
}
.cid-tDRwjstbW1 .mbr-text,
.cid-tDRwjstbW1 .link-wrap,
.cid-tDRwjstbW1 .mbr-section-btn {
  color: #192c8c;
}
.cid-tDLejjI4UV {
  padding-top: 90px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/yildiz-yeni-alt-kisim-1920x1080.webp");
}
@media (max-width: 767px) {
  .cid-tDLejjI4UV .content {
    text-align: center;
  }
  .cid-tDLejjI4UV .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tDLejjI4UV .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tDLejjI4UV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tDLejjI4UV .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tDLejjI4UV .google-map {
  height: 25rem;
  position: relative;
}
.cid-tDLejjI4UV .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tDLejjI4UV .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-tDLejjI4UV .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tDLejjI4UV .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tDLejjI4UV .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tDLejjI4UV .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tDLejjI4UV .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tDLejjI4UV .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tDLejjI4UV .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tDLejjI4UV .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tDLejjI4UV .list {
  list-style-type: none;
  padding: 0;
}
.cid-tDLejjI4UV H5 {
  color: #ffffff;
}
.cid-tDLeS3IQpb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDLeS3IQpb nav.navbar {
  position: fixed;
}
.cid-tDLeS3IQpb .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-tDLeS3IQpb .dropdown-menu {
  padding: 0;
}
.cid-tDLeS3IQpb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDLeS3IQpb .dropdown-item:hover,
.cid-tDLeS3IQpb .dropdown-item:focus {
  background: #192c8c !important;
  color: white !important;
}
.cid-tDLeS3IQpb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tDLeS3IQpb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDLeS3IQpb .nav-link {
  position: relative;
}
.cid-tDLeS3IQpb .container {
  display: flex;
  margin: auto;
}
.cid-tDLeS3IQpb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tDLeS3IQpb .navbar-caption {
  padding-right: 4rem;
}
.cid-tDLeS3IQpb .dropdown-menu,
.cid-tDLeS3IQpb .navbar.opened {
  background: #ffffff !important;
}
.cid-tDLeS3IQpb .nav-item:focus,
.cid-tDLeS3IQpb .nav-link:focus {
  outline: none;
}
.cid-tDLeS3IQpb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDLeS3IQpb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDLeS3IQpb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tDLeS3IQpb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDLeS3IQpb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDLeS3IQpb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDLeS3IQpb .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tDLeS3IQpb .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDLeS3IQpb .navbar.opened {
  transition: all .3s;
}
.cid-tDLeS3IQpb .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tDLeS3IQpb .navbar .navbar-logo img {
  width: auto;
}
.cid-tDLeS3IQpb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDLeS3IQpb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDLeS3IQpb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDLeS3IQpb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.1rem);
  }
}
.cid-tDLeS3IQpb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDLeS3IQpb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDLeS3IQpb .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: 55%;
}
.cid-tDLeS3IQpb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDLeS3IQpb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tDLeS3IQpb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tDLeS3IQpb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDLeS3IQpb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDLeS3IQpb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDLeS3IQpb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDLeS3IQpb .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: 55%;
  }
  .cid-tDLeS3IQpb .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tDLeS3IQpb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDLeS3IQpb .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDLeS3IQpb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDLeS3IQpb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDLeS3IQpb .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tDLeS3IQpb .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDLeS3IQpb .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tDLeS3IQpb .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tDLeS3IQpb .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDLeS3IQpb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDLeS3IQpb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDLeS3IQpb .dropdown-item.active,
.cid-tDLeS3IQpb .dropdown-item:active {
  background-color: transparent;
}
.cid-tDLeS3IQpb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDLeS3IQpb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDLeS3IQpb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDLeS3IQpb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tDLeS3IQpb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDLeS3IQpb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDLeS3IQpb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDLeS3IQpb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDLeS3IQpb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tDLeS3IQpb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tDLeS3IQpb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tDLeS3IQpb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tDLeS3IQpb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tDLeS3IQpb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tDLeS3IQpb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDLeS3IQpb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tDLeS3IQpb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tDLeS3IQpb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDLeS3IQpb .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tDLeS3IQpb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDLeS3IQpb .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-tDLeS3IQpb .navbar {
    height: 77px;
  }
  .cid-tDLeS3IQpb .navbar.opened {
    height: auto;
  }
  .cid-tDLeS3IQpb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDRsL7GnkT {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/alt-iletisim-banner-2-1920x1080.webp");
}
.cid-tDRsL7GnkT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDRsL7GnkT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDRwpPZIzA {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tDRwpPZIzA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDRwpPZIzA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDRwpPZIzA .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tDRwpPZIzA .card {
    margin-bottom: 2rem!important;
  }
  .cid-tDRwpPZIzA .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tDRwpPZIzA .link-wrap {
    align-items: center;
  }
}
.cid-tDRwpPZIzA .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDRwpPZIzA .card-title,
.cid-tDRwpPZIzA .card-box {
  text-align: left;
}
.cid-tDRwpPZIzA .mbr-text,
.cid-tDRwpPZIzA .link-wrap,
.cid-tDRwpPZIzA .mbr-section-btn {
  color: #192c8c;
  text-align: left;
}
.cid-tDLeS317hI {
  padding-top: 90px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/yildiz-yeni-alt-kisim-1920x1080.webp");
}
@media (max-width: 767px) {
  .cid-tDLeS317hI .content {
    text-align: center;
  }
  .cid-tDLeS317hI .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tDLeS317hI .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tDLeS317hI .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tDLeS317hI .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tDLeS317hI .google-map {
  height: 25rem;
  position: relative;
}
.cid-tDLeS317hI .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tDLeS317hI .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-tDLeS317hI .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tDLeS317hI .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tDLeS317hI .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tDLeS317hI .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tDLeS317hI .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tDLeS317hI .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tDLeS317hI .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tDLeS317hI .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tDLeS317hI .list {
  list-style-type: none;
  padding: 0;
}
.cid-tDLeS317hI H5 {
  color: #ffffff;
}
.cid-tDLf2McEVp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDLf2McEVp nav.navbar {
  position: fixed;
}
.cid-tDLf2McEVp .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-tDLf2McEVp .dropdown-menu {
  padding: 0;
}
.cid-tDLf2McEVp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDLf2McEVp .dropdown-item:hover,
.cid-tDLf2McEVp .dropdown-item:focus {
  background: #192c8c !important;
  color: white !important;
}
.cid-tDLf2McEVp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tDLf2McEVp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDLf2McEVp .nav-link {
  position: relative;
}
.cid-tDLf2McEVp .container {
  display: flex;
  margin: auto;
}
.cid-tDLf2McEVp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tDLf2McEVp .navbar-caption {
  padding-right: 4rem;
}
.cid-tDLf2McEVp .dropdown-menu,
.cid-tDLf2McEVp .navbar.opened {
  background: #ffffff !important;
}
.cid-tDLf2McEVp .nav-item:focus,
.cid-tDLf2McEVp .nav-link:focus {
  outline: none;
}
.cid-tDLf2McEVp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDLf2McEVp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDLf2McEVp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tDLf2McEVp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDLf2McEVp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDLf2McEVp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDLf2McEVp .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tDLf2McEVp .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDLf2McEVp .navbar.opened {
  transition: all .3s;
}
.cid-tDLf2McEVp .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tDLf2McEVp .navbar .navbar-logo img {
  width: auto;
}
.cid-tDLf2McEVp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDLf2McEVp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDLf2McEVp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDLf2McEVp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.1rem);
  }
}
.cid-tDLf2McEVp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDLf2McEVp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDLf2McEVp .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: 55%;
}
.cid-tDLf2McEVp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDLf2McEVp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tDLf2McEVp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tDLf2McEVp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDLf2McEVp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDLf2McEVp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDLf2McEVp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDLf2McEVp .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: 55%;
  }
  .cid-tDLf2McEVp .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tDLf2McEVp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDLf2McEVp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDLf2McEVp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDLf2McEVp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDLf2McEVp .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tDLf2McEVp .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDLf2McEVp .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tDLf2McEVp .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tDLf2McEVp .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDLf2McEVp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDLf2McEVp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDLf2McEVp .dropdown-item.active,
.cid-tDLf2McEVp .dropdown-item:active {
  background-color: transparent;
}
.cid-tDLf2McEVp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDLf2McEVp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDLf2McEVp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDLf2McEVp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tDLf2McEVp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDLf2McEVp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDLf2McEVp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDLf2McEVp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDLf2McEVp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tDLf2McEVp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tDLf2McEVp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tDLf2McEVp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tDLf2McEVp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tDLf2McEVp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tDLf2McEVp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDLf2McEVp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tDLf2McEVp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tDLf2McEVp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDLf2McEVp .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tDLf2McEVp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDLf2McEVp .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-tDLf2McEVp .navbar {
    height: 77px;
  }
  .cid-tDLf2McEVp .navbar.opened {
    height: auto;
  }
  .cid-tDLf2McEVp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDRsGwDJGg {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/alt-iletisim-banner-2-1920x1080.webp");
}
.cid-tDRsGwDJGg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDRsGwDJGg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDRyGgtfGQ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tDRyGgtfGQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDRyGgtfGQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDRyGgtfGQ .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tDRyGgtfGQ .card {
    margin-bottom: 2rem!important;
  }
  .cid-tDRyGgtfGQ .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tDRyGgtfGQ .link-wrap {
    align-items: center;
  }
}
.cid-tDRyGgtfGQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDRyGgtfGQ .card-title,
.cid-tDRyGgtfGQ .card-box {
  text-align: left;
}
.cid-tDRyGgtfGQ .mbr-text,
.cid-tDRyGgtfGQ .link-wrap,
.cid-tDRyGgtfGQ .mbr-section-btn {
  color: #192c8c;
}
.cid-tDLf2KMw9o {
  padding-top: 90px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/yildiz-yeni-alt-kisim-1920x1080.webp");
}
@media (max-width: 767px) {
  .cid-tDLf2KMw9o .content {
    text-align: center;
  }
  .cid-tDLf2KMw9o .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tDLf2KMw9o .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tDLf2KMw9o .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tDLf2KMw9o .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tDLf2KMw9o .google-map {
  height: 25rem;
  position: relative;
}
.cid-tDLf2KMw9o .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tDLf2KMw9o .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-tDLf2KMw9o .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tDLf2KMw9o .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tDLf2KMw9o .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tDLf2KMw9o .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tDLf2KMw9o .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tDLf2KMw9o .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tDLf2KMw9o .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tDLf2KMw9o .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tDLf2KMw9o .list {
  list-style-type: none;
  padding: 0;
}
.cid-tDLf2KMw9o H5 {
  color: #ffffff;
}
.cid-tDLfaXCNZq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDLfaXCNZq nav.navbar {
  position: fixed;
}
.cid-tDLfaXCNZq .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-tDLfaXCNZq .dropdown-menu {
  padding: 0;
}
.cid-tDLfaXCNZq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDLfaXCNZq .dropdown-item:hover,
.cid-tDLfaXCNZq .dropdown-item:focus {
  background: #192c8c !important;
  color: white !important;
}
.cid-tDLfaXCNZq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tDLfaXCNZq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDLfaXCNZq .nav-link {
  position: relative;
}
.cid-tDLfaXCNZq .container {
  display: flex;
  margin: auto;
}
.cid-tDLfaXCNZq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tDLfaXCNZq .navbar-caption {
  padding-right: 4rem;
}
.cid-tDLfaXCNZq .dropdown-menu,
.cid-tDLfaXCNZq .navbar.opened {
  background: #ffffff !important;
}
.cid-tDLfaXCNZq .nav-item:focus,
.cid-tDLfaXCNZq .nav-link:focus {
  outline: none;
}
.cid-tDLfaXCNZq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDLfaXCNZq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDLfaXCNZq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tDLfaXCNZq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDLfaXCNZq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDLfaXCNZq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDLfaXCNZq .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tDLfaXCNZq .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDLfaXCNZq .navbar.opened {
  transition: all .3s;
}
.cid-tDLfaXCNZq .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tDLfaXCNZq .navbar .navbar-logo img {
  width: auto;
}
.cid-tDLfaXCNZq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDLfaXCNZq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDLfaXCNZq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDLfaXCNZq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.1rem);
  }
}
.cid-tDLfaXCNZq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDLfaXCNZq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDLfaXCNZq .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: 55%;
}
.cid-tDLfaXCNZq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDLfaXCNZq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tDLfaXCNZq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tDLfaXCNZq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDLfaXCNZq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDLfaXCNZq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDLfaXCNZq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDLfaXCNZq .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: 55%;
  }
  .cid-tDLfaXCNZq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tDLfaXCNZq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDLfaXCNZq .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDLfaXCNZq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDLfaXCNZq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDLfaXCNZq .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tDLfaXCNZq .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDLfaXCNZq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tDLfaXCNZq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tDLfaXCNZq .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDLfaXCNZq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDLfaXCNZq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDLfaXCNZq .dropdown-item.active,
.cid-tDLfaXCNZq .dropdown-item:active {
  background-color: transparent;
}
.cid-tDLfaXCNZq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDLfaXCNZq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDLfaXCNZq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDLfaXCNZq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tDLfaXCNZq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDLfaXCNZq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDLfaXCNZq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDLfaXCNZq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDLfaXCNZq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tDLfaXCNZq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tDLfaXCNZq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tDLfaXCNZq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tDLfaXCNZq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tDLfaXCNZq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tDLfaXCNZq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDLfaXCNZq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tDLfaXCNZq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tDLfaXCNZq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDLfaXCNZq .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tDLfaXCNZq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDLfaXCNZq .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-tDLfaXCNZq .navbar {
    height: 77px;
  }
  .cid-tDLfaXCNZq .navbar.opened {
    height: auto;
  }
  .cid-tDLfaXCNZq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDRsABMiKc {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/alt-iletisim-banner-2-1920x1080.webp");
}
.cid-tDRsABMiKc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDRsABMiKc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDRyPAAfQp {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tDRyPAAfQp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDRyPAAfQp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDRyPAAfQp .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tDRyPAAfQp .card {
    margin-bottom: 2rem!important;
  }
  .cid-tDRyPAAfQp .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tDRyPAAfQp .link-wrap {
    align-items: center;
  }
}
.cid-tDRyPAAfQp .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDRyPAAfQp .card-title,
.cid-tDRyPAAfQp .card-box {
  text-align: left;
}
.cid-tDRyPAAfQp .mbr-text,
.cid-tDRyPAAfQp .link-wrap,
.cid-tDRyPAAfQp .mbr-section-btn {
  color: #192c8c;
}
.cid-tDLfaWotpb {
  padding-top: 90px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/yildiz-yeni-alt-kisim-1920x1080.webp");
}
@media (max-width: 767px) {
  .cid-tDLfaWotpb .content {
    text-align: center;
  }
  .cid-tDLfaWotpb .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tDLfaWotpb .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tDLfaWotpb .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tDLfaWotpb .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tDLfaWotpb .google-map {
  height: 25rem;
  position: relative;
}
.cid-tDLfaWotpb .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tDLfaWotpb .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-tDLfaWotpb .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tDLfaWotpb .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tDLfaWotpb .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tDLfaWotpb .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tDLfaWotpb .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tDLfaWotpb .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tDLfaWotpb .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tDLfaWotpb .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tDLfaWotpb .list {
  list-style-type: none;
  padding: 0;
}
.cid-tDLfaWotpb H5 {
  color: #ffffff;
}
.cid-tDLfjWRBbe {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDLfjWRBbe nav.navbar {
  position: fixed;
}
.cid-tDLfjWRBbe .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-tDLfjWRBbe .dropdown-menu {
  padding: 0;
}
.cid-tDLfjWRBbe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDLfjWRBbe .dropdown-item:hover,
.cid-tDLfjWRBbe .dropdown-item:focus {
  background: #192c8c !important;
  color: white !important;
}
.cid-tDLfjWRBbe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tDLfjWRBbe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDLfjWRBbe .nav-link {
  position: relative;
}
.cid-tDLfjWRBbe .container {
  display: flex;
  margin: auto;
}
.cid-tDLfjWRBbe .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tDLfjWRBbe .navbar-caption {
  padding-right: 4rem;
}
.cid-tDLfjWRBbe .dropdown-menu,
.cid-tDLfjWRBbe .navbar.opened {
  background: #ffffff !important;
}
.cid-tDLfjWRBbe .nav-item:focus,
.cid-tDLfjWRBbe .nav-link:focus {
  outline: none;
}
.cid-tDLfjWRBbe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDLfjWRBbe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDLfjWRBbe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tDLfjWRBbe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDLfjWRBbe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDLfjWRBbe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDLfjWRBbe .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tDLfjWRBbe .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDLfjWRBbe .navbar.opened {
  transition: all .3s;
}
.cid-tDLfjWRBbe .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tDLfjWRBbe .navbar .navbar-logo img {
  width: auto;
}
.cid-tDLfjWRBbe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDLfjWRBbe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDLfjWRBbe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDLfjWRBbe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.1rem);
  }
}
.cid-tDLfjWRBbe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDLfjWRBbe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDLfjWRBbe .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: 55%;
}
.cid-tDLfjWRBbe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDLfjWRBbe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tDLfjWRBbe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tDLfjWRBbe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDLfjWRBbe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDLfjWRBbe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDLfjWRBbe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDLfjWRBbe .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: 55%;
  }
  .cid-tDLfjWRBbe .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tDLfjWRBbe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDLfjWRBbe .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDLfjWRBbe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDLfjWRBbe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDLfjWRBbe .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tDLfjWRBbe .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDLfjWRBbe .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tDLfjWRBbe .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tDLfjWRBbe .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDLfjWRBbe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDLfjWRBbe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDLfjWRBbe .dropdown-item.active,
.cid-tDLfjWRBbe .dropdown-item:active {
  background-color: transparent;
}
.cid-tDLfjWRBbe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDLfjWRBbe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDLfjWRBbe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDLfjWRBbe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tDLfjWRBbe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDLfjWRBbe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDLfjWRBbe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDLfjWRBbe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDLfjWRBbe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tDLfjWRBbe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tDLfjWRBbe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tDLfjWRBbe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tDLfjWRBbe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tDLfjWRBbe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tDLfjWRBbe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDLfjWRBbe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tDLfjWRBbe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tDLfjWRBbe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDLfjWRBbe .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tDLfjWRBbe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDLfjWRBbe .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-tDLfjWRBbe .navbar {
    height: 77px;
  }
  .cid-tDLfjWRBbe .navbar.opened {
    height: auto;
  }
  .cid-tDLfjWRBbe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDRsuRa1CF {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/alt-iletisim-banner-2-1920x1080.webp");
}
.cid-tDRsuRa1CF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDRsuRa1CF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDREYOtd1o {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tDREYOtd1o .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDREYOtd1o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDREYOtd1o .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tDREYOtd1o .card {
    margin-bottom: 2rem!important;
  }
  .cid-tDREYOtd1o .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tDREYOtd1o .link-wrap {
    align-items: center;
  }
}
.cid-tDREYOtd1o .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDREYOtd1o .card-title,
.cid-tDREYOtd1o .card-box {
  text-align: left;
}
.cid-tDREYOtd1o .mbr-text,
.cid-tDREYOtd1o .link-wrap,
.cid-tDREYOtd1o .mbr-section-btn {
  color: #192c8c;
}
.cid-tDLfjW8e5i {
  padding-top: 90px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/yildiz-yeni-alt-kisim-1920x1080.webp");
}
@media (max-width: 767px) {
  .cid-tDLfjW8e5i .content {
    text-align: center;
  }
  .cid-tDLfjW8e5i .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tDLfjW8e5i .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tDLfjW8e5i .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tDLfjW8e5i .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tDLfjW8e5i .google-map {
  height: 25rem;
  position: relative;
}
.cid-tDLfjW8e5i .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tDLfjW8e5i .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-tDLfjW8e5i .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tDLfjW8e5i .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tDLfjW8e5i .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tDLfjW8e5i .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tDLfjW8e5i .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tDLfjW8e5i .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tDLfjW8e5i .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tDLfjW8e5i .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tDLfjW8e5i .list {
  list-style-type: none;
  padding: 0;
}
.cid-tDLfjW8e5i H5 {
  color: #ffffff;
}
.cid-tDLfs4cMh6 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDLfs4cMh6 nav.navbar {
  position: fixed;
}
.cid-tDLfs4cMh6 .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-tDLfs4cMh6 .dropdown-menu {
  padding: 0;
}
.cid-tDLfs4cMh6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDLfs4cMh6 .dropdown-item:hover,
.cid-tDLfs4cMh6 .dropdown-item:focus {
  background: #192c8c !important;
  color: white !important;
}
.cid-tDLfs4cMh6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tDLfs4cMh6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDLfs4cMh6 .nav-link {
  position: relative;
}
.cid-tDLfs4cMh6 .container {
  display: flex;
  margin: auto;
}
.cid-tDLfs4cMh6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tDLfs4cMh6 .navbar-caption {
  padding-right: 4rem;
}
.cid-tDLfs4cMh6 .dropdown-menu,
.cid-tDLfs4cMh6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tDLfs4cMh6 .nav-item:focus,
.cid-tDLfs4cMh6 .nav-link:focus {
  outline: none;
}
.cid-tDLfs4cMh6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDLfs4cMh6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDLfs4cMh6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tDLfs4cMh6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDLfs4cMh6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDLfs4cMh6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDLfs4cMh6 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tDLfs4cMh6 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDLfs4cMh6 .navbar.opened {
  transition: all .3s;
}
.cid-tDLfs4cMh6 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tDLfs4cMh6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tDLfs4cMh6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDLfs4cMh6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDLfs4cMh6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDLfs4cMh6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.1rem);
  }
}
.cid-tDLfs4cMh6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDLfs4cMh6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDLfs4cMh6 .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: 55%;
}
.cid-tDLfs4cMh6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDLfs4cMh6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tDLfs4cMh6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tDLfs4cMh6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDLfs4cMh6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDLfs4cMh6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDLfs4cMh6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDLfs4cMh6 .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: 55%;
  }
  .cid-tDLfs4cMh6 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tDLfs4cMh6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDLfs4cMh6 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDLfs4cMh6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDLfs4cMh6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDLfs4cMh6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tDLfs4cMh6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDLfs4cMh6 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tDLfs4cMh6 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tDLfs4cMh6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDLfs4cMh6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDLfs4cMh6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDLfs4cMh6 .dropdown-item.active,
.cid-tDLfs4cMh6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tDLfs4cMh6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDLfs4cMh6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDLfs4cMh6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDLfs4cMh6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tDLfs4cMh6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDLfs4cMh6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDLfs4cMh6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDLfs4cMh6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDLfs4cMh6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tDLfs4cMh6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tDLfs4cMh6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tDLfs4cMh6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tDLfs4cMh6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tDLfs4cMh6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tDLfs4cMh6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDLfs4cMh6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tDLfs4cMh6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tDLfs4cMh6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDLfs4cMh6 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tDLfs4cMh6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDLfs4cMh6 .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-tDLfs4cMh6 .navbar {
    height: 77px;
  }
  .cid-tDLfs4cMh6 .navbar.opened {
    height: auto;
  }
  .cid-tDLfs4cMh6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDRspY87Uy {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/alt-iletisim-banner-2-1920x1080.webp");
}
.cid-tDRspY87Uy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDRspY87Uy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDRFfndvj1 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tDRFfndvj1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDRFfndvj1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDRFfndvj1 .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tDRFfndvj1 .card {
    margin-bottom: 2rem!important;
  }
  .cid-tDRFfndvj1 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tDRFfndvj1 .link-wrap {
    align-items: center;
  }
}
.cid-tDRFfndvj1 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDRFfndvj1 .card-title,
.cid-tDRFfndvj1 .card-box {
  text-align: left;
}
.cid-tDRFfndvj1 .mbr-text,
.cid-tDRFfndvj1 .link-wrap,
.cid-tDRFfndvj1 .mbr-section-btn {
  color: #192c8c;
}
.cid-tDLfs3lgQZ {
  padding-top: 90px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/yildiz-yeni-alt-kisim-1920x1080.webp");
}
@media (max-width: 767px) {
  .cid-tDLfs3lgQZ .content {
    text-align: center;
  }
  .cid-tDLfs3lgQZ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tDLfs3lgQZ .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tDLfs3lgQZ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tDLfs3lgQZ .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tDLfs3lgQZ .google-map {
  height: 25rem;
  position: relative;
}
.cid-tDLfs3lgQZ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tDLfs3lgQZ .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-tDLfs3lgQZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tDLfs3lgQZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tDLfs3lgQZ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tDLfs3lgQZ .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tDLfs3lgQZ .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tDLfs3lgQZ .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tDLfs3lgQZ .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tDLfs3lgQZ .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tDLfs3lgQZ .list {
  list-style-type: none;
  padding: 0;
}
.cid-tDLfs3lgQZ H5 {
  color: #ffffff;
}
.cid-tDRaSw5gqe {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDRaSw5gqe nav.navbar {
  position: fixed;
}
.cid-tDRaSw5gqe .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-tDRaSw5gqe .dropdown-menu {
  padding: 0;
}
.cid-tDRaSw5gqe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDRaSw5gqe .dropdown-item:hover,
.cid-tDRaSw5gqe .dropdown-item:focus {
  background: #192c8c !important;
  color: white !important;
}
.cid-tDRaSw5gqe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tDRaSw5gqe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDRaSw5gqe .nav-link {
  position: relative;
}
.cid-tDRaSw5gqe .container {
  display: flex;
  margin: auto;
}
.cid-tDRaSw5gqe .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tDRaSw5gqe .navbar-caption {
  padding-right: 4rem;
}
.cid-tDRaSw5gqe .dropdown-menu,
.cid-tDRaSw5gqe .navbar.opened {
  background: #ffffff !important;
}
.cid-tDRaSw5gqe .nav-item:focus,
.cid-tDRaSw5gqe .nav-link:focus {
  outline: none;
}
.cid-tDRaSw5gqe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDRaSw5gqe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDRaSw5gqe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tDRaSw5gqe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDRaSw5gqe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDRaSw5gqe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDRaSw5gqe .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tDRaSw5gqe .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDRaSw5gqe .navbar.opened {
  transition: all .3s;
}
.cid-tDRaSw5gqe .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tDRaSw5gqe .navbar .navbar-logo img {
  width: auto;
}
.cid-tDRaSw5gqe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDRaSw5gqe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDRaSw5gqe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDRaSw5gqe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.1rem);
  }
}
.cid-tDRaSw5gqe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDRaSw5gqe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDRaSw5gqe .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: 55%;
}
.cid-tDRaSw5gqe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDRaSw5gqe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tDRaSw5gqe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tDRaSw5gqe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDRaSw5gqe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDRaSw5gqe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDRaSw5gqe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDRaSw5gqe .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: 55%;
  }
  .cid-tDRaSw5gqe .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tDRaSw5gqe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDRaSw5gqe .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDRaSw5gqe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDRaSw5gqe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDRaSw5gqe .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tDRaSw5gqe .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDRaSw5gqe .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tDRaSw5gqe .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tDRaSw5gqe .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDRaSw5gqe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDRaSw5gqe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDRaSw5gqe .dropdown-item.active,
.cid-tDRaSw5gqe .dropdown-item:active {
  background-color: transparent;
}
.cid-tDRaSw5gqe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDRaSw5gqe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDRaSw5gqe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDRaSw5gqe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tDRaSw5gqe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDRaSw5gqe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDRaSw5gqe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDRaSw5gqe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDRaSw5gqe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tDRaSw5gqe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tDRaSw5gqe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tDRaSw5gqe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tDRaSw5gqe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tDRaSw5gqe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tDRaSw5gqe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDRaSw5gqe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tDRaSw5gqe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tDRaSw5gqe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDRaSw5gqe .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tDRaSw5gqe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDRaSw5gqe .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-tDRaSw5gqe .navbar {
    height: 77px;
  }
  .cid-tDRaSw5gqe .navbar.opened {
    height: auto;
  }
  .cid-tDRaSw5gqe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDRrezCC7F {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/alt-iletisim-banner-2-1920x1080.webp");
}
.cid-tDRrezCC7F .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDRrezCC7F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDVpXfv2ct {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tDVpXfv2ct .mbr-overlay {
  background: #fafafa;
  opacity: 0.5;
}
.cid-tDVpXfv2ct img,
.cid-tDVpXfv2ct .item-img {
  width: 100%;
}
.cid-tDVpXfv2ct .item:focus,
.cid-tDVpXfv2ct span:focus {
  outline: none;
}
.cid-tDVpXfv2ct .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tDVpXfv2ct .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tDVpXfv2ct .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tDVpXfv2ct .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tDVpXfv2ct .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tDVpXfv2ct .mbr-section-title {
  color: #232323;
}
.cid-tDVpXfv2ct .mbr-text,
.cid-tDVpXfv2ct .mbr-section-btn {
  text-align: left;
}
.cid-tDVpXfv2ct .item-title {
  text-align: left;
}
.cid-tDVpXfv2ct .item-subtitle {
  text-align: left;
}
.cid-tDRaSvpk85 {
  padding-top: 90px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/yildiz-yeni-alt-kisim-1920x1080.webp");
}
@media (max-width: 767px) {
  .cid-tDRaSvpk85 .content {
    text-align: center;
  }
  .cid-tDRaSvpk85 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tDRaSvpk85 .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tDRaSvpk85 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tDRaSvpk85 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tDRaSvpk85 .google-map {
  height: 25rem;
  position: relative;
}
.cid-tDRaSvpk85 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tDRaSvpk85 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-tDRaSvpk85 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tDRaSvpk85 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tDRaSvpk85 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tDRaSvpk85 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tDRaSvpk85 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tDRaSvpk85 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tDRaSvpk85 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tDRaSvpk85 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tDRaSvpk85 .list {
  list-style-type: none;
  padding: 0;
}
.cid-tDRaSvpk85 H5 {
  color: #ffffff;
}
.cid-tDXq9wDDaA {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDXq9wDDaA nav.navbar {
  position: fixed;
}
.cid-tDXq9wDDaA .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-tDXq9wDDaA .dropdown-menu {
  padding: 0;
}
.cid-tDXq9wDDaA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDXq9wDDaA .dropdown-item:hover,
.cid-tDXq9wDDaA .dropdown-item:focus {
  background: #192c8c !important;
  color: white !important;
}
.cid-tDXq9wDDaA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tDXq9wDDaA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDXq9wDDaA .nav-link {
  position: relative;
}
.cid-tDXq9wDDaA .container {
  display: flex;
  margin: auto;
}
.cid-tDXq9wDDaA .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tDXq9wDDaA .navbar-caption {
  padding-right: 4rem;
}
.cid-tDXq9wDDaA .dropdown-menu,
.cid-tDXq9wDDaA .navbar.opened {
  background: #ffffff !important;
}
.cid-tDXq9wDDaA .nav-item:focus,
.cid-tDXq9wDDaA .nav-link:focus {
  outline: none;
}
.cid-tDXq9wDDaA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDXq9wDDaA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDXq9wDDaA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tDXq9wDDaA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDXq9wDDaA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDXq9wDDaA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDXq9wDDaA .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tDXq9wDDaA .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDXq9wDDaA .navbar.opened {
  transition: all .3s;
}
.cid-tDXq9wDDaA .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tDXq9wDDaA .navbar .navbar-logo img {
  width: auto;
}
.cid-tDXq9wDDaA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDXq9wDDaA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDXq9wDDaA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDXq9wDDaA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.1rem);
  }
}
.cid-tDXq9wDDaA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDXq9wDDaA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDXq9wDDaA .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: 55%;
}
.cid-tDXq9wDDaA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDXq9wDDaA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tDXq9wDDaA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tDXq9wDDaA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDXq9wDDaA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDXq9wDDaA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDXq9wDDaA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDXq9wDDaA .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: 55%;
  }
  .cid-tDXq9wDDaA .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tDXq9wDDaA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDXq9wDDaA .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDXq9wDDaA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDXq9wDDaA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDXq9wDDaA .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tDXq9wDDaA .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDXq9wDDaA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tDXq9wDDaA .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tDXq9wDDaA .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDXq9wDDaA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDXq9wDDaA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDXq9wDDaA .dropdown-item.active,
.cid-tDXq9wDDaA .dropdown-item:active {
  background-color: transparent;
}
.cid-tDXq9wDDaA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDXq9wDDaA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDXq9wDDaA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDXq9wDDaA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tDXq9wDDaA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDXq9wDDaA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDXq9wDDaA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDXq9wDDaA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDXq9wDDaA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tDXq9wDDaA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tDXq9wDDaA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tDXq9wDDaA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tDXq9wDDaA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tDXq9wDDaA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tDXq9wDDaA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDXq9wDDaA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tDXq9wDDaA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tDXq9wDDaA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDXq9wDDaA .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tDXq9wDDaA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDXq9wDDaA .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-tDXq9wDDaA .navbar {
    height: 77px;
  }
  .cid-tDXq9wDDaA .navbar.opened {
    height: auto;
  }
  .cid-tDXq9wDDaA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDXq9kr0z5 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/alt-iletisim-banner-2-1920x1080.webp");
}
.cid-tDXq9kr0z5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDXq9kr0z5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDXqw0aP37 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tDXqw0aP37 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDXqw0aP37 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDXqw0aP37 .card-wrapper {
  background: #e8eaf5;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tDXqw0aP37 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tDXqw0aP37 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDXqw0aP37 .card-wrapper {
    padding: 4rem;
  }
}
.cid-tDXqw0aP37 .mbr-text,
.cid-tDXqw0aP37 .mbr-section-btn {
  color: #000000;
}
.cid-tDXqw0aP37 .card-title,
.cid-tDXqw0aP37 .card-box {
  text-align: left;
  color: #000000;
}
.cid-tDXq9qLBDp {
  padding-top: 90px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/yildiz-yeni-alt-kisim-1920x1080.webp");
}
@media (max-width: 767px) {
  .cid-tDXq9qLBDp .content {
    text-align: center;
  }
  .cid-tDXq9qLBDp .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tDXq9qLBDp .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tDXq9qLBDp .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tDXq9qLBDp .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tDXq9qLBDp .google-map {
  height: 25rem;
  position: relative;
}
.cid-tDXq9qLBDp .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tDXq9qLBDp .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-tDXq9qLBDp .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tDXq9qLBDp .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tDXq9qLBDp .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tDXq9qLBDp .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tDXq9qLBDp .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tDXq9qLBDp .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tDXq9qLBDp .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tDXq9qLBDp .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tDXq9qLBDp .list {
  list-style-type: none;
  padding: 0;
}
.cid-tDXq9qLBDp H5 {
  color: #ffffff;
}
.cid-tF3M3Eau8f {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tF3M3Eau8f nav.navbar {
  position: fixed;
}
.cid-tF3M3Eau8f .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-tF3M3Eau8f .dropdown-menu {
  padding: 0;
}
.cid-tF3M3Eau8f .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tF3M3Eau8f .dropdown-item:hover,
.cid-tF3M3Eau8f .dropdown-item:focus {
  background: #192c8c !important;
  color: white !important;
}
.cid-tF3M3Eau8f .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tF3M3Eau8f .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tF3M3Eau8f .nav-link {
  position: relative;
}
.cid-tF3M3Eau8f .container {
  display: flex;
  margin: auto;
}
.cid-tF3M3Eau8f .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tF3M3Eau8f .navbar-caption {
  padding-right: 4rem;
}
.cid-tF3M3Eau8f .dropdown-menu,
.cid-tF3M3Eau8f .navbar.opened {
  background: #ffffff !important;
}
.cid-tF3M3Eau8f .nav-item:focus,
.cid-tF3M3Eau8f .nav-link:focus {
  outline: none;
}
.cid-tF3M3Eau8f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tF3M3Eau8f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tF3M3Eau8f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tF3M3Eau8f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tF3M3Eau8f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tF3M3Eau8f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tF3M3Eau8f .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tF3M3Eau8f .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tF3M3Eau8f .navbar.opened {
  transition: all .3s;
}
.cid-tF3M3Eau8f .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tF3M3Eau8f .navbar .navbar-logo img {
  width: auto;
}
.cid-tF3M3Eau8f .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tF3M3Eau8f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tF3M3Eau8f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tF3M3Eau8f .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.1rem);
  }
}
.cid-tF3M3Eau8f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tF3M3Eau8f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tF3M3Eau8f .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: 55%;
}
.cid-tF3M3Eau8f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tF3M3Eau8f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tF3M3Eau8f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tF3M3Eau8f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tF3M3Eau8f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tF3M3Eau8f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tF3M3Eau8f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tF3M3Eau8f .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: 55%;
  }
  .cid-tF3M3Eau8f .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tF3M3Eau8f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tF3M3Eau8f .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tF3M3Eau8f .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tF3M3Eau8f .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tF3M3Eau8f .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tF3M3Eau8f .navbar.navbar-short {
  min-height: 60px;
}
.cid-tF3M3Eau8f .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tF3M3Eau8f .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tF3M3Eau8f .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tF3M3Eau8f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tF3M3Eau8f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tF3M3Eau8f .dropdown-item.active,
.cid-tF3M3Eau8f .dropdown-item:active {
  background-color: transparent;
}
.cid-tF3M3Eau8f .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tF3M3Eau8f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tF3M3Eau8f .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tF3M3Eau8f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tF3M3Eau8f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tF3M3Eau8f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tF3M3Eau8f ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tF3M3Eau8f .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tF3M3Eau8f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tF3M3Eau8f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tF3M3Eau8f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tF3M3Eau8f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tF3M3Eau8f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tF3M3Eau8f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tF3M3Eau8f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tF3M3Eau8f nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tF3M3Eau8f nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tF3M3Eau8f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tF3M3Eau8f .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tF3M3Eau8f a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tF3M3Eau8f .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-tF3M3Eau8f .navbar {
    height: 77px;
  }
  .cid-tF3M3Eau8f .navbar.opened {
    height: auto;
  }
  .cid-tF3M3Eau8f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tF3M3D7Zdq {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/alt-iletisim-banner-2-1920x1080.webp");
}
.cid-tF3M3D7Zdq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF3M3D7Zdq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF3NVwZzP5 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tF3NVwZzP5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF3NVwZzP5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF3NVwZzP5 .item {
  padding-bottom: 2rem;
}
.cid-tF3NVwZzP5 .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tF3NVwZzP5 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tF3NVwZzP5 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tF3NVwZzP5 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tF3NVwZzP5 .carousel-control,
.cid-tF3NVwZzP5 .close {
  background: #1b1b1b;
}
.cid-tF3NVwZzP5 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tF3NVwZzP5 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tF3NVwZzP5 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tF3NVwZzP5 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tF3NVwZzP5 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tF3NVwZzP5 .close::before {
  content: '\e91a';
}
.cid-tF3NVwZzP5 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tF3NVwZzP5 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tF3NVwZzP5 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tF3NVwZzP5 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tF3NVwZzP5 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tF3NVwZzP5 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tF3NVwZzP5 .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-tF3NVwZzP5 .carousel-indicators li.active,
.cid-tF3NVwZzP5 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tF3NVwZzP5 .carousel-indicators li::after,
.cid-tF3NVwZzP5 .carousel-indicators li::before {
  content: none;
}
.cid-tF3NVwZzP5 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tF3NVwZzP5 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tF3NVwZzP5 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tF3NVwZzP5 .carousel-indicators {
    display: none;
  }
}
.cid-tF3NVwZzP5 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tF3NVwZzP5 .carousel-inner > .active {
  display: block;
}
.cid-tF3NVwZzP5 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tF3NVwZzP5 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tF3NVwZzP5 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tF3NVwZzP5 .carousel-control,
  .cid-tF3NVwZzP5 .carousel-indicators,
  .cid-tF3NVwZzP5 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tF3NVwZzP5 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tF3NVwZzP5 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tF3NVwZzP5 .carousel-indicators .active,
.cid-tF3NVwZzP5 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tF3NVwZzP5 .carousel-indicators .active {
  background: #fff;
}
.cid-tF3NVwZzP5 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tF3NVwZzP5 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tF3NVwZzP5 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tF3NVwZzP5 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tF3NVwZzP5 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tF3NVwZzP5 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tF3NVwZzP5 .carousel {
  width: 100%;
}
.cid-tF3NVwZzP5 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tF3NVwZzP5 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tF3NVwZzP5 .modal.fade .modal-dialog,
.cid-tF3NVwZzP5 .modal.in .modal-dialog {
  transform: none;
}
.cid-tF3NVwZzP5 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tF3NVwZzP5 H6 {
  text-align: center;
}
.cid-tF3O6hvsj1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tF3O6hvsj1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF3O6hvsj1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF3O6hvsj1 .item {
  padding-bottom: 2rem;
}
.cid-tF3O6hvsj1 .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tF3O6hvsj1 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tF3O6hvsj1 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tF3O6hvsj1 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tF3O6hvsj1 .carousel-control,
.cid-tF3O6hvsj1 .close {
  background: #1b1b1b;
}
.cid-tF3O6hvsj1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tF3O6hvsj1 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tF3O6hvsj1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tF3O6hvsj1 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tF3O6hvsj1 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tF3O6hvsj1 .close::before {
  content: '\e91a';
}
.cid-tF3O6hvsj1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tF3O6hvsj1 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tF3O6hvsj1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tF3O6hvsj1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tF3O6hvsj1 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tF3O6hvsj1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tF3O6hvsj1 .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-tF3O6hvsj1 .carousel-indicators li.active,
.cid-tF3O6hvsj1 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tF3O6hvsj1 .carousel-indicators li::after,
.cid-tF3O6hvsj1 .carousel-indicators li::before {
  content: none;
}
.cid-tF3O6hvsj1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tF3O6hvsj1 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tF3O6hvsj1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tF3O6hvsj1 .carousel-indicators {
    display: none;
  }
}
.cid-tF3O6hvsj1 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tF3O6hvsj1 .carousel-inner > .active {
  display: block;
}
.cid-tF3O6hvsj1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tF3O6hvsj1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tF3O6hvsj1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tF3O6hvsj1 .carousel-control,
  .cid-tF3O6hvsj1 .carousel-indicators,
  .cid-tF3O6hvsj1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tF3O6hvsj1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tF3O6hvsj1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tF3O6hvsj1 .carousel-indicators .active,
.cid-tF3O6hvsj1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tF3O6hvsj1 .carousel-indicators .active {
  background: #fff;
}
.cid-tF3O6hvsj1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tF3O6hvsj1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tF3O6hvsj1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tF3O6hvsj1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tF3O6hvsj1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tF3O6hvsj1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tF3O6hvsj1 .carousel {
  width: 100%;
}
.cid-tF3O6hvsj1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tF3O6hvsj1 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tF3O6hvsj1 .modal.fade .modal-dialog,
.cid-tF3O6hvsj1 .modal.in .modal-dialog {
  transform: none;
}
.cid-tF3O6hvsj1 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tF3O6hvsj1 H6 {
  text-align: center;
}
.cid-tF3OhsgZ6O {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tF3OhsgZ6O .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF3OhsgZ6O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF3OhsgZ6O .item {
  padding-bottom: 2rem;
}
.cid-tF3OhsgZ6O .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tF3OhsgZ6O .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tF3OhsgZ6O .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tF3OhsgZ6O .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tF3OhsgZ6O .carousel-control,
.cid-tF3OhsgZ6O .close {
  background: #1b1b1b;
}
.cid-tF3OhsgZ6O .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tF3OhsgZ6O .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tF3OhsgZ6O .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tF3OhsgZ6O .carousel-control-next span {
  margin-left: 5px;
}
.cid-tF3OhsgZ6O .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tF3OhsgZ6O .close::before {
  content: '\e91a';
}
.cid-tF3OhsgZ6O .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tF3OhsgZ6O .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tF3OhsgZ6O .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tF3OhsgZ6O .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tF3OhsgZ6O .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tF3OhsgZ6O .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tF3OhsgZ6O .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-tF3OhsgZ6O .carousel-indicators li.active,
.cid-tF3OhsgZ6O .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tF3OhsgZ6O .carousel-indicators li::after,
.cid-tF3OhsgZ6O .carousel-indicators li::before {
  content: none;
}
.cid-tF3OhsgZ6O .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tF3OhsgZ6O .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tF3OhsgZ6O .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tF3OhsgZ6O .carousel-indicators {
    display: none;
  }
}
.cid-tF3OhsgZ6O .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tF3OhsgZ6O .carousel-inner > .active {
  display: block;
}
.cid-tF3OhsgZ6O .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tF3OhsgZ6O .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tF3OhsgZ6O .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tF3OhsgZ6O .carousel-control,
  .cid-tF3OhsgZ6O .carousel-indicators,
  .cid-tF3OhsgZ6O .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tF3OhsgZ6O .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tF3OhsgZ6O .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tF3OhsgZ6O .carousel-indicators .active,
.cid-tF3OhsgZ6O .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tF3OhsgZ6O .carousel-indicators .active {
  background: #fff;
}
.cid-tF3OhsgZ6O .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tF3OhsgZ6O .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tF3OhsgZ6O .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tF3OhsgZ6O .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tF3OhsgZ6O .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tF3OhsgZ6O .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tF3OhsgZ6O .carousel {
  width: 100%;
}
.cid-tF3OhsgZ6O .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tF3OhsgZ6O .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tF3OhsgZ6O .modal.fade .modal-dialog,
.cid-tF3OhsgZ6O .modal.in .modal-dialog {
  transform: none;
}
.cid-tF3OhsgZ6O .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tF3OhsgZ6O H6 {
  text-align: center;
}
.cid-tF3OifRyr3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tF3OifRyr3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF3OifRyr3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF3OifRyr3 .item {
  padding-bottom: 2rem;
}
.cid-tF3OifRyr3 .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tF3OifRyr3 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tF3OifRyr3 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tF3OifRyr3 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tF3OifRyr3 .carousel-control,
.cid-tF3OifRyr3 .close {
  background: #1b1b1b;
}
.cid-tF3OifRyr3 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tF3OifRyr3 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tF3OifRyr3 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tF3OifRyr3 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tF3OifRyr3 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tF3OifRyr3 .close::before {
  content: '\e91a';
}
.cid-tF3OifRyr3 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tF3OifRyr3 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tF3OifRyr3 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tF3OifRyr3 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tF3OifRyr3 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tF3OifRyr3 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tF3OifRyr3 .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-tF3OifRyr3 .carousel-indicators li.active,
.cid-tF3OifRyr3 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tF3OifRyr3 .carousel-indicators li::after,
.cid-tF3OifRyr3 .carousel-indicators li::before {
  content: none;
}
.cid-tF3OifRyr3 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tF3OifRyr3 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tF3OifRyr3 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tF3OifRyr3 .carousel-indicators {
    display: none;
  }
}
.cid-tF3OifRyr3 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tF3OifRyr3 .carousel-inner > .active {
  display: block;
}
.cid-tF3OifRyr3 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tF3OifRyr3 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tF3OifRyr3 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tF3OifRyr3 .carousel-control,
  .cid-tF3OifRyr3 .carousel-indicators,
  .cid-tF3OifRyr3 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tF3OifRyr3 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tF3OifRyr3 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tF3OifRyr3 .carousel-indicators .active,
.cid-tF3OifRyr3 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tF3OifRyr3 .carousel-indicators .active {
  background: #fff;
}
.cid-tF3OifRyr3 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tF3OifRyr3 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tF3OifRyr3 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tF3OifRyr3 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tF3OifRyr3 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tF3OifRyr3 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tF3OifRyr3 .carousel {
  width: 100%;
}
.cid-tF3OifRyr3 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tF3OifRyr3 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tF3OifRyr3 .modal.fade .modal-dialog,
.cid-tF3OifRyr3 .modal.in .modal-dialog {
  transform: none;
}
.cid-tF3OifRyr3 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tF3OifRyr3 H6 {
  text-align: center;
}
.cid-tF3Oj77pnf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tF3Oj77pnf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF3Oj77pnf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF3Oj77pnf .item {
  padding-bottom: 2rem;
}
.cid-tF3Oj77pnf .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tF3Oj77pnf .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tF3Oj77pnf .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tF3Oj77pnf .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tF3Oj77pnf .carousel-control,
.cid-tF3Oj77pnf .close {
  background: #1b1b1b;
}
.cid-tF3Oj77pnf .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tF3Oj77pnf .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tF3Oj77pnf .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tF3Oj77pnf .carousel-control-next span {
  margin-left: 5px;
}
.cid-tF3Oj77pnf .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tF3Oj77pnf .close::before {
  content: '\e91a';
}
.cid-tF3Oj77pnf .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tF3Oj77pnf .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tF3Oj77pnf .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tF3Oj77pnf .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tF3Oj77pnf .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tF3Oj77pnf .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tF3Oj77pnf .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-tF3Oj77pnf .carousel-indicators li.active,
.cid-tF3Oj77pnf .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tF3Oj77pnf .carousel-indicators li::after,
.cid-tF3Oj77pnf .carousel-indicators li::before {
  content: none;
}
.cid-tF3Oj77pnf .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tF3Oj77pnf .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tF3Oj77pnf .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tF3Oj77pnf .carousel-indicators {
    display: none;
  }
}
.cid-tF3Oj77pnf .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tF3Oj77pnf .carousel-inner > .active {
  display: block;
}
.cid-tF3Oj77pnf .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tF3Oj77pnf .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tF3Oj77pnf .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tF3Oj77pnf .carousel-control,
  .cid-tF3Oj77pnf .carousel-indicators,
  .cid-tF3Oj77pnf .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tF3Oj77pnf .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tF3Oj77pnf .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tF3Oj77pnf .carousel-indicators .active,
.cid-tF3Oj77pnf .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tF3Oj77pnf .carousel-indicators .active {
  background: #fff;
}
.cid-tF3Oj77pnf .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tF3Oj77pnf .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tF3Oj77pnf .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tF3Oj77pnf .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tF3Oj77pnf .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tF3Oj77pnf .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tF3Oj77pnf .carousel {
  width: 100%;
}
.cid-tF3Oj77pnf .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tF3Oj77pnf .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tF3Oj77pnf .modal.fade .modal-dialog,
.cid-tF3Oj77pnf .modal.in .modal-dialog {
  transform: none;
}
.cid-tF3Oj77pnf .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tF3Oj77pnf H6 {
  text-align: center;
}
.cid-tFaXh6PAGl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tFaXh6PAGl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFaXh6PAGl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFaXh6PAGl .item {
  padding-bottom: 2rem;
}
.cid-tFaXh6PAGl .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tFaXh6PAGl .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tFaXh6PAGl .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFaXh6PAGl .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFaXh6PAGl .carousel-control,
.cid-tFaXh6PAGl .close {
  background: #1b1b1b;
}
.cid-tFaXh6PAGl .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFaXh6PAGl .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFaXh6PAGl .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFaXh6PAGl .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFaXh6PAGl .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFaXh6PAGl .close::before {
  content: '\e91a';
}
.cid-tFaXh6PAGl .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFaXh6PAGl .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFaXh6PAGl .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFaXh6PAGl .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFaXh6PAGl .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFaXh6PAGl .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFaXh6PAGl .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-tFaXh6PAGl .carousel-indicators li.active,
.cid-tFaXh6PAGl .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFaXh6PAGl .carousel-indicators li::after,
.cid-tFaXh6PAGl .carousel-indicators li::before {
  content: none;
}
.cid-tFaXh6PAGl .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFaXh6PAGl .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFaXh6PAGl .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFaXh6PAGl .carousel-indicators {
    display: none;
  }
}
.cid-tFaXh6PAGl .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFaXh6PAGl .carousel-inner > .active {
  display: block;
}
.cid-tFaXh6PAGl .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFaXh6PAGl .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFaXh6PAGl .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFaXh6PAGl .carousel-control,
  .cid-tFaXh6PAGl .carousel-indicators,
  .cid-tFaXh6PAGl .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFaXh6PAGl .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFaXh6PAGl .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFaXh6PAGl .carousel-indicators .active,
.cid-tFaXh6PAGl .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFaXh6PAGl .carousel-indicators .active {
  background: #fff;
}
.cid-tFaXh6PAGl .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFaXh6PAGl .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFaXh6PAGl .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFaXh6PAGl .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFaXh6PAGl .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFaXh6PAGl .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFaXh6PAGl .carousel {
  width: 100%;
}
.cid-tFaXh6PAGl .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFaXh6PAGl .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFaXh6PAGl .modal.fade .modal-dialog,
.cid-tFaXh6PAGl .modal.in .modal-dialog {
  transform: none;
}
.cid-tFaXh6PAGl .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFaXh6PAGl H6 {
  text-align: center;
}
.cid-tFaXhZYix5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tFaXhZYix5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFaXhZYix5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFaXhZYix5 .item {
  padding-bottom: 2rem;
}
.cid-tFaXhZYix5 .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tFaXhZYix5 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tFaXhZYix5 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFaXhZYix5 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFaXhZYix5 .carousel-control,
.cid-tFaXhZYix5 .close {
  background: #1b1b1b;
}
.cid-tFaXhZYix5 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFaXhZYix5 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFaXhZYix5 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFaXhZYix5 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFaXhZYix5 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFaXhZYix5 .close::before {
  content: '\e91a';
}
.cid-tFaXhZYix5 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFaXhZYix5 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFaXhZYix5 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFaXhZYix5 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFaXhZYix5 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFaXhZYix5 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFaXhZYix5 .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-tFaXhZYix5 .carousel-indicators li.active,
.cid-tFaXhZYix5 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFaXhZYix5 .carousel-indicators li::after,
.cid-tFaXhZYix5 .carousel-indicators li::before {
  content: none;
}
.cid-tFaXhZYix5 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFaXhZYix5 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFaXhZYix5 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFaXhZYix5 .carousel-indicators {
    display: none;
  }
}
.cid-tFaXhZYix5 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFaXhZYix5 .carousel-inner > .active {
  display: block;
}
.cid-tFaXhZYix5 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFaXhZYix5 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFaXhZYix5 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFaXhZYix5 .carousel-control,
  .cid-tFaXhZYix5 .carousel-indicators,
  .cid-tFaXhZYix5 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFaXhZYix5 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFaXhZYix5 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFaXhZYix5 .carousel-indicators .active,
.cid-tFaXhZYix5 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFaXhZYix5 .carousel-indicators .active {
  background: #fff;
}
.cid-tFaXhZYix5 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFaXhZYix5 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFaXhZYix5 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFaXhZYix5 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFaXhZYix5 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFaXhZYix5 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFaXhZYix5 .carousel {
  width: 100%;
}
.cid-tFaXhZYix5 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFaXhZYix5 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFaXhZYix5 .modal.fade .modal-dialog,
.cid-tFaXhZYix5 .modal.in .modal-dialog {
  transform: none;
}
.cid-tFaXhZYix5 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFaXhZYix5 H6 {
  text-align: center;
}
.cid-tFfo2zjbMZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tFfo2zjbMZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFfo2zjbMZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFfo2zjbMZ .item {
  padding-bottom: 2rem;
}
.cid-tFfo2zjbMZ .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tFfo2zjbMZ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tFfo2zjbMZ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFfo2zjbMZ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFfo2zjbMZ .carousel-control,
.cid-tFfo2zjbMZ .close {
  background: #1b1b1b;
}
.cid-tFfo2zjbMZ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFfo2zjbMZ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFfo2zjbMZ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFfo2zjbMZ .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFfo2zjbMZ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFfo2zjbMZ .close::before {
  content: '\e91a';
}
.cid-tFfo2zjbMZ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFfo2zjbMZ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFfo2zjbMZ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFfo2zjbMZ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFfo2zjbMZ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFfo2zjbMZ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFfo2zjbMZ .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-tFfo2zjbMZ .carousel-indicators li.active,
.cid-tFfo2zjbMZ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFfo2zjbMZ .carousel-indicators li::after,
.cid-tFfo2zjbMZ .carousel-indicators li::before {
  content: none;
}
.cid-tFfo2zjbMZ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFfo2zjbMZ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFfo2zjbMZ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFfo2zjbMZ .carousel-indicators {
    display: none;
  }
}
.cid-tFfo2zjbMZ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFfo2zjbMZ .carousel-inner > .active {
  display: block;
}
.cid-tFfo2zjbMZ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFfo2zjbMZ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFfo2zjbMZ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFfo2zjbMZ .carousel-control,
  .cid-tFfo2zjbMZ .carousel-indicators,
  .cid-tFfo2zjbMZ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFfo2zjbMZ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFfo2zjbMZ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFfo2zjbMZ .carousel-indicators .active,
.cid-tFfo2zjbMZ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFfo2zjbMZ .carousel-indicators .active {
  background: #fff;
}
.cid-tFfo2zjbMZ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFfo2zjbMZ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFfo2zjbMZ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFfo2zjbMZ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFfo2zjbMZ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFfo2zjbMZ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFfo2zjbMZ .carousel {
  width: 100%;
}
.cid-tFfo2zjbMZ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFfo2zjbMZ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFfo2zjbMZ .modal.fade .modal-dialog,
.cid-tFfo2zjbMZ .modal.in .modal-dialog {
  transform: none;
}
.cid-tFfo2zjbMZ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFfo2zjbMZ H6 {
  text-align: center;
}
.cid-tFfo3fwxhC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tFfo3fwxhC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFfo3fwxhC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFfo3fwxhC .item {
  padding-bottom: 2rem;
}
.cid-tFfo3fwxhC .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tFfo3fwxhC .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tFfo3fwxhC .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFfo3fwxhC .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFfo3fwxhC .carousel-control,
.cid-tFfo3fwxhC .close {
  background: #1b1b1b;
}
.cid-tFfo3fwxhC .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFfo3fwxhC .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFfo3fwxhC .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFfo3fwxhC .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFfo3fwxhC .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFfo3fwxhC .close::before {
  content: '\e91a';
}
.cid-tFfo3fwxhC .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFfo3fwxhC .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFfo3fwxhC .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFfo3fwxhC .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFfo3fwxhC .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFfo3fwxhC .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFfo3fwxhC .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-tFfo3fwxhC .carousel-indicators li.active,
.cid-tFfo3fwxhC .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFfo3fwxhC .carousel-indicators li::after,
.cid-tFfo3fwxhC .carousel-indicators li::before {
  content: none;
}
.cid-tFfo3fwxhC .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFfo3fwxhC .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFfo3fwxhC .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFfo3fwxhC .carousel-indicators {
    display: none;
  }
}
.cid-tFfo3fwxhC .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFfo3fwxhC .carousel-inner > .active {
  display: block;
}
.cid-tFfo3fwxhC .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFfo3fwxhC .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFfo3fwxhC .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFfo3fwxhC .carousel-control,
  .cid-tFfo3fwxhC .carousel-indicators,
  .cid-tFfo3fwxhC .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFfo3fwxhC .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFfo3fwxhC .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFfo3fwxhC .carousel-indicators .active,
.cid-tFfo3fwxhC .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFfo3fwxhC .carousel-indicators .active {
  background: #fff;
}
.cid-tFfo3fwxhC .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFfo3fwxhC .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFfo3fwxhC .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFfo3fwxhC .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFfo3fwxhC .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFfo3fwxhC .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFfo3fwxhC .carousel {
  width: 100%;
}
.cid-tFfo3fwxhC .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFfo3fwxhC .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFfo3fwxhC .modal.fade .modal-dialog,
.cid-tFfo3fwxhC .modal.in .modal-dialog {
  transform: none;
}
.cid-tFfo3fwxhC .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFfo3fwxhC H6 {
  text-align: center;
}
.cid-tFfqIEu6VV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/yildiz-yeni-orta-golge-1920x1080.webp");
}
.cid-tFfqIEu6VV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFfqIEu6VV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFfqIEu6VV .item {
  padding-bottom: 2rem;
}
.cid-tFfqIEu6VV .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tFfqIEu6VV .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tFfqIEu6VV .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFfqIEu6VV .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFfqIEu6VV .carousel-control,
.cid-tFfqIEu6VV .close {
  background: #1b1b1b;
}
.cid-tFfqIEu6VV .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFfqIEu6VV .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFfqIEu6VV .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFfqIEu6VV .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFfqIEu6VV .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFfqIEu6VV .close::before {
  content: '\e91a';
}
.cid-tFfqIEu6VV .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFfqIEu6VV .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFfqIEu6VV .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFfqIEu6VV .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFfqIEu6VV .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFfqIEu6VV .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFfqIEu6VV .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-tFfqIEu6VV .carousel-indicators li.active,
.cid-tFfqIEu6VV .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFfqIEu6VV .carousel-indicators li::after,
.cid-tFfqIEu6VV .carousel-indicators li::before {
  content: none;
}
.cid-tFfqIEu6VV .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFfqIEu6VV .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFfqIEu6VV .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFfqIEu6VV .carousel-indicators {
    display: none;
  }
}
.cid-tFfqIEu6VV .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFfqIEu6VV .carousel-inner > .active {
  display: block;
}
.cid-tFfqIEu6VV .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFfqIEu6VV .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFfqIEu6VV .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFfqIEu6VV .carousel-control,
  .cid-tFfqIEu6VV .carousel-indicators,
  .cid-tFfqIEu6VV .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFfqIEu6VV .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFfqIEu6VV .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFfqIEu6VV .carousel-indicators .active,
.cid-tFfqIEu6VV .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFfqIEu6VV .carousel-indicators .active {
  background: #fff;
}
.cid-tFfqIEu6VV .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFfqIEu6VV .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFfqIEu6VV .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFfqIEu6VV .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFfqIEu6VV .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFfqIEu6VV .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFfqIEu6VV .carousel {
  width: 100%;
}
.cid-tFfqIEu6VV .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFfqIEu6VV .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFfqIEu6VV .modal.fade .modal-dialog,
.cid-tFfqIEu6VV .modal.in .modal-dialog {
  transform: none;
}
.cid-tFfqIEu6VV .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFfqIEu6VV H6 {
  text-align: center;
}
.cid-tF3M3DD5ac {
  padding-top: 90px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/yildiz-yeni-alt-kisim-1920x1080.webp");
}
@media (max-width: 767px) {
  .cid-tF3M3DD5ac .content {
    text-align: center;
  }
  .cid-tF3M3DD5ac .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tF3M3DD5ac .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tF3M3DD5ac .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tF3M3DD5ac .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tF3M3DD5ac .google-map {
  height: 25rem;
  position: relative;
}
.cid-tF3M3DD5ac .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tF3M3DD5ac .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-tF3M3DD5ac .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tF3M3DD5ac .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tF3M3DD5ac .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tF3M3DD5ac .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tF3M3DD5ac .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tF3M3DD5ac .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tF3M3DD5ac .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tF3M3DD5ac .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tF3M3DD5ac .list {
  list-style-type: none;
  padding: 0;
}
.cid-tF3M3DD5ac H5 {
  color: #ffffff;
}
