/* =====================================================
   GENEL RESET
===================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: "Raleway", Arial, sans-serif;
    color: #232323;
    background: #ffffff;
    line-height: 1.6;
}

img,
video {
    max-width: 100%;
}

img {
    height: auto;
    border: 0;
}

a {
    color: #048fd2;
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: #a07e49;
    text-decoration: none;
}


/* =====================================================
   CONTAINER
===================================================== */

.container {
    position: relative;
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.container-fluid {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

@media screen and (max-width: 991px) {
    .container,
    .container-fluid {
        max-width: 94%;
        padding-left: 0;
        padding-right: 0;
    }
}

@media screen and (max-width: 600px) {
    .container,
    .container-fluid {
        max-width: 92%;
    }
}


/* =====================================================
   RENK SINIFLARI
===================================================== */

.bg-primary {
    background-color: #048fd2 !important;
}

.bg-success {
    background-color: #90a878 !important;
}

.bg-info {
    background-color: #7e9b9f !important;
}

.bg-warning {
    background-color: #f3c649 !important;
}

.bg-danger {
    background-color: #f28281 !important;
}

.bg-none {
    background: none !important;
}

.text-primary {
    color: #048fd2 !important;
}

.text-success {
    color: #90a878 !important;
}

.text-info {
    color: #7e9b9f !important;
}

.text-warning {
    color: #f3c649 !important;
}

.text-danger {
    color: #f28281 !important;
}

.text-white {
    color: #ffffff !important;
}

.text-black {
    color: #535353 !important;
}


/* =====================================================
   BUTONLAR
===================================================== */

.btn {
    display: inline-block;

    margin-bottom: 0.5rem;

    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 1.4px;

    padding: 0.75rem 2.1rem;

    font-size: 0.76rem;
    line-height: 1.5;

    border-radius: 4px;

    text-align: center;
    text-decoration: none;
    white-space: normal;

    box-shadow: none;

    transition: all 0.3s ease-in-out;
}

.btn + .btn {
    margin-left: 1rem;
}

.btn-sm {
    padding: 0.625rem 1.7rem;
    font-size: 0.86rem;
    line-height: 1.5;
    border-radius: 4px;
    font-family: "Lora", serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0;
}

.btn-lg {
    padding: 0.85rem 2.3rem;
    font-size: 0.95rem;
    line-height: 1.4;
    border-radius: 4px;
}

.btn-xlg {
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    line-height: 1.4;
    border-radius: 4px;
}


/* Primary */
.btn-primary {
    background-color: #048fd2;
    border: 1px solid #048fd2;
    color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active {
    background-color: #a07e49;
    border-color: #a07e49;
    color: #ffffff;
    box-shadow: none;
}


/* Secondary */
.btn-secondary {
    background-color: #bfcecb;
    border: 1px solid #bfcecb;
    color: #ffffff;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background-color: #94ada8;
    border-color: #94ada8;
    color: #ffffff;
}


/* Info */
.btn-info {
    background-color: #7e9b9f;
    border: 1px solid #7e9b9f;
    color: #ffffff;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active {
    background-color: #597478;
    border-color: #597478;
    color: #ffffff;
}


/* Success */
.btn-success {
    background-color: #90a878;
    border: 1px solid #90a878;
    color: #ffffff;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    background-color: #6a8153;
    border-color: #6a8153;
    color: #ffffff;
}


/* Warning */
.btn-warning {
    background-color: #f3c649;
    border: 1px solid #f3c649;
    color: #ffffff;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active {
    background-color: #e1a90f;
    border-color: #e1a90f;
    color: #ffffff;
}


/* Danger */
.btn-danger {
    background-color: #f28281;
    border: 1px solid #f28281;
    color: #ffffff;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
    background-color: #eb3d3c;
    border-color: #eb3d3c;
    color: #ffffff;
}


/* White */
.btn-white {
    background-color: #ffffff;
    border: 1px solid #ffffff;
    color: #535353;
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active {
    background-color: #d4d4d4;
    border-color: #d4d4d4;
    color: #535353;
}


/* Black */
.btn-black {
    background-color: #535353;
    border: 1px solid #535353;
    color: #ffffff;
}

.btn-black:hover,
.btn-black:focus,
.btn-black:active {
    background-color: #2d2d2d;
    border-color: #2d2d2d;
    color: #ffffff;
}


/* Outline */
.btn-primary-outline {
    background: transparent;
    border: 1px solid #a07e49;
    color: #a07e49;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline:active {
    background-color: #048fd2;
    border-color: #048fd2;
    color: #ffffff;
}

.btn-secondary-outline {
    background: transparent;
    border: 1px solid #85a29c;
    color: #85a29c;
}

.btn-secondary-outline:hover {
    background-color: #bfcecb;
    border-color: #bfcecb;
    color: #ffffff;
}

.btn-info-outline {
    background: transparent;
    border: 1px solid #4e6669;
    color: #4e6669;
}

.btn-info-outline:hover {
    background-color: #7e9b9f;
    border-color: #7e9b9f;
    color: #ffffff;
}

.btn-success-outline {
    background: transparent;
    border: 1px solid #5d7149;
    color: #5d7149;
}

.btn-success-outline:hover {
    background-color: #90a878;
    border-color: #90a878;
    color: #ffffff;
}

.btn-warning-outline {
    background: transparent;
    border: 1px solid #c9970d;
    color: #c9970d;
}

.btn-warning-outline:hover {
    background-color: #f3c649;
    border-color: #f3c649;
    color: #ffffff;
}

.btn-danger-outline {
    background: transparent;
    border: 1px solid #e82625;
    color: #e82625;
}

.btn-danger-outline:hover {
    background-color: #f28281;
    border-color: #f28281;
    color: #ffffff;
}

.btn-white-outline {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.btn-white-outline:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #535353;
}

.btn-black-outline {
    background: transparent;
    border: 1px solid #202020;
    color: #202020;
}

.btn-black-outline:hover {
    background-color: #535353;
    border-color: #535353;
    color: #ffffff;
}

.btn.disabled,
.btn:disabled {
    opacity: 0.85;
    pointer-events: none;
}


/* Mobil buton */
@media screen and (max-width: 767px) {
    .btn {
        max-width: 100%;
        padding: 0.72rem 1.4rem;
        font-size: 0.72rem;
        letter-spacing: 1px;
    }

    .btn + .btn {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .mbr-section-btn .btn {
        margin-left: 0;
        margin-right: 0.35rem;
    }
}


/* =====================================================
   SOSYAL BUTONLAR
===================================================== */

.btn-social {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    padding: 0;
    margin: 0 4px 8px 0;

    font-size: 20px;
    line-height: 44px;

    color: #ffffff;
    background: #048fd2;

    border: 2px solid #048fd2 !important;
    border-radius: 50%;

    text-align: center;
}

.btn-social:hover {
    color: #048fd2;
    background: #ffffff;
    border-color: #048fd2 !important;
}

.btn-social i {
    position: relative;
    top: auto;
    width: auto;
    line-height: 1;
}


/* =====================================================
   TYPOGRAPHY
===================================================== */

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.display-1,
.display-2,
.display-3,
.display-4 {
    font-family: "Montserrat", Arial, sans-serif;
    word-break: normal;
    overflow-wrap: break-word;
}

input,
textarea,
select,
button {
    font-family: "Raleway", Arial, sans-serif;
}

.display-1 {
    font-size: clamp(2.4rem, 6vw, 4.39rem);
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 0.3em;
}

.display-2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 1.4rem;
}

.display-3 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1.6rem;
}

.display-4 {
    font-size: clamp(1.45rem, 3.5vw, 2rem);
    font-weight: 600;
    margin-bottom: 1.4rem;
}

.lead,
p.lead,
.lead p {
    font-size: clamp(1rem, 2vw, 1.07rem);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.lead a {
    font-family: "Lora", serif;
    font-style: italic;
    font-weight: 400;
    color: #048fd2;
}

.lead a:hover {
    color: #a07e49;
}

.lead blockquote {
    font-family: "Lora", serif;
    font-style: italic;
    padding: 10px 0 10px 20px;
    border-left: 4px solid #c39f76;
    font-size: 1.05rem;
}

.lead pre {
    background: #f4f4f4;
    padding: 10px 24px;
    white-space: pre-wrap;
}


/* =====================================================
   FORMLAR
===================================================== */

.form-control {
    width: 100%;

    background-color: #f5f5f5;

    border: 1px solid #e8e8e8;
    border-radius: 4px;

    box-shadow: none;

    color: #565656;

    font-size: 0.875rem;
    line-height: 1.43;

    min-height: 3.5em;
    padding: 0.5em 1.07em;
}

.form-control:focus {
    border-color: #a07e49;
    outline: none;
    box-shadow: none;
}

.form-control-label {
    cursor: pointer;
    font-size: 0.875rem;
    margin-bottom: 0.357em;
    padding: 0;
}

.form-active .form-control:invalid {
    border-color: #f28281;
}


/* =====================================================
   ALERT
===================================================== */

.alert {
    position: relative;

    border-radius: 0;
    border: 0;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;

    margin-bottom: 1.875rem;
    padding: 1.25rem;
}

.alert.alert-form::after {
    content: "";

    position: absolute;
    bottom: -7px;
    left: 50%;

    display: block;

    width: 14px;
    height: 14px;

    margin-left: -7px;

    background-color: inherit;

    transform: rotate(45deg);
}

.alert-success {
    background-color: #90a878;
    color: #ffffff;
}

.alert-info {
    background-color: #7e9b9f;
    color: #ffffff;
}

.alert-warning {
    background-color: #f3c649;
    color: #ffffff;
}

.alert-danger {
    background-color: #f28281;
    color: #ffffff;
}


/* =====================================================
   SECTION YAPISI
===================================================== */

.mbr-section {
    position: relative;

    padding-top: 90px;
    padding-bottom: 90px;

    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.mbr-section-small {
    padding-top: 50px;
    padding-bottom: 50px;
}

.mbr-section-sm-padding {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mbr-section-md-padding {
    padding-top: 70px;
    padding-bottom: 70px;
}

.mbr-section-nopadding {
    padding-top: 0;
    padding-bottom: 0;
}

.mbr-section-title {
    margin-top: 0;
}

.mbr-section-subtitle {
    display: block;

    margin-bottom: 28px;

    color: #8c8c8c;

    font-family: "Lora", serif;
    font-size: 17px;
    font-style: italic;
    font-weight: 400;
    line-height: 26px;
}

.mbr-section-title + .mbr-section-subtitle {
    margin-top: -14px;
}

@media screen and (max-width: 767px) {
    .mbr-section {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .mbr-section-small {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .mbr-section-md-padding {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .mbr-section-subtitle {
        margin-bottom: 18px;
    }
}


/* =====================================================
   HERO / FULL SECTION
===================================================== */

.mbr-section-full {
    display: table;

    width: 100%;
    min-height: 100vh;
    height: auto;

    padding-top: 0;
    padding-bottom: 0;

    table-layout: fixed;
}

.mbr-section-full > .mbr-table-cell {
    width: 100%;
}

.mbr-section-hero::before {
    display: none !important;
}

.mbr-section-hero .mbr-section-title {
    color: #ffffff;
    margin-bottom: 1.6875rem;
}

.mbr-section-hero .mbr-section-lead {
    color: #ffffff;

    font-family: "Lora", serif;
    font-size: 1.5rem;
    font-style: italic;

    margin-top: -1em;
}

.mbr-section-hero .mbr-section-text {
    color: #ffffff;
}

@media screen and (max-width: 767px) {
    .mbr-section-hero .mbr-section-title {
        font-size: 2.4rem !important;
    }

    .mbr-section-hero .mbr-section-lead {
        font-size: 1.1rem !important;
    }
}


/* =====================================================
   OVERLAY / VIDEO
===================================================== */

.mbr-overlay {
    position: absolute;
    inset: 0;

    background-color: #000000;

    opacity: 0.5;
    z-index: 1;
}

.mbr-overlay ~ * {
    position: relative;
    z-index: 2;
}

.mbr-background-video,
.mbr-background-video-preview {
    position: absolute;
    inset: 0;
}

.mbr-background-video-preview {
    z-index: 0 !important;
}

.mbr-section-full .mbr-overlay,
.mbr-section-full .mbr-background-video,
.mbr-section-full .mbr-background-video-preview {
    min-height: 100vh;
}


/* =====================================================
   TABLE YAPISI
===================================================== */

.mbr-table {
    display: table;
    width: 100%;
}

.mbr-table-full {
    position: relative;
    width: 100%;
    height: 100%;
}

.mbr-table-cell {
    display: table-cell;
    float: none;

    position: relative;

    padding-top: 0;
    padding-bottom: 0;

    vertical-align: middle;
}

.mbr-table-md-up {
    width: 100%;
}

.mbr-table-md-up .mbr-table-cell {
    display: block;
}

.mbr-table-md-up .mbr-table-cell + .mbr-table-cell {
    padding-top: 40px;
}

@media screen and (min-width: 769px) {
    .mbr-table-md-up {
        display: table;
    }

    .mbr-table-md-up .mbr-table-cell {
        display: table-cell;
    }

    .mbr-table-md-up .mbr-table-cell + .mbr-table-cell {
        padding-top: 0;
    }
}


/* =====================================================
   FIGURE / IMAGE
===================================================== */

.mbr-figure {
    position: relative;

    display: block;

    width: 100%;
    margin: 0;

    overflow: hidden;
}

.mbr-figure img,
.mbr-figure iframe {
    display: block;
    width: 100%;
}

.mbr-figure .mbr-figure-caption {
    width: 100%;

    padding: 1.2rem 0;

    color: #ffffff;
    background: #2e2e2e;

    font-family: "Montserrat", Arial, sans-serif;
    text-align: center;
}

.mbr-figure .mbr-figure-caption-over {
    position: absolute;
    bottom: 0;

    background: linear-gradient(
        90deg,
        rgba(67, 76, 99, 0.85),
        rgba(188, 155, 114, 0.85)
    ) !important;
}


/* =====================================================
   HARİTA
===================================================== */

.mbr-map {
    position: relative;
    height: 25rem;
}

.mbr-map iframe {
    width: 100%;
    height: 100%;
}

.mbr-map[data-state] {
    background: #e9e5dc;
}

.mbr-map [data-state-details] {
    position: absolute;
    top: 50%;

    width: 100%;
    height: 1.5em;

    margin-top: -0.75em;
    padding-left: 1.25rem;
    padding-right: 1.25rem;

    color: #6b6763;

    font-family: "Montserrat", Arial, sans-serif;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .mbr-map {
        height: 18rem;
    }
}


/* =====================================================
   GALLERY - MODERN / SİMETRİK / RESPONSIVE
===================================================== */

.mbr-gallery {
    position: relative;

    width: 100%;

    margin: 0 auto;
    padding: 0;

    overflow: hidden;
}

.mbr-gallery .container,
.mbr-gallery .container-fluid {
    width: min(94%, 1180px);
    max-width: 1180px;

    margin-left: auto;
    margin-right: auto;

    padding-left: 0;
    padding-right: 0;
}

.mbr-gallery .container.mbr-gallery-layout-default {
    padding: 55px 0;
}

.mbr-gallery .mbr-gallery-layout-default,
.mbr-gallery .mbr-gallery-layout-article {
    overflow: hidden;
}


/* Galeri satırı */
.mbr-gallery .mbr-gallery-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;

    width: 100%;

    margin: 0;
    padding: 0;

    overflow: visible;
}

.mbr-gallery .mbr-gallery-row.no-gutter {
    margin: 0;
    gap: 10px;
}

.mbr-gallery .mbr-gallery-row.no-gutter .mbr-gallery-item {
    padding: 0;
}


/* Galeri kartı */
.mbr-gallery .mbr-gallery-item {
    position: relative;

    display: block;
    float: none;

    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;

    margin: 0;
    padding: 0;

    background: #f4f4f4;

    border-radius: 10px;
    overflow: hidden;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);

    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.mbr-gallery .mbr-gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}


/* Link */
.mbr-gallery .mbr-gallery-item > a {
    position: relative;

    display: block;

    width: 100%;
    height: 100%;

    background: #f4f4f4;

    outline: none;
    text-decoration: none;

    border-radius: 10px;
    overflow: hidden;
}


/* Görsel */
.mbr-gallery .mbr-gallery-item img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    opacity: 1;

    border-radius: 10px;

    transition: transform 0.35s ease, opacity 0.35s ease;
}

.mbr-gallery .mbr-gallery-item > a:hover img {
    transform: scale(1.06);
    opacity: 0.92;
}


/* Hover overlay */
.mbr-gallery .mbr-gallery-item > a::before {
    content: "";

    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        135deg,
        rgba(31, 37, 48, 0.16),
        rgba(160, 126, 73, 0.46)
    );

    opacity: 0;

    z-index: 2;

    border-radius: 10px;

    transition: opacity 0.3s ease;
}

.mbr-gallery .mbr-gallery-item > a:hover::before {
    opacity: 1;
}


/* Artı ikon */
.mbr-gallery .mbr-gallery-item .icon {
    position: absolute;
    left: 50%;
    top: 50%;

    width: 54px;
    height: 54px;

    transform: translate(-50%, -50%) scale(0.9);

    opacity: 0;

    z-index: 3;

    border: 2px solid #ffffff;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.25);

    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mbr-gallery .mbr-gallery-item > a:hover .icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.mbr-gallery .mbr-gallery-item .icon::before,
.mbr-gallery .mbr-gallery-item .icon::after {
    content: "";

    position: absolute;
    left: 50%;
    top: 50%;

    display: block;

    margin: 0;

    background-color: #ffffff;
}

.mbr-gallery .mbr-gallery-item .icon::before {
    width: 2px;
    height: 24px;
    transform: translate(-50%, -50%);
}

.mbr-gallery .mbr-gallery-item .icon::after {
    width: 24px;
    height: 2px;
    transform: translate(-50%, -50%);
}


/* Galeri başlığı */
.mbr-gallery-title {
    position: absolute;
    left: 0;
    bottom: 0;

    display: block;

    width: 100%;

    padding: 13px 15px;

    color: #ffffff;

    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.72),
        rgba(0, 0, 0, 0.12)
    );

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.25px;

    text-align: left;

    z-index: 4;

    transition: background 0.25s ease, padding 0.25s ease;
}

.mbr-gallery .mbr-gallery-item > a:hover .mbr-gallery-title {
    background: linear-gradient(
        0deg,
        rgba(160, 126, 73, 0.88),
        rgba(160, 126, 73, 0.12)
    );

    padding-bottom: 17px;
}


/* Tablet galeri */
@media screen and (max-width: 991px) {
    .mbr-gallery .container,
    .mbr-gallery .container-fluid {
        width: 94%;
    }

    .mbr-gallery .container.mbr-gallery-layout-default {
        padding: 42px 0;
    }

    .mbr-gallery .mbr-gallery-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .mbr-gallery .mbr-gallery-row.no-gutter {
        gap: 10px;
    }
}


/* Mobil galeri */
@media screen and (max-width: 600px) {
    .mbr-gallery .container,
    .mbr-gallery .container-fluid {
        width: 92%;
    }

    .mbr-gallery .container.mbr-gallery-layout-default {
        padding: 32px 0;
    }

    .mbr-gallery .mbr-gallery-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .mbr-gallery .mbr-gallery-row.no-gutter {
        gap: 8px;
    }

    .mbr-gallery .mbr-gallery-item,
    .mbr-gallery .mbr-gallery-item > a,
    .mbr-gallery .mbr-gallery-item img,
    .mbr-gallery .mbr-gallery-item > a::before {
        border-radius: 8px;
    }

    .mbr-gallery-title {
        padding: 10px 11px;
        font-size: 12px;
        line-height: 1.3;
    }

    .mbr-gallery .mbr-gallery-item .icon {
        width: 44px;
        height: 44px;
    }

    .mbr-gallery .mbr-gallery-item .icon::before {
        height: 19px;
    }

    .mbr-gallery .mbr-gallery-item .icon::after {
        width: 19px;
    }
}


/* Çok küçük mobil */
@media screen and (max-width: 380px) {
    .mbr-gallery .container,
    .mbr-gallery .container-fluid {
        width: 94%;
    }

    .mbr-gallery .mbr-gallery-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mbr-gallery-title {
        font-size: 12.5px;
    }
}


/* =====================================================
   LIGHTBOX / MODAL
===================================================== */

.modal-backdrop {
    background: linear-gradient(135deg, #1f2530, #000000);
    opacity: 0.94;
}

.modal-backdrop.in {
    opacity: 0.88;
    filter: alpha(opacity=88);
}

.mbr-gallery .modal {
    position: fixed;
    overflow: hidden;

    padding-right: 0 !important;

    z-index: 999999;
}

.mbr-gallery .modal-dialog {
    width: min(94%, 1100px);
    max-width: 1100px;

    margin: 40px auto;
}

.mbr-gallery .modal-content {
    background: transparent;

    border: none;
    border-radius: 10px;

    box-shadow: none;

    overflow: hidden;
}

.mbr-gallery .modal-body {
    padding: 0;
    background: transparent;
}

.mbr-gallery .modal-body img {
    display: block;

    width: auto;
    max-width: 100%;

    height: auto;
    max-height: 82vh;

    margin: 0 auto;

    object-fit: contain;

    border-radius: 8px;
}

.mbr-gallery .modal .close {
    position: fixed;
    top: 24px;
    right: 24px;

    width: 48px;
    height: 48px;

    background: rgba(160, 126, 73, 0.95);

    border: none;
    border-radius: 50%;

    color: #ffffff;

    font-size: 34px;
    font-weight: 300;
    line-height: 44px;

    opacity: 1;

    text-align: center;
    text-shadow: none;

    z-index: 1000000;

    transition: background 0.25s ease, transform 0.25s ease;
}

.mbr-gallery .modal .close:hover {
    background: #1f2530;
    color: #ffffff;
    transform: scale(1.06);
}

.mbr-gallery .modal.fade .modal-dialog {
    transition: margin-top 0.3s ease-out;
}

.mbr-gallery .modal.in .modal-dialog,
.mbr-gallery .modal.fade .modal-dialog {
    transform: none;
}

@media screen and (max-width: 600px) {
    .mbr-gallery .modal .close {
        top: 14px;
        right: 14px;

        width: 42px;
        height: 42px;

        font-size: 30px;
        line-height: 38px;
    }

    .mbr-gallery .modal-dialog {
        width: 94%;
        margin: 72px auto 24px auto;
    }

    .mbr-gallery .modal-body img {
        max-height: 70vh;
        border-radius: 6px;
    }
}


/* =====================================================
   SLIDER / CAROUSEL
===================================================== */

.mbr-slider .carousel-inner > .active,
.mbr-slider .carousel-inner > .next,
.mbr-slider .carousel-inner > .prev {
    display: table;
}

.mbr-gallery .mbr-slider .carousel-inner > .active {
    display: block;
}

.mbr-gallery .mbr-slider .carousel-control,
.mbr-slider .carousel-control {
    position: fixed;

    top: 50%;
    bottom: auto;

    width: 54px;
    height: 54px;

    margin-top: -27px;

    background: rgba(160, 126, 73, 0.92);

    border: none;
    border-radius: 50%;

    color: #ffffff;

    line-height: 54px;

    opacity: 1;

    text-shadow: none;

    z-index: 1000000;

    transition: background 0.25s ease, transform 0.25s ease;
}

.mbr-gallery .mbr-slider .carousel-control:hover,
.mbr-slider .carousel-control:hover {
    background: #1f2530;
    color: #ffffff;
    transform: scale(1.06);
}

.mbr-slider .carousel-control.left {
    left: 24px;
    margin-left: 0;
}

.mbr-slider .carousel-control.right {
    right: 24px;
    margin-right: 0;
}

.mbr-slider .carousel-control .icon-next,
.mbr-slider .carousel-control .icon-prev {
    margin-top: -16px;
    font-size: 34px;
    line-height: 26px;
}

.mbr-gallery .mbr-slider .carousel-indicators {
    position: fixed;
    bottom: 24px;

    margin-bottom: 0 !important;

    z-index: 1000000;
}

.mbr-slider .carousel-indicators li,
.mbr-slider .carousel-indicators .active {
    width: 12px;
    height: 12px;

    margin: 4px;

    background: #ffffff;

    border: 2px solid #a07e49;
    border-radius: 50%;

    opacity: 0.75;
}

.mbr-slider .carousel-indicators .active {
    background: #a07e49;
    opacity: 1;
}

@media screen and (max-width: 991px) {
    .mbr-gallery .mbr-slider .carousel-control,
    .mbr-slider .carousel-control {
        width: 48px;
        height: 48px;

        margin-top: -24px;

        line-height: 48px;
    }

    .mbr-slider .carousel-control.left {
        left: 14px;
    }

    .mbr-slider .carousel-control.right {
        right: 14px;
    }
}

@media screen and (max-width: 600px) {
    .mbr-gallery .mbr-slider .carousel-control,
    .mbr-slider .carousel-control {
        top: auto;
        bottom: 22px;

        width: 42px;
        height: 42px;

        margin-top: 0;

        line-height: 42px;
    }

    .mbr-slider .carousel-control.left {
        left: 18px;
    }

    .mbr-slider .carousel-control.right {
        right: 18px;
    }

    .mbr-gallery .mbr-slider .carousel-indicators {
        display: none;
    }
}


/* =====================================================
   CARDS
===================================================== */

.mbr-cards-row {
    position: relative;

    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mbr-cards-col {
    padding-left: 0;
    padding-right: 0;
    padding-top: 80px;
    padding-bottom: 80px;
}

.mbr-cards .card {
    margin-bottom: 0;

    background: none;
    border: 0;

    text-align: center;
}

.mbr-cards .card-block {
    background: none;
    padding: 0;
}

.mbr-cards .card-img-top {
    width: auto;
    max-width: 100%;
    height: auto;

    border-radius: 0;
}

.mbr-cards .card-img + .card-block {
    padding-top: 2rem;
}

.mbr-cards .card-title {
    margin-bottom: 0;

    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.mbr-cards .card-subtitle {
    margin-bottom: 0;
    margin-top: -0.5rem;
    padding-bottom: 1rem;

    color: #5b5b5b;

    font-family: "Lora", serif;
    font-size: 0.875rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.78;
}

.mbr-cards .card-text {
    margin: 0;
}

.mbr-cards .card-text + .card-btn {
    padding-top: 1.375rem;
}

@media screen and (min-width: 992px) {
    .mbr-cards-row {
        display: table;
        table-layout: fixed;
        width: 100%;
    }

    .mbr-cards-row::after {
        display: none;
    }

    .mbr-cards-col {
        display: table-cell;
        float: none;
    }

    .mbr-cards > .container {
        width: 100%;
        max-width: none;

        margin: 0;
        padding: 0;
    }
}

@media screen and (max-width: 767px) {
    .mbr-cards-col {
        padding-top: 45px;
        padding-bottom: 45px;
    }
}


/* =====================================================
   TESTIMONIAL
===================================================== */

.mbr-testimonials .row > div {
    padding-bottom: 40px;
}

.mbr-testimonials .row > div:last-child {
    padding-bottom: 0;
}

.mbr-testimonial {
    margin-bottom: 0;

    border: 0;
    border-radius: 0;

    text-align: center;
}

.mbr-testimonial.card {
    background-color: transparent;
}

.mbr-testimonial .card-block {
    position: relative;

    padding: 1.875rem;

    background: #f4f4f4;
    color: #565656;

    font-family: "Lora", serif;
    font-size: 1.125rem;
    font-style: italic;
    font-weight: 400;
    line-height: 2;
}

.mbr-testimonial .card-block::after {
    content: "";

    position: absolute;
    bottom: -7px;
    left: 50%;

    display: block;

    width: 14px;
    height: 14px;

    margin-left: -7px;

    background-color: inherit;

    transform: rotate(45deg);
}

.mbr-testimonial .card-footer {
    position: relative;
    z-index: 2;

    padding: 0;

    background: none;
    border: 0;
}

.mbr-author-img {
    margin-top: -2.5rem;
}

.mbr-author-img img {
    width: 5rem;
    height: 5rem;
}

.mbr-author-name {
    color: #2d2d2d;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.3;

    padding-top: 1.25rem;
}

.mbr-author-desc {
    color: #a7a7a7;

    font-family: "Lora", serif;
    font-size: 0.875rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
}


/* =====================================================
   SUBSCRIBE
===================================================== */

.mbr-subscribe {
    position: relative;

    height: 4rem;
    padding: 0;

    background: #f5f5f5;

    border: 1px solid #e8e8e8;
    border-radius: 4px;
}

.mbr-subscribe .form-control {
    position: relative;
    top: 0.4375rem;

    background: none;
    border: 0;
}

.mbr-subscribe .input-group-btn {
    position: static;
}

.mbr-subscribe .btn {
    margin-bottom: 0;
    margin-right: 0.5625rem;

    border-radius: 4px !important;
}

.mbr-subscribe-dark {
    background: none;
    border-color: rgba(255, 255, 255, 0.2);
}

.mbr-subscribe-dark .form-control {
    color: #ffffff;
}


/* =====================================================
   FOOTER
===================================================== */

.mbr-small-footer {
    padding: 1.75rem 0;

    background: #323232;
    color: #acacac;

    font-size: 0.8125rem;
}

.mbr-small-footer p {
    margin-bottom: 0;
}

.mbr-small-footer a {
    color: #048fd2;
}

.mbr-small-footer a:hover {
    color: #a07e49;
    text-decoration: none;
}

.mbr-footer {
    color: #ffffff;

    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

@media screen and (min-width: 1280px) {
    .mbr-footer {
        padding-left: 6.25rem;
        padding-right: 6.25rem;
    }
}

.mbr-footer > .row,
.mbr-footer > .container > .row {
    margin-left: 0;
    margin-right: 0;
}

.mbr-footer > .container {
    padding-left: 0;
    padding-right: 0;
}

.mbr-footer-content h1,
.mbr-footer-content h2,
.mbr-footer-content h3,
.mbr-footer-content h4,
.mbr-footer-content p strong,
.mbr-footer-content strong,
.mbr-footer .mbr-contacts h1,
.mbr-footer .mbr-contacts h2,
.mbr-footer .mbr-contacts h3,
.mbr-footer .mbr-contacts h4,
.mbr-footer .mbr-contacts p strong,
.mbr-footer .mbr-contacts strong {
    color: #c9c9c9;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.3;

    margin-bottom: 1.875em;
}

.mbr-footer-content p,
.mbr-footer .mbr-contacts p {
    color: #ffffff;
    font-size: 0.875rem;
    margin-bottom: 0;
}

.mbr-footer-content ul,
.mbr-footer .mbr-contacts ul {
    margin: 0;
    padding: 0;

    line-height: 1.8;
    list-style: none;
}

.mbr-footer-content li,
.mbr-footer .mbr-contacts li {
    position: relative;

    display: block;

    width: 100%;

    padding: 0.72em 0 0.72em 1.8em;

    color: #bcbcbc;

    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);

    font-family: "Raleway", Arial, sans-serif;
    font-size: 0.875rem;
    line-height: 1.8;

    overflow: hidden;
}

.mbr-footer-content li:last-child,
.mbr-footer .mbr-contacts li:last-child {
    border-bottom: 0;
}

.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
    content: "";

    position: absolute;
    left: 0;
    top: 50%;

    width: 0.36em;
    height: 0.36em;

    margin-top: -0.18em;

    background: #a07e49;
}

.mbr-footer-content li a,
.mbr-footer .mbr-contacts li a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
    color: #a07e49;
}


/* =====================================================
   COMPANY
===================================================== */

.mbr-company {
    margin-bottom: 0;

    background: none;
    border: 0;
    border-radius: 0;
}

.mbr-company .card-img-top {
    width: auto;
    height: 58px;

    margin-bottom: 1.57rem;
}

.mbr-company .card-block {
    background: none;
    padding: 0;
}

.mbr-company .card-text {
    color: #acacac;

    font-size: 0.875rem;

    margin-bottom: 1.57rem;
}

.mbr-company .list-group {
    display: block;
}

.mbr-company .list-group-item {
    display: table;

    width: 100%;

    padding: 0 0 1.375rem 0;

    background: none;
    border: 0;
}

.mbr-company .list-group-icon,
.mbr-company .list-group-text {
    display: table-cell;

    height: 2.25rem;

    position: relative;

    vertical-align: middle;
}

.mbr-company .list-group-icon {
    width: 3.5rem;

    padding-right: 1.25rem;

    text-align: center;
}

.mbr-company .list-group-text {
    color: #ffffff;

    font-family: "Raleway", Arial, sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
}

.mbr-company .list-group-item.active,
.mbr-company .list-group-item.active:hover {
    background: none;
}

.mbr-company .list-group-item.active .list-group-text {
    color: #048fd2;
}


/* =====================================================
   ARROW / BACK TO TOP
===================================================== */

.mbr-arrow {
    position: absolute;
    bottom: 48px;
    left: 0;

    width: 100%;

    text-align: center;
}

.mbr-arrow-up {
    position: fixed;

    right: 24px;
    bottom: 24px;

    text-align: right;

    z-index: 5000;
}

.mbr-arrow a,
.mbr-arrow-up a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    color: #ffffff;
    background: rgba(160, 126, 73, 0.9);

    border-radius: 50%;

    text-decoration: none;
    outline: none !important;

    transition: all 0.3s ease-in-out;
}

.mbr-arrow a:hover,
.mbr-arrow-up a:hover {
    background: #1f2530;
}

.mbr-arrow-icon,
.mbr-arrow-up-icon {
    display: block;
}

.mbr-arrow-icon::before {
    content: "\203a";

    display: inline-block;

    font-family: serif;
    font-size: 32px;
    line-height: 1;
    font-style: normal;

    transform: rotate(90deg);
}

.mbr-arrow-up-icon::before {
    content: "\203a";

    display: inline-block;

    font-family: serif;
    font-size: 32px;
    line-height: 1;
    font-style: normal;

    transform: rotate(-90deg);
}

@media screen and (max-width: 768px) {
    .mbr-arrow-up {
        right: 16px;
        left: auto;
        bottom: 16px;

        transform: none;
        text-align: right;
    }
}


/* =====================================================
   ICONFONT
===================================================== */

a.mbr-iconfont:hover {
    text-decoration: none;
}

.mbr-iconfont.mbr-iconfont-btn,
.mbr-buttons__btn .mbr-iconfont {
    position: relative;
    top: -0.12em;

    padding-right: 0.4em;

    font-size: 1.6em;
    line-height: 0.5em;

    vertical-align: text-bottom;
    text-decoration: none;
}

.mbr-iconfont.mbr-iconfont-btn-parent,
.link .mbr-iconfont {
    position: relative;
    top: -0.3em;

    font-size: 1.4em;

    vertical-align: middle;
}

.mbr-iconfont.mbr-iconfont-menu,
.mbr-iconfont.mbr-iconfont-ext__menu {
    color: #ffffff;
    font-size: 37px;
    text-decoration: none;
}

.mbr-iconfont.mbr-iconfont-features2,
.mbr-iconfont.mbr-iconfont-features3 {
    display: block;

    margin-top: 0.2em;

    color: #f1c050;

    font-size: 119px;
    text-align: center;
    text-decoration: none;
}

.mbr-iconfont.mbr-iconfont-features4,
.mbr-iconfont-features7 {
    display: block;

    color: #000000;

    font-size: 50px;
    text-align: center;
    text-decoration: none;
}

.mbr-iconfont-features7 {
    color: #ffffff;
}

.mbr-iconfont.mbr-iconfont-msg-box4,
.mbr-iconfont.mbr-iconfont-msg-box5,
.mbr-iconfont.mbr-iconfont-header2 {
    font-size: 250px;
    text-decoration: none;
}

.mbr-iconfont.mbr-iconfont-msg-box4,
.mbr-iconfont.mbr-iconfont-msg-box5 {
    color: #232323;
}

.mbr-iconfont.mbr-iconfont-header2 {
    color: #ffffff;
}

.mbr-iconfont.mbr-iconfont-contacts1 {
    color: #9c9c9c;
    font-size: 119px;
    text-decoration: none;
}

.mbr-iconfont.mbr-iconfont-logo-contacts3 {
    color: #9c9c9c;
    font-size: 58px;
    text-decoration: none;

    margin-bottom: 1.57rem;
}

.mbr-iconfont-company-contacts3 {
    color: #cfcfcf;
    font-size: 22px;
}

.mbr-iconfont-company-contacts5 {
    color: #000000;
    font-size: 22px;
}


/* =====================================================
   YARDIMCI SINIFLAR
===================================================== */

.hidden {
    visibility: hidden;
}

.visible {
    visibility: visible;
}

.content-size {
    width: auto;
}

.image-size {
    width: auto;

    margin: auto;

    text-align: center;
    vertical-align: middle;
}

.image-size .mbr-figure {
    padding-top: 3px;
}

@media screen and (max-width: 768px) {
    .image-size {
        width: 100% !important;
    }
}

.mbr-valign-top {
    vertical-align: top;
}

.form-asterisk {
    position: absolute;
    top: -2px;

    font-family: initial;
    font-weight: normal;
}

.row-sm-offset {
    margin-left: -0.625rem;
    margin-right: -0.625rem;
}

.row-sm-offset > * {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
}


/* =====================================================
   LOADER
===================================================== */

@keyframes btnCircleLoading {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;

    display: none;

    width: 26px;
    height: 26px;

    margin-left: -13px;
    margin-top: -13px;

    border-radius: 50%;
    border: 4px rgba(255, 255, 255, 0.25) solid;
    border-top-color: #ffffff;

    animation: btnCircleLoading 0.6s infinite linear;
}

.btn-loading {
    position: relative;
}

.btn-loading .btn-text {
    visibility: hidden;
}

.btn-loading .btn-loader {
    display: block;
}


/* =====================================================
   BUILDER / ARTICLE FIX
===================================================== */

html.is-builder .mbr-cards .card-img + .card-block,
html.is-builder .mbr-cards .card-text + .card-btn,
html.is-builder .mbr-cards .card-title + *,
html.is-builder .mbr-cards .card-title + .card-btn,
html.is-builder .mbr-cards .card-subtitle + .card-btn {
    padding-top: 0;
}

.article .display-2 {
    margin-bottom: 0;
}

.article .mbr-section-title + .mbr-section-subtitle {
    margin-top: 4px;
}

.article .mbr-section-title + .lead p {
    margin-top: 1.5625rem;
}

.article .mbr-section-title + div .btn,
.article .lead + div .btn {
    margin-top: 2.3125rem;
}

.article .mbr-section-subtitle {
    margin-bottom: 0;
}


/* =====================================================
   ENGINE GİZLEME
===================================================== */

.engine {
    position: absolute;

    top: 0;
    left: -2400px;

    padding: 0;

    text-indent: -2400px;
    text-align: center;
}
 

/* =====================================================
   EN SERT GALERİ FIX
   Galeri içindeki tüm itemları inline-grid mantığıyla yan yana zorlar
===================================================== */

.mbr-gallery .mbr-gallery-row {
    display: block !important;
    font-size: 0 !important;
}

.mbr-gallery .mbr-gallery-item {
    display: inline-block !important;
    vertical-align: top !important;

    float: none !important;
    clear: none !important;

    width: 25% !important;
    max-width: 25% !important;
    min-width: 25% !important;

    padding: 8px !important;

    font-size: 16px !important;

    aspect-ratio: 4 / 4 !important;
}

.mbr-gallery .mbr-gallery-item > a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

.mbr-gallery .mbr-gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

@media screen and (max-width: 991px) {
    .mbr-gallery .mbr-gallery-item {
        width: 33.333% !important;
        max-width: 33.333% !important;
        min-width: 33.333% !important;
    }
}

@media screen and (max-width: 600px) {
    .mbr-gallery .mbr-gallery-item {
        width: 50% !important;
        max-width: 50% !important;
        min-width: 50% !important;
    }
}

@media screen and (max-width: 380px) {
    .mbr-gallery .mbr-gallery-item {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
    }
}



/* =====================================================
   ÜRÜN GALERİ HOVER ICON-FOCUS DÜZELTME
===================================================== */

/* Fotoğrafı saran div tıklanabilir alan gibi çalışsın */
.mbr-gallery .mbr-gallery-item > div {
    position: relative !important;
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    cursor: pointer !important;

    overflow: hidden !important;
}

/* Hover ikonunun ana yuvarlak gövdesi */
.mbr-gallery .mbr-gallery-item .icon-focus {
    position: absolute !important;

    left: 50% !important;
    top: 50% !important;

    width: 54px !important;
    height: 54px !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: translate(-50%, -50%) scale(0.85) !important;

    opacity: 0 !important;
    visibility: hidden !important;

    z-index: 10 !important;

    display: block !important;

    background: rgba(160, 126, 73, 0.94) !important;

    border: 2px solid #ffffff !important;
    border-radius: 50% !important;

    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28) !important;

    font-size: 0 !important;
    line-height: 0 !important;

    overflow: hidden !important;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease !important;
}

/* Hover olunca ikon görünsün */
.mbr-gallery .mbr-gallery-item > div:hover .icon-focus {
    opacity: 1 !important;
    visibility: visible !important;

    transform: translate(-50%, -50%) scale(1) !important;
}

/* Eski bozuk font ikonlarını kapat */
.mbr-gallery .mbr-gallery-item .icon-focus::before,
.mbr-gallery .mbr-gallery-item .icon-focus::after {
    content: "" !important;

    position: absolute !important;

    left: 50% !important;
    top: 50% !important;

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    background: #ffffff !important;

    transform: translate(-50%, -50%) !important;
}

/* Artı ikonunun dikey çizgisi */
.mbr-gallery .mbr-gallery-item .icon-focus::before {
    width: 2px !important;
    height: 24px !important;
}

/* Artı ikonunun yatay çizgisi */
.mbr-gallery .mbr-gallery-item .icon-focus::after {
    width: 24px !important;
    height: 2px !important;
}

/* Fotoğraf hover efekti */
.mbr-gallery .mbr-gallery-item > div img {
    transition: transform 0.25s ease, opacity 0.25s ease !important;
}

.mbr-gallery .mbr-gallery-item > div:hover img {
    transform: scale(1.02) !important;
    opacity: 0.94 !important;
} 

