/* Ana Bar Konteyneri (Tüm Sistemi Taşır) */
.fixed-support-bar {
    position: fixed;
    right: 6px;
    top: 3px;
    width: 116px;
    z-index: 1000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Tıklanacak olan görünen kısım */
#support-trigger-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: white;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
    border-radius: 50px;
    flex-direction: column;
    width: 125px;
}

/* Resmin etrafındaki animasyonu içeren sarmalayıcı */
.support-image-wrapper {
    position: relative; /* Animasyon dalgaları için referans noktası */
    width: 50px;
    height: 50px;
    flex-shrink: 0; /* Küçülmesini engeller */
}

.support-image-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

/* ---- YENİ RİPPLE (DALGA) ANİMASYONU ---- */
.support-image-wrapper::before,
.support-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    animation: ripple_effect 3s infinite;
    z-index: 0;
}

/* İkinci dalganın 1.5 saniye sonra başlamasını sağlar (ardışık etki) */
.support-image-wrapper::after {
    animation-delay: -1.5s;
}

@keyframes ripple_effect {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(2.5); /* Dalganın ne kadar büyüyeceği */
        opacity: 0;
    }
}

/* "Canlı Destek" Yazısı */
#support-trigger-bar span {
    font-size: 12px;
    font-weight: 600;
    margin-left: 0;
    color: #ffffff;
    background: #ff671f;
    padding: 0px 6px 2px;
    border-radius: 6px;
}


/* AÇILACAK SEÇENEK KARTI */
#support-options-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    top: 100%; /* Barın hemen üstünde */
    right: 0px;
    margin-bottom: 15px;
    width: 250px;

    /* Gizleme/Gösterme Animasyonu */
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.25s ease-in-out;
}

#support-options-card.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.support-option {
    display: flex;
    align-items: center;
    padding: 12px;
    text-decoration: none;
    color: #333;
    border-radius: 10px;
    transition: background-color 0.2s ease;
}
.support-option:hover { background-color: #f5f5f5; }
.support-option i { font-size: 24px; margin-right: 15px; width: 25px; text-align: center; }
.support-option .fa-whatsapp { color: #25D366; }
.support-option .fa-phone { color: #3498db; }
.support-option span { font-size: 16px; font-weight: 600; }


/* ---- MASAÜSTÜ İÇİN AYARLAR (Responsive) ---- */
@media (min-width: 768px) {
    .fixed-support-bar {
        width: auto; /* Genişliği içeriğe göre ayarlar */
        left: 20px;
        bottom: 20px;
        border-radius: 50px; /* Kenarları yuvarlaklaştırır */
    }

    #support-trigger-bar {
        padding: 8px 20px 8px 8px; /* İç boşlukları ayarlar */
        justify-content: flex-start; /* İçeriği sola yaslar */
    }
    
    #support-options-card {
        left: 0;
    }
}
@media (min-width: 600px) {
    .fixed-support-bar{
        display: none!important;
    }
}
/* YENİ EKLENECEK MODERN STİLLER */

/* 1. KARTIN KENDİSİ - PARLAMA EFEKTİ */
/* Var olan box-shadow'a ek olarak mavi tonlarında bir parlama ekliyoruz. */
#support-options-card {
    box-shadow: 0 0 30px rgba(52, 152, 219, 0.25), 0 6px 20px rgba(0, 0, 0, 0.1);
}


/* 2. KART AÇILDIĞINDA SEÇENEKLERİN SIRAYLA GELME ANİMASYONU */

/* Animasyon için başlangıç durumu (başta görünmez ve alttalar) */
.support-option {
    opacity: 0;
    transform: translateY(20px);
}

/* Kart göründüğünde animasyonu tetikle */
#support-options-card.show .support-option {
    opacity: 1; /* Görünür yap */
    transform: translateY(0); /* Eski yerine getir */
    animation: fadeInUp 0.4s ease-out; /* Animasyonu uygula */
    animation-fill-mode: both;
}

/* Her seçeneğe farklı gecikme vererek sırayla gelmelerini sağla */
#support-options-card.show .support-option:nth-child(1) {
    animation-delay: 0.15s;
}

#support-options-card.show .support-option:nth-child(2) {
    animation-delay: 0.25s;
}

/* Animasyonun tanımı (Aşağıdan yukarı kayarak belirme) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* 3. SEÇENEKLERİN ÜZERİNE GELİNCE İKONLARIN HAREKET ETMESİ */

/* Üzerine gelince ikona animasyon uygula */
.support-option:hover i {
    animation: wiggle 0.5s ease;
}

/* İkonlar için sallanma animasyonu */
@keyframes wiggle {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
    75% { transform: rotate(-5deg); }
    90% { transform: rotate(5deg); }
}    
    

/******************** contentSpy CSS ********************/
/* --- NİHAİ STICKY SIDEBAR CSS --- */
.sidebar.sidebar_1 {
    margin-bottom: 30px;
}
/* Ana Kapsayıcı: Flexbox ile kolonları oluşturuyoruz */
.content-spy-wrapper {
    display: flex;
    align-items: flex-start; /* Dikeyde hizalama - Sticky için en önemli kural */
    gap: 30px; /* İki kolon arasındaki boşluk */
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
}

/* Sol Kolon: Yapışkan Menü */
.sticky-sidebar-nav {
    flex: 0 0 280px; /* Sabit 280px genişlik */
    width: 280px;
    position: -webkit-sticky; /* Safari uyumluluğu */
    position: sticky;
    top: 125px; /* Ekranın üstünden yapışacağı mesafe */
}

/* Sağ Kolon: Ana İçerik */
.content-spy {
    flex: 1; /* Kalan tüm alanı kapla */
    min-width: 0; /* İçerik taşmalarını önle */
}

/* Menü Linkleri ve Başlık Stilleri */
.sticky-sidebar-nav h3 {
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 15px;
    border-left: 3px solid #007bff;
    padding-left: 10px;
}
.sticky-sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sticky-sidebar-nav ul li a {
    display: block;
    padding: 10px 15px;
    color: #555;
    text-decoration: none;
    border-radius: 6px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}
.sticky-sidebar-nav ul li a:hover {
    background-color: #f1f3f4;
}
.sticky-sidebar-nav ul li a.active {
    background-color: #e7f3ff;
    color: #007bff;
    font-weight: bold;
    border-left-color: #007bff;
}

/* Tıklayınca doğru yere kayması için H2 başlıklarına ayar */
.content-spy h2 {
    padding-top: 110px;
    margin-top: -90px;
}
/* Mobil cihazlarda masaüstü menüyü gizle */
@media (max-width: 992px) {
    .content-spy-wrapper{
        margin: -40px 0;
        width: 100%;
        padding: 0 15px;
    }
    .sticky-sidebar-nav {
        display: none;
    }
    .content-spy {
        width: 100%;
        flex-basis: 100%;
    }
    .content-spy h2 {
        padding-top: 20px;
        margin-top: 0;
    }
}


/* Mobildeki altta çıkan gösterge ve açılır menü stilleri (Bunlar zaten çalışıyordu, aynen kalabilir) */
.mobile-spy-indicator {
    position: fixed;
    bottom: 108px;
    left: -100%;
    background-color: #171c8f;
    color: #ffffff;
    width: 77px;
    padding: 12px 20px;
    border-radius: 0 50px 50px 0;
    box-shadow: 0px 0px 1px 1px #fd7b3e;
    cursor: pointer;
    transition: left 0.5s ease-in-out;
    z-index: 999;
    letter-spacing: 1px;
    display: flex; /* İçindeki başlık ve ikonu yan yana getirmek için */
    align-items: center; /* Dikeyde ortalamak için */
    gap: 15px; /* Başlık ve ikon arasına boşluk koymak için */
    padding-right: 25px; /* İkon için sağda biraz daha boşluk */
    justify-content: space-between;
}
/* --- MOBİL GÖSTERGE İÇİN EK STİLLER --- */


/* Yeni eklenen ikonun kapsayıcısı için stil */
.indicator-icon-wrapper {
    font-size: 20px;
    color: #fff;
    /* Dikkat çekmek için hafif bir "nefes alıp verme" animasyonu */
    animation: pulse-animation 2s infinite ease-in-out;
}

/* Animasyonun kendisi */
@keyframes pulse-animation {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.9;
    }
}
.mobile-spy-indicator.visible { left: 0; }
.indicator-title-wrapper { position: relative; height: 20px; overflow: hidden; }
.indicator-title-wrapper span { position: relative; transition: transform 0.4s ease, opacity 0.4s ease; font-weight: 600; }
.indicator-title-wrapper span.old { transform: translateY(100%); opacity: 0; }
.indicator-title-wrapper span.new { transform: translateY(-100%); }

.mobile-nav-overlay {
    position: fixed; top: 0; left: -100%; width: 80%; max-width: 300px; height: 100vh;
    background-color: #fff; box-shadow: 2px 0 15px rgba(0,0,0,0.2); transition: left 0.4s ease-in-out;
    z-index: 1000; padding: 60px 20px 20px 20px; overflow-y: auto;
}
.mobile-nav-overlay.is-open { left: 0; }
.mobile-nav-overlay .close-mobile-menu {
    position: absolute; top: 15px; right: 20px; font-size: 32px; color: #333;
    background: none; border: none; cursor: pointer;
}
.mobile-nav-overlay ul { list-style: none; padding: 0; }
.mobile-nav-overlay ul li a {
    display: block; padding: 15px 10px; font-size: 18px; color: #333;
    text-decoration: none; border-bottom: 1px solid #f0f0f0;
}

@media (min-width: 992px) {
    .mobile-nav-indicator, .mobile-spy-indicator.visible{
        display: none;
    }
}
/******************** contentSpy CSS SON ********************/
/*********************PRELOADER CSS **************************
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}
.loader-spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #007bff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/*********************PRELOADER CSS SON **************************/

/********************** instagram css *************************/

.dynamic-instagram-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    margin: 40px 0;
    border-radius: 12px;
    color: #ffffff;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.dynamic-instagram-cta .insta-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.dynamic-instagram-cta .insta-text div {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.dynamic-instagram-cta .insta-text p {
    margin: 0;
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 500;
}

.dynamic-instagram-cta .insta-button {
    margin-left: auto;
    flex-shrink: 0;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dynamic-instagram-cta .insta-button:hover {
    background-color: #fff;
    color: #d6249f;
}
@media (max-width: 768px) {
    .dynamic-instagram-cta {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .dynamic-instagram-cta .insta-icon {
        margin-right: 0;
    }
    .dynamic-instagram-cta .insta-button {
        margin-left: 0;
        margin-top: 10px;
    }
}


/************* bölgelerdeki görseller CSS *****************/
.dynamic-content-image {
    float: right;
    width: 50%;
    margin-left: 15px;
    margin-bottom: 15px;
    margin-right: 0;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0; 
    max-width: 400px;
}

@media (max-width: 768px) {
    .dynamic-content-image {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 20px;
        max-width: none;
    }
}
/************* bölgelerdeki görseller CSS SON *****************/


/************* Müşteri Yorumu CSS *****************/
.google-logo{
    display: none;
}
.g-reviews-section {
    width: 100%;
    padding: 40px 0;
    margin-bottom: 30px;
    background-color: #f8f9fa;
}
.splide__container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}
.splide__slide {
    padding: 10px; /* Kartlar arası boşluk için */
    box-sizing: border-box;
}

.g-review-card-inner {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.g-review-card-inner:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.g-review-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.g-review-card-header .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #546E7A; /* Profesyonel bir renk */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin-right: 12px;
    flex-shrink: 0;
}

.g-review-card-header .author-info .author-name {
    font-weight: 600;
    color: #202124;
    font-size: 15px;
}

.g-review-card-header .author-info .review-source {
    font-size: 13px;
    color: #70757a;
}

/* Yıldızlar */
.g-review-card .stars {
    color: #fbbc05;
    margin-bottom: 12px;
    font-size: 14px;
}

/* Yorum metni */
.g-review-card .comment {
    font-size: 14px;
    line-height: 1.6;
    color: #3c4043;
    flex-grow: 1;
}

.splide__arrow {
    background: #fff;
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}
.splide__arrow svg {
    fill: #333;
}
.splide__pagination__page.is-active {
    background: #007bff;
}
i.fas.fa-star {
    color: #fcbf02;
}
.splide__pagination {
    bottom: -1.5em;
}
/************* Müşteri Yorumu CSS SON *****************/

/***************** Rastgele Bilgi Kutucuğunun Ana Kapsayıcısı CSS ******************/
.dynamic-info-box {
    display: flex; 
    align-items: flex-start;
    background-color: #f0f7ff;
    border-left: 5px solid #007bff;
    padding: 20px;
    margin-bottom: 30px; 
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.dynamic-info-box .info-icon {
    font-size: 24px; 
    color: #007bff; 
    margin-right: 15px; 
    margin-top: 2px; 
}
.dynamic-info-box .info-content {
    flex: 1; 
}
.dynamic-info-box .info-content h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}
.dynamic-info-box .info-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}
/***************** Rastgele Bilgi Kutucuğunun Ana Kapsayıcısı CSS SON ******************/

/******************* İÇERİKLERDEKİ TABLOLAR CSS ********************/
.content table {
    display: block;
    width: fit-content;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-collapse: collapse;
}
.content table {
  border-collapse: separate; /* Border-radius için separate kullanımı */
  border-spacing: 0;
  margin: 20px 0;
  font-size: 16px;
  text-align: left;
  border: 1px solid #ddd;
  border-radius: 8px; /* Tablonun köşelerini yuvarlar */
  overflow: hidden; /* Border-radius düzgün çalışır */
}

.content table th, 
.content table td {
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
}

.content table th {
  background-color: #f4f4f4;
  font-weight: bold;
  color: #333;
}

.content table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.content table tr:hover {
  background-color: #f1f1f1;
  cursor: pointer;
}

.content table td {
  color: #333;
}

/* Soru hücreleri için özel stil */
.content table td:first-child {
  background-color: #30e3d221; /* Soruların arka planı için farklı bir renk */
  font-weight: bold; /* Soruların daha belirgin olması için kalın yazı */
  color: #000000; /* Soruların metin rengi */
}

.content table tr:last-child td {
  border-bottom: none; /* Son satırın alt kenarını kaldırır */
}
@media (max-width:767px){
    .content table {
        width: 100%;
        overflow-x: auto;
        border-collapse: collapse;
    }
}
/******************* İÇERİKLERDEKİ TABLOLAR CSS SON ********************/

/* Butonları yan yana getiren ve aralarında boşluk bırakan kapsayıcı stil */
.cta-buttons-container {
    display: flex;
    justify-content: center; /* Butonları ortalamak için */
    align-items: center;
    flex-wrap: wrap; /* Mobil cihazlarda butonların alt alta gelmesi için */
    gap: 15px; /* Butonlar arasındaki boşluk */
    margin: 30px 0; /* Alanın üst ve alt boşluğu */
}

/* Tüm butonlar için ortak temel stil */
.btn-cta {
    padding: 12px 25px;
    border: none;
    border-radius: 8px; /* Kenar yuvarlaklığı */
    font-size: 16px;
    font-weight: bold;
    color: #ffffff; /* Yazı rengi */
    text-decoration: none; /* Alt çizgiyi kaldır */
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

/* Butonun üzerine gelince hafifçe büyüme efekti */
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Telefon Butonu Stili (Mavi) */
.btn-cta-phone {
    background-color: #007bff;
}
.btn-cta-phone:hover {
    color: white;
    background-color: #0069d9;
}


/* WhatsApp Butonu Stili (Yeşil) */
.btn-cta-whatsapp {
    background-color: #25D366;
}
.btn-cta-whatsapp:hover {
    color: white;
    background-color: #1EBE57;
}

/* Form Butonu Stili (Turuncu) */
.btn-cta-form {
    background-color: #ff9800;
}
.btn-cta-form:hover {
    color: white;
    background-color: #e68900;
}

.page-header.breadcrumb11{
    overflow: visible;
    background: #ececec;
}
.page-header.breadcrumb11 a span{
    color: #171c8f;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.page-header.breadcrumb11 .breadcrumb > li + li:before{
    color: #171c8f;
}
.page-header.breadcrumb11 .breadcrumb > li.active {
    color: #171c8f61;
    letter-spacing: 1px;
}

.ReviewBackground__Container-sc-b270746f-0.GAUjY.es-review-background-container{
    background-color: white;
}

section.section.p0{
    padding: 0;
}
/******************** FAQ CSS **********************/
.panel .panel-default .panel-body {
    padding: 30px;
}
.panel .panel-body p{
    letter-spacing: 1px;
}
.content h4.panel-title {
    background: #ededed;
    padding: 20px;
    font-size: 24px;
}
/******************** FAQ CSS SON **********************/
/*************************** SABİT FIXED BUTTON CSS ******************************/
.custom-fixed-btn{
    line-height: 22px;
    padding: 7px 11px;
    font-size: 15px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 14px;
    cursor: pointer;
    box-shadow: 0 0 50px rgba(0,0,0,0.2);
    left: 12px;
    width: auto;
    position: fixed;
    z-index: 9999999;    
}
.custom-fixed-btn:hover{
    color: #ffffff;
    text-decoration:none;
}
.custom-fixed-btn-whatsapp:hover{
    background: #114232;
}
.custom-fixed-btn-whatsapp{
    bottom: 6px;
    background-color: #00461a;
    color: #fff;
    border: 3px solid #407c00;
    border-radius: 30px;
}
.custom-fixed-btn-mobil{
    bottom: 58px;
    background-color: #203864;
    color: #fff;
}
.custom-fixed-btn-form{
    bottom: 106px;
    background: #ea7600de;
    color: #fff;
}
.custom-fixed-btn-form img{
    animation: swing 2s infinite;
    width: 81px;
    height: 81px;
}
@media (min-width: 768px){
    .custom-fixed-btn {
        padding: 8px 13px !important;
        font-size: 17px !important;
        font-weight:bold;
    }
    .custom-fixed-btn.custom-fixed-btn-form{
        padding: 0;
    }
}
/*************************** SABİT FIXED BUTTON CSS SON ******************************/
.iletisimcta2 i {
    font-size: 44px;
    margin-left: 30px;
    float: inline-end;
    margin-top: 12px;
    padding: 20px;
    color: white;
}
.iletisimcta h2, .iletisimcta  p{
    color: white;
}
@media (max-width: 767px){
    .iletisimcta {
        text-align: center;
        display: flex;
    }
}

@media (min-width: 992px){
    .hizmetgorsel img{
        border-radius: 100px;
        box-shadow: 0 0 19px #dddddd;
        padding: 30px;
        background: white;
    }
}
.home-concept .project-image .box-image .big-circle .line.animated-line {
    fill: #ffffff;
    stroke: #171c8f
}
.home-concept .project-image{
    width: 670px;
    margin: 91px 0 0 0px;
    padding-bottom: 60px;
}
.col-half-section-right .btn-classic-form{
    border: 1px solid #171c8f;
}
.home-concept .project-image .box-image .big-circle{
    left: 59%;
}
.home-concept .project-image .box-image .big-circle .line{
    fill: #171c8f14;
}
.home-concept .fc-slideshow img {
    max-height: 425px;
    max-width: 425px;
    min-height: 425px;
    min-width: 425px;
}
.home-concept .fc-slideshow {
    max-width: 425px!important;
    height: 425px!important;
    width: 321px;
}  
@media (max-width: 580px) {
    .home-concept.appear-animation.mt15.animated.appear-animation-visible{
        display: none!important;
    }
    .home-concept .project-image .box-image .big-circle .line {
        fill: #ffffff;
        stroke: #171c8f
    }
    .home-concept .fc-slideshow img {
        max-height: 345px!important;
        max-width: 345px!important;
        min-height: 345px!important;
        min-width: 345px!important;
    }
    .home-concept .project-image .box-image .big-circle {
        left: 50%;
    }
    .home-concept .fc-slideshow {
        width: 346px;
        max-width: 346px !important;
        height: 345px !important;
    }    
    .home-concept .project-image {
        max-width: inherit;
    }    
}

@media screen and (min-width: 768px){
    #header ul.header-social-icons.social-icons.hidden-xs{
        float: left;
    }
    #header .header-menu-top-wrp{
        float: right;
    }
    .header-nav-top .nav.nav-pills>li:first-child{
        float: right;
    }
    .thumb-info-caption-text h4{
        min-height:81px;
    }
    .product-details-area.product-details-area-1 h2{
        min-height:44px;
    }
}

/*******Blog listeleme CSS*************/
.custom-thumb-info-post-infos ul li{
    width: 95%!important;
}
.custom-thumb-info-2 .thumb-info-caption{
    width: 100%;
    margin: 0;
    padding: 10px;
    margin-top: -35px;
}
.custom-thumb-info-2 .thumb-info-caption p{
    line-height: 22px;
}
.recent-posts .owl-carousel .owl-stage-outer{
    padding-bottom: 30px;
}
.recent-posts h4 {
    font-size: 19px;
}


/***BLOG YORUM İPTAL CSS**/
article.post .post-meta > span{
    display: none;
}

/**Referans CSS**/
.product .product-name {
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0;
}

.block{
    display: block;
}
a.butn-dark{
    z-index: 2;
    font-weight: 400;
    background: #171c8f;
    color: #fff!important;
    padding: 13px 12px;
    margin: 0;
    position: relative;
    font-size: 15px;
    letter-spacing: 0;
}
a.butn-dark:hover:after{
    width: 100%;
    left: 0;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
}
a.butn-dark:hover span{
    color: #fff;
}

a.butn-dark span {
    position: relative;
    z-index: 2;
}
a.butn-dark:after{
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 100%;
    z-index: -1;
    background: #BE0006;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
@media screen and (min-width: 768px){
    
    .product-essential .product-actions a.btn-success{
        padding: 13px 12px;
    }
    a.btn-success:hover:after{
        width: 100%;
        left: 0;
        -webkit-transition: width 0.3s ease;
        transition: width 0.3s ease;
    }
    a.btn-success:hover span{
        color: #fff;
    }
    
    a.btn-success span {
        position: relative;
        z-index: 2;
    }
    a.btn-success:after{
        content: '';
        width: 0;
        height: 100%;
        position: absolute;
        bottom: 0;
        left: 100%;
        z-index: 0;
        background: #171c8f;
        color: #fff;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
}

.dnone{
    display: none!important;
}

.vitrin .owl-carousel.owl-drag .owl-item{
    border: 1px solid #eeeeee;
    margin-right: 10px;
    padding: 10px 0 10px 10px;
}
/*İLAN LİSTE CSS*/
.ilan-liste-meta li {
    padding-left: 0;
}
.label-default {
    background-color: #1B3A66;
}
.g5ere__lpc-bottom{
    position: absolute;
    z-index: 99;
    float: right;
    right: 0;
    top: 181px;
    bottom: auto;
    padding: 10px 10px 10px 50px;
    background: linear-gradient(270deg, white, transparent 61%);
    width: 100%;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}
.page- .g5ere__lpc-bottom{
    top: 173px;
}
.g5ere__lpp-price{
    font-size: 24px;
    font-weight: 700;
    color: #1B3A66;
}
.g5ere__loop-property-actions a{
    float: right;
}
.ilan-liste-wrp>li{
    width: 49%;
    margin-right: 1%;
    margin-bottom: 1%;
    border: 1px solid #eeeeee;
    transition: .3s;
}
.ilan-liste-wrp>li:hover{
    box-shadow: 0 0 13px #ddd;
}
.ilan-liste-meta{
    display: none;
}
.ilan-sidebar button{
    min-height: 47px;
}
/*İLAN LİSTE CSS SON*/


/*İLAN CSS*/

.ilan .product-details-box .product-name{
    font-weight: 700;
}
.ilan{
    z-index: 99;
}
.ilan .emlak-ozellikleri li {
    color: #8297a4;
}
.ilan .emlak-ozellikleri .alert {
    border: 1px solid #1B3A66;
    background: #1B3A661f;
}
.ilan .emlak-ozellikleri h4 {
    color: #ffffff!important;
    background: #1B3A66;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0;
    padding: 10px 20px;
    margin-bottom: 0;
}
.ilan .dib > div.col-xs-12{
    padding: 0;
}
.ilan .box-content.dib{
    border: 0;
    padding: 0;
}
.ilan .emlak-ozellikleri{
    border: 0;
}
.ilan .bolge{
    color: #BE0006;
}
.ilan .temsilci{
    border: solid 1px #1B3A66;
}
.ilan .col-md-7.temsilci-resim{
    margin: 10px 0;
}
.ilan .col-md-7.temsilci-resim a{
    width: 100%;
}
.ilan .col-md-7.temsilci-resim h5 {
    text-transform: uppercase;
    font-size: .79em!important;
    font-weight: 500!important;
    font-family: "Red Hat Display", sans-serif!important;
}
.ilan .temsilci-text {
    background: #1B3A66;
    padding: 10px;
    margin-top: -1px;
}
.ilan-liste-wrp h2, .ilan-liste-aciklama h2{
    letter-spacing: 0;
    font-size: 19px;
    margin-bottom: 0;
}

.ilan-sidebar input, .ilan-sidebar select, .bootstrap-select > .dropdown-toggle{
    border: 0;
    background-color: #fff;
    border-radius: 3px!important;
    font-size: 13px;
    border: 1px solid #c0c0c0;
}
.ilan-sidebar > form {
    padding:0;
    border: 1px solid #eee;
    border-radius: 5px;
    margin-bottom: 20px;
    background-color: #f4f4f4;
}

.ilan-sidebar .form-group{
    padding: 10px 20px;
    border-bottom: solid 2px #fff;
    margin:0;
}
.ilan-sidebar .form-group:last-child{
    border-bottom:none;
}

.ilce-wrp select, .mahalle-wrp select {
    background-color: #f4f4f4;
}

.ilce-aktif select, .mahalle-aktif select{
    background-color: #fff!important;
}

.iufzhm .iygwBs:before {
    content: '';
    width: 27px;
    height: 27px;
    border: 3px solid #BE0006;
    border-radius: 50%;
    position: absolute;
    bottom: -6%;
    animation: pulsate 3s infinite;
    left: -3px;
}
.boemzy{
    background: rgb(255 255 255 / 33%)!important;
}
@keyframes pulsate{
    0% {
        -webkit-transform: scale(1,1);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1.5,1.5);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(2,2);
        opacity: 0;
    }
}

.iufzhm .iRGIDU{
    box-shadow: none;
}
.iufzhm .lhJXOF{
    height: 0;
    padding: 9px;
}
.iufzhm svg{
    fill: white
}
.QwDtC:hover svg, .ievDfA:hover svg, .byqiKH:hover svg{
    fill: #f19719
}
.iufzhm .hognbJ, .iufzhm .fjXHxH{
    background: #BE0006;
}
@media (min-width:1300px) and (max-width:1400px){
    .container {
        width: 1270px!important;
    }
}
@media (min-width: 1401px) and (max-width:1500px){
    .container {
        width: 1350px!important;
    }
}
@media (min-width: 1500px) and (max-width:2600px){
    .container {
        width: 1450px!important;
    }
}
.custom-post-blog .thumb-info:hover img{
    transition: all .3s ease!important;
}
.section.match-height-manual h2, .section.match-height-manual p, .section.match-height-manual label{
    color: white;
}
/*
.col-half-section.col-half-section-right {
    margin-right: 100px;
}
*/
div.sol{
    float: right;
}
html .background-color-secondary {
    background-image: url(/upload/images/section-form.jpg);
    background-size: cover;
    background-position: center;
    background-color: transparent !important;
}

html .featured-box-primary .icon-featured{background:transparent!important;}
html.webkit .ekip .thumb-info .thumb-info-wrapper {
    margin: 4px 4px 3px!important;
}
.ekip .thumb-info .thumb-info-title{
    background: transparent!important;
    position: relative;
    color: #1B3A66;
    text-align: center;
    letter-spacing: 0;
}
.ekip .thumb-info .thumb-info-type {
    text-shadow: none;
    text-align: center;
    letter-spacing: 0;
    background-color: #ffffff;
    width: 100%;
    margin-top: 0;
    font-size: 14px;
}
.ekip span.imgafter{
    display: none;
}
.ekip .thumb-info .thumb-info-inner{
    text-shadow: none;
    letter-spacing: 0;
}

div .word-rotate {
    max-height: 40px;
    line-height: 40px;
    float: left;
}
.word-rotate.active .word-rotate-items span {
    font-size: 32px!important;
}

@keyframes a {
    0%{opacity:0;transform:translateY(2rem)!important}
    to{opacity:1;transform:none!important}
}
.custom_hizmetler a{animation:a .4s .2s ease-in-out both}

.ad02{animation-delay:.2s}.ad04{animation-delay:.4s}.ad06{animation-delay:.6s}.ad08{animation-delay:.8s}.ad10{animation-delay:1s}.ad12{animation-delay:1.2s}.ad14{animation-delay:1.4s}.ad16{animation-delay:1.6s}.ad18{animation-delay:1.8s}.ad20{animation-delay:2.0s}.ad22{animation-delay:2.2s}.ad24{animation-delay:2.4s}.ad26{animation-delay:2.6s}.ad28{animation-delay:2.8s}.ad30{animation-delay:3s}.ad32{animation-delay:3.2s}.ad34{animation-delay:3.4s}.ad36{animation-delay:36s}.ad38{animation-delay:3.8s}.ad40{animation-delay:4s}

.custom_hizmetler_wrp{
    margin-top:-200px;
    z-index:2;
    position:relative;
}

.custom_hizmetler .svg-container.hizmet_1 {
    
}

.custom_hizmetler .svg-container {
    width: 100%;
    height: 100px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
}
.custom_hizmetler p {
    font: 400 18px/20px Commons, sans-serif;
    border-top: 1px solid #C8C8C8;
    margin-top: 25px;
    padding-top: 10px;
    position: relative;
}
.custom_hizmetler a p:before {
    position: absolute;
    content: '';
    top: -2px;
    left: 0;
    height: 3px;
    width: 0;
    background: #BE0006;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.custom_hizmetler a:hover p:before {
    width: 100%;
}
.custom_hizmetler a:hover{
    text-decoration:none;
}
.custom_hizmetler a,
.custom_hizmetler p{
    color: #fff;
    text-align:center;
}
/*********MEGA MENU & ANA MENU İKONLAR ********/
.dropdown-mega-content .col-md-3.col-sm-6{
    width: 50%;
}
section.rakamlar {
    border-left: 10px solid #ff671f!important;
    border-right: 10px solid #ff671f!important;
}
@media (min-width: 992px){
    #header .header-nav-main nav > ul > li > a.dropdown-toggle:after {
        border-color: #ffffff transparent transparent;
    }
    .rakamlar .counters.template-1>div {
        background: #171c8f;
        padding: 20px 0;
        color: #fff;
        border-left: 15px solid white;
        border-right: 12px solid white;
        transition: .3s;
    }
    .rakamlar .counters.template-1>div:hover{
        border-left: 0px solid white;
        border-right: 0px solid white;
    }

    .rakamlar .counters.template-1>div.col-xs-12.col-sm-6.col-md-3:hover:before {
        background-size: 530px;
        opacity: .019;
        left: 0px;
    }
    #header{
        min-height: 160px!important;
        /*max-height: 44px!important;*/
    }
    html #header.header-flex .header-top{
        padding: 0;
        margin-bottom: 0px;
        background-color: #171c8f;
        border-bottom: solid 1px rgba(255,255,255,.1);
        transition: .3s;
    }
    /*
    .sticky-header-active #header.header-flex .header-top{
        background-color: #BE0006;
    }
    */
    #header .header-nav-main nav>ul>li.dropdown .dropdown-menu{
        padding: 5px 10px!important;
    }
    #header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-nav>li>a, #header .header-nav-main nav>ul>li.dropdown .dropdown-menu li a{
        padding: 15px 20px 16px 10px!important;
        font-size: 14px;
        letter-spacing: 0;
        font-weight: normal;
        padding: 5px 20px 11px 5px!important;
    }
    #header .header-nav-main nav>ul>li.dropdown .dropdown-menu li a:before {
        z-index: 1111111;
        width: 40px;
        height: 40px;
        left: 1px;
        top: 12px;
        content: '';
        position: absolute;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: 0% 50%;
        filter: brightness(0.5);
    }
}

#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-title{
    display: none!important;
}

/********MEGA MENU & ANA MENU İKONLAR SON ***********/

/*Form Design Start*/
.modal-body input.btn-classic-form{
    width:100%!important;
}
.modal-body label.ozelFormLabel {
    font-weight: 700;
    color: #ffffff;
    font-family: 'Red Hat Display', sans-serif;
    letter-spacing: 1px;
    background-color: #8e8e8e;
    width: fit-content;
    margin-bottom: -1px;
    margin-left: 0;
    padding: 2px 5px;
    border-radius: 4px 4px 0 0;
    border: 1px solid #ddd;
}
.modal-content{
    background-image: repeating-linear-gradient(45deg, hsla(207,0%,63%,0.05) 0px, hsla(207,0%,63%,0.05) 1px,transparent 1px, transparent 11px,hsla(207,0%,63%,0.05) 11px, hsla(207,0%,63%,0.05) 12px,transparent 12px, transparent 32px),repeating-linear-gradient(0deg, hsla(207,0%,63%,0.05) 0px, hsla(207,0%,63%,0.05) 1px,transparent 1px, transparent 11px,hsla(207,0%,63%,0.05) 11px, hsla(207,0%,63%,0.05) 12px,transparent 12px, transparent 32px),repeating-linear-gradient(135deg, hsla(207,0%,63%,0.05) 0px, hsla(207,0%,63%,0.05) 1px,transparent 1px, transparent 11px,hsla(207,0%,63%,0.05) 11px, hsla(207,0%,63%,0.05) 12px,transparent 12px, transparent 32px),repeating-linear-gradient(90deg, hsla(207,0%,63%,0.05) 0px, hsla(207,0%,63%,0.05) 1px,transparent 1px, transparent 11px,hsla(207,0%,63%,0.05) 11px, hsla(207,0%,63%,0.05) 12px,transparent 12px, transparent 32px),linear-gradient(90deg, rgb(255 255 255),rgb(66 66 66 / 1%))!important;
    border-radius:6px!important;
}
.modal-content .form-control{
    background:#ffffffcf;
}
.modal-content .modal-title {
    text-align: center;
}
.modal-header h4 {
    font-size: 1.9em;
}
.modal-content:before {
    display: block;
    position: absolute;
    top: -53px;
    right: 0;
    left: 15px;
    width: 128px;
    height: 146px;
    background-image: url(/upload/logo/bodrum-kitchen-logo-1601300410.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center 56px;
    content: " ";
    filter: opacity(0.5);
}
.modal-header .close{
    opacity: .3;
    font-size: 36px;
}
.modal-body{
    display:block!important;
}
@media (max-width: 767px){
    .products-grid > li:nth-child(2n+1){
        clear:both;
    }
    .modal-content{
        margin: 4%;
        width: 92%;
    }
    #footer h5:before{
        display:none!important;
    }
    .dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
        color: #262626;
        text-decoration: none;
        background-color: #002137;
    }    
    .product-details-area.product-details-area-1 h2{
        min-height:66px;
    }    
}
/*Form Design End*/

@media (min-width:1300px) and (max-width:1400px){
    .container {
        width: 1270px!important;
    }
}
@media (min-width: 1401px) and (max-width:1500px){
    .container {
        width: 1350px!important;
    }
}
@media (min-width: 1500px) and (max-width:2600px){
    .container {
        width: 1250px!important;
    }
    #footer-wrapper .container{
        /*width: 1240px!important;*/
    }
}

.o0{opacity:0;}


.content h4{
    font-weight: 700;
}

/*İçerik Düzenlemeleri*/
@media only screen and (min-width: 992px){
    .xcr{
        clip-path: polygon(0% 0%, 90% 0, 100% 100%, 10% 100%);
    }
}
@media only screen and (max-width:  767px){
    h2 {
        font-size: 1.6em;
        margin-bottom: 10px!important;
    }
    .xcr{
        margin-bottom: 15px!important;
    }
}
.xcr{
    filter: grayscale(.7);
    opacity: .9;
}
/*leftMenu Start*/
@media only screen and (min-width: 992px){
    body:not(.page-) .leftMenu ul {
        margin-top: 20px;
        padding: 20px 15px;
        width: 100%;
    }
}
.leftMenu a:not(.btn):hover {
    color: #0086b8;
}
.leftMenu ul {
    background: #ededed;
    padding: 20px 30px;
    width: 100%;
    margin: 0;
    margin-bottom: 15px;
    list-style: none;
}
.page- .leftMenu, .page- .girisHakkimizda{
    margin-top: 30px;
}
.lefMenu a:hover{
    color: #1380b9;
}
.leftMenu a:not(.btn) {
    transition: .2s;
    text-transform: uppercase;
    font-size: 16px;
    color: #78797a;
    text-decoration: none;
    display: block;
    padding: 20px 0;
    padding-left: 10px;
}
.leftMenu ul li {
    border-top: 1px solid #d3d3d3;
}
.leftMenu ul li:first-child {
    border-top: 0 none;
}
.leftMenu ul li a:before {
    z-index: 1111111;
    width: 40px;
    height: 40px;
    left: 1px;
    top: 12px;
    content: '';
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0% 50%;
    filter: brightness(0.5);
}
.leftMenu ul li a{
    position: relative;
}


/***Header Start***/
.toggle{
    padding: 15px;
    background: #ededed;
}
.toggle li:first-child {
    border-top: 0 none;
}
.block .menu-list{
    border-top: 1px solid #d3d3d3;
}
.menu-list a:before{
    border-left: 4px solid #1279b500!important;
}
.video-area > .container > .container{
    display:none !important;
}
@media (min-width: 992px){
    select.form-control {
        border-radius: 4px;
        border: 1px solid #cccccc!important;
        box-shadow: 0px 10px 25px 0px rgb(0 0 0 / 5%)!important;
        padding: 10px 12px!important;
        height: 47px!important;
        font-size: 14px!important;
        line-height: 30px!important;
        text-transform: uppercase;
    }
    .subeformu .tab-content{
        background: transparent!important;
        border: 0!important;
        box-shadow: none;
        margin-top: 17px;
    }
    .subeformu .form-area.row{
        margin-top: 10px;
    }
    .subeformu h2 {
        font-size: 1.7em;
    }
    .subeformu{
        width: 56%;
        margin-left: 22%;
        box-shadow: 0px 25px 50px 0px rgb(0 0 0 / 7%);
        padding: 35px 20px 0px 20px;
        background: linear-gradient(0deg, white 33%, #ffffffd4);
        border-radius: 15px;
        border: 1px solid #ddd;
        margin-top: -261px;
    }
    .subeformu .col-md-5.mt10{
        padding: 0px 0px 0px 15px;
    }
}
@media (max-width: 991px){
    select.form-control {
        border-radius: 0 0 4px 4px;
        border: 1px solid #ededed!important;
        box-shadow: 0px 10px 25px 0px rgb(0 0 0 / 5%)!important;
        padding: 10px 12px!important;
        height: 47px!important;
        font-size: 14px!important;
        line-height: 30px!important;
        text-transform: uppercase;
    }
    .subeformu .btn.btn-primary{
        width: 100%!important;
    }
    .subeformu{
        padding-top: 20px;
        background: #1B3A66;
    }
    .subeformu h2, .subeformu p, .subeformu .ozelFormLabel {
        color: white;
    }
    .subeformu .ozelFormLabel{
        text-align: center;
        background: #004370;
        margin: 10px 0 0!important;
        padding: 6px;
        border-radius: 4px 4px 0 0;
    }
    .subeformu .tab-content.left.w100y{
        background: transparent!important;
        border: 0;
    }
}

html:not(.sticky-header-active) #header.header-flex .header-container{
    display: block!important;
}
@media (min-width: 992px){
    .mt15.photoswipe_wrp {
        padding-left: 15px;
        padding-right: 15px;
    }
    .sayfa-ust-395 .sidebar_1,
    .sayfa-395 .sidebar_1{
        float:right !important;
    }
    .sayfa-ust-395 .col-md-9.col-sm-12.col-xs-12.col-sm-12.col-xs-12.contentDiv,
     .sayfa-395 .col-md-9.col-sm-12.col-xs-12.col-sm-12.col-xs-12.contentDiv{
        float: left;
    }    
    .contentDiv .lightbox .img-thumbnail{
        padding: 5px;
    }
    .contentDiv .lightbox .thumb-info{
        border-radius: 0px;
    }
    .form-control{
        min-height: 47px;
        border-radius: 4px!important;
    }
    .ekip .thumb-info-takim-t1{
        width: 20%;
    }
    .content span.imgafter {
        background: #743d3d00;
        width: 367px;
        height: 309px;
        position: absolute;
        top: 20px;
        right: -20px;
        background-size: cover;
        z-index: -1;
        border: 3px solid #f05a2261;
        transition: .4s;
    }
    .contentDiv:hover .content span.imgafter {
        width: 367px;
        height: 339px;
        right: 115px;
        border: 22px solid #f05a2261;
        top: 10px;
        z-index: 0;
    }
    /*
    .contentDiv img{
        transition: .3s
    }
    .contentDiv:hover img{
        margin-top: 30px;
    }
    */
    .contentDiv .row .content p:nth-child(1){
        margin: 0;
    }
    .sidebar .toggle{
        margin: 0;
        padding-top: 5px;
        padding-bottom: 0;
        margin-bottom: 30px;
    }
    .sidebar ul li{
        letter-spacing: 1px;
    }
    .sidebar h2 {
        letter-spacing: 0;
        margin: 0;
        background: #171c8f !important;
        padding: 5px 0 5px 22px;
        color: white;
        font-size: 26px;
    }
    #header .header-top .header-social-icons{
        margin-top: 12px;
        margin-right: 8px;
    }
    #header .header-top .social-icons li{
        box-shadow: none;
    }
    #header .header-top .social-icons li a{
        background: transparent;
        border-right: solid 1px rgba(255,255,255,.1);
        border-radius: 0;
        transition: .3s;
    }
    #header .header-top .social-icons li:last-child a{
        border-right: 0;
    }
    #header .header-top .social-icons li:hover a{
        background: transparent!important;
    }
    #header .header-top .social-icons li a i{
        color: white;
    }
    #header .header-top .social-icons li a:hover i{
        color: #f19719;
    }
    .header-nav.header-nav-stripe .header-social-icons{
        display: none;
    }
    #header .header-nav.header-nav-stripe nav>ul>li>a:lang(de){
        padding: 20px 3px!important;
    }
    div.translation-icons{
        margin-top: 12px;
        margin-left: 15px;
    }
    #language_select a{
        text-decoration: none;
        margin-right: 5px;
    }
    #language_select a img {
        transition: .3s;
    }
    #language_select a:hover img {
        transform: scale(1.1);
    }
    html:not(.ie) #header.header-flex .header-column:nth-child(2){
        /*
        flex-wrap: wrap;
        */
        align-content: space-around;
        align-items: flex-end;
    }
    #header .header-nav-main nav>ul>li>a{
        text-transform: capitalize;
        font-size: 17px;
    }
    #header.header-flex.header-transparent-bottom-border .header-nav-main.header-nav-main-square nav>ul>li.dropdown .dropdown-menu{
        margin-top: -8px;
    }
    #header .header-body{
        background: #ffffff!important;
        transition: 0s;
        border: 0;
    }
    .sticky-header-active #header .header-body{
        background: #171c8fe6  !important
    }
    .header-nav-top .nav.nav-pills>li:first-child{
        height: 50px;
    }
    .page-surgulu-ray-dolap .masonry .masonry-item {
        width: 33.3333%;
    }
    .page- .header-nav-top .fa.fa-globe{
        color: #dddddd;
    }
    html.sticky-header-active #header.header-flex .header-nav-main-effect-2 nav>ul>li.dropdown:hover>.dropdown-menu{
        top: calc(100% + -3px);
    }
    html #header.header-flex .header-nav .header-social-icons{
        margin: 0 0 10px 10px;
    }
    .sticky-header-active #header.header-flex .header-nav .header-social-icons{
        margin: 0 0 4px 10px;
    }
    .sidebar .row div{
        margin-top: 0;
    }
    #header .header-nav-main nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu>a:after {
        border-color: transparent transparent transparent #ff671f;
    }
    #header .header-nav-main nav>ul>li.dropdown .dropdown-menu{
        border-top: 0!important;
    }
    #header.header-narrow .header-nav.header-nav-stripe nav>ul>li:hover>a, #header.header-narrow .header-nav.header-nav-stripe nav>ul>li>a {
        padding: 20px 7px;
    }
    #header .header-nav-top{
        margin-top: 0
    }
    #header .header-nav-main nav>ul>li.dropdown .dropdown-menu li a{
        font-size: 1.1em;
    }
    #header .header-nav-top .nav>li>a{
        font-size: 16px;
        letter-spacing: 1px;
        font-family: "Red Hat Display", sans-serif!important;
        font-weight: 400;
        padding: 15px 12px;
    }
    #header .header-nav-top .nav>li>a:hover{
        background: transparent;
        color: #d6d6d6;
    }
    #header .header-nav-top .nav>li>a{
        color: #ffffff;
    }
    /*
    html.sticky-header-active #header .header-body{
        animation: fadeInDown .81s;
    }
    */
    html:not(.ie) #header.header-flex .header-container{
        margin-top: 25px;
    }
    html #header.header-flex .header-top .container, html:not(.ie) #header.header-flex .header-container{
        width: 95%!important;
    }
    html:not(.sticky-header-active) #header.header-flex .header-container{
        display: block!important;
    }
    .header-body{
        max-height: 132px;
    }
    .sticky-header-active .header-body {
        max-height: 153px;
    }
    #header .header-nav.header-nav-stripe nav > ul > li:hover > a {
        background-color: transparent!important;
    }
    html #header.header-flex .header-nav-main nav>ul>li{
        height: 77px!important;
    }
    .header-container.container{
        top: -26px;
    }
    html #header.header-flex .header-nav{
        margin-top: 27px;
    }
    .sticky-header-active #header.header-flex .header-nav {
        margin-top: 27px;
        margin-bottom: -15px;
    }
    .sticky-header-active #header.header-narrow .header-logo .logo-small{
        margin-top: 61px!important;
    }
    .sticky-header-active #header .header-nav.header-nav-stripe nav>ul>li:hover>a {
        color: #ff671f!important;
    }
    .page- #header .header-nav-main nav>ul>li>a.dropdown-toggle:after{
        border-color: #ff671f transparent transparent!important;
    }
    body:not(.page-) #header .header-nav-main nav>ul>li:hover>a.dropdown-toggle:after{
        border-color: #BE0006 transparent transparent!important;
    }
    #header .header-nav.header-nav-stripe nav>ul>li>a{
        font-size: 15px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-family: "Red Hat Display", sans-serif;
    }
    #header .header-nav.header-nav-stripe nav>ul>li:last-child{
        height: 50px !important;
    }
    #header .header-nav.header-nav-stripe nav>ul>li>a{
        color: black;
    }
    .sticky-header-active #header .header-nav.header-nav-stripe nav>ul>li>a{
        color: white!important;
    }
    #header .header-nav.header-nav-stripe nav>ul>li:last-child>a{
        background: antiquewhite;
        border: 1px solid #ee3427;
        padding: 22px 10px;
        margin-top: 13px;
        color: #171c8f!important;
    }
    body:not(.page-) #header .header-nav.header-nav-stripe nav>ul>li>a{
        font-weight: 500!important;
        color: #171c8f;
    }
    #header .header-nav.header-nav-stripe nav>ul>li:hover>a {
        color: #ff671f!important;
    }
    #header .header-nav.header-nav-stripe nav>ul>li:last-child:hover>a{
        color: #171c8f!important;
        background: antiquewhite!important;
    }
    .sticky-header-active body:not(.page-) #header.header-narrow .header-logo img{
        top: 14px!important;
    }
    html #header.header-flex .header-nav-main nav>ul>li>a.dropdown-toggle:after{
        margin-top: 4px!important;
    }
    #header.header-narrow .header-logo img {
        margin: 53px 12px 12px 0;
    }
    .col-md-9.col-sm-12.col-xs-12.col-sm-12.col-xs-12.contentDiv{
        float: right;
    }
}

@media (max-width: 991px) {
    .m-p0{
        padding: 0!important;
    }
}

/* Arrow Animasyon Başla */
.new-arrow.down {
    padding-right: 0;
    position: absolute;
    display: block;
    height: 10px;
    width: 10px;
    border: 1px solid transparent;
    transform: rotate(315deg);
    margin-top: -21px;
    margin-left: -29px;
}
.new-arrow.right:before {
    border-top: 2px solid #f00;
    border-left: 2px solid #f00;
    border-bottom: 0;
    border-right: 0;
}
.new-arrow.right:after {
    border-top: 2px solid #f00;
    border-left: 2px solid #f00;
    border-bottom: 0;
    border-right: 0;
}
.new-arrow.right {
    padding-right: 0;
    position: absolute;
    display: block;
    height: 10px;
    width: 10px;
    border: 1px solid transparent;
    transform: rotate(315deg);
    margin-top: -21px;
    margin-left: 69px;
}
.new-arrow{
    position: absolute;
    display: block;
    height: 10px;
    width: 10px;
    padding-right: 20px;
    border: 1px solid transparent;
    transform: rotate(315deg);
    margin-left: -29px;
    margin-top: 23px;
}
.new-arrow:after, .new-arrow:before{
    content:"";
    display: block;
    height: inherit;
    width: inherit;
    position: absolute;
    top: 0;
    left: 0;
}
.new-arrow:after{
    border-bottom: 2px solid #f00;
    border-right: 2px solid #f00;
    top: 0;
    left: 0;
    opacity: 1;
    animation: bottom-arrow 1.65s infinite
}
@keyframes bottom-arrow {
    0%{
        opacity:1;transform:translate(0,0)
    }
    45%{
        opacity:0;transform:translate(12px,12px)
    }
    46%{
        opacity:0;transform:translate(-16px,-16px)
    }
    90%{
        opacity:1;transform:translate(-6px,-6px)
    }
    100%{
        opacity:1;transform:translate(-6px,-6px)
    }
}
.new-arrow:before{
    top: 0;
    left: 0;
    border-bottom: 2px solid #f00;
    border-right: 2px solid #f00;
    animation: top-arrow 1.65s infinite
}
@keyframes top-arrow {
    0%{
        transform:translate(-6px,-6px)
    }
    35%{
        transform:translate(0,0)
    }
    90%{
        opacity:1;transform:translate(0,0)
    }
    100%{
        opacity:1;transform:translate(0,0)
    }
}
@media only screen and (max-width: 767px){
    .new-arrow{
        margin-top:1px;
    }    
}
@media (max-width: 991px) {
    .btn-last{
        background: linear-gradient(-45deg, #68eaf7, #5b6cc1, #526dad, #67dcf1);color:#fff;padding: 10px 13px;color:#fff;border-radius:30px;
    }
    .btn-last:hover{
        color:#fff;
    }
}
/* Arrow Animasyon Bitir */

/*LOGO START*/
.header-logo svg{
    overflow: visible;
    width: 276px;
    height: 120px;
    transition: .3s;
}
.sticky-header-active .header-logo svg{
    width: 246px;
    height: 105px;
}
.sticky-header-active .st0 {
    fill: #ffffff;
}

@media only screen and (min-width: 768px) and  (max-width: 1300px){
    /*
    .header-logo svg{
        width: 255px;
        height:auto !important;
    }
    */
}

#header svg polygon{
    stroke-width: 0.3px;
    stroke: white;
}

#sembol path:nth-child(-n+3){
    fill: #ffffff
}
.sticky-header-active #sembol path:nth-child(-n+3){
    fill: #ffffff
}
#sembol rect{
    stroke-width: 0.3px;
    stroke: white;
}
#sembol #ortapencere rect, #sembol #sagpencere rect, #sembol #solpencere rect{
    stroke-width: 0.1px;
}
#ortapencere rect:nth-child(odd), #sagpencere rect:nth-child(odd){
    animation: window 12s infinite;
}
#sagpencere rect:nth-child(even), #solpencere rect:nth-child(odd){
    animation: window 12s infinite;
    animation-delay: 4000ms;
}
#solpencere rect:nth-child(even), #ortapencere rect:nth-child(even){
    animation: window 12s infinite;
    animation-delay: 8000ms;
}
@keyframes window{
    0%{
        fill: yellow
    }
    50%{
        fill: #ffffff00
    }
    100%{
        fill: yellow
    }
}
.sticky-header-active #sembol #ortapencere rect {
    fill: white;
}
.sticky-header-active #sembol #sagpencere rect, .sticky-header-active #sembol #solpencere rect{
    fill: yellow;
}

.sticky-header-active #sembol rect{
    fill: #1b3a66
}


@media (min-width:768px) and (max-width: 1024px) {
    #header .header-nav.header-nav-stripe nav>ul>li>a{
        font-size: 10px;
        letter-spacing: 1px;
        padding: 35px 5px;
    }
    .header-logo svg {
        width: 224px;
    }
}

@media (min-width:1200px) and (max-width: 1300px) {
    #header .header-nav.header-nav-stripe nav>ul>li>a{
        font-size: 11px;
        letter-spacing: 1px;
        padding: 35px 5px;
    }
}
#gayrimenkul path {
    fill: white;
}
#SVGID_3_ stop{
    animation: makine1 12s 1;
    animation-direction: alternate;
}
#uzbilek{
    animation: onLoadText 1s 1;
}
#gayrimenkul{
    animation: fadeIn 1s forwards;
    animation-delay: 500ms;
    opacity: 0;
    animation-direction: alternate;
}
#sembolx rect{
    transform-origin: center center;
    -webkit-animation:spin 1s linear 1;
    -moz-animation:spin 1s linear 1;
    animation:spin 1s linear 1;
    transform-box: fill-box;
}
@keyframes onLoadText {
    0%{
        opacity: 0;
        transform: translateX(100px);
    }
    100%{
        opacity: 1;
        transform: translateX(0px);
    }
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { from { -webkit-transform: rotate(0deg); transform:rotate(0deg); } to { -webkit-transform: rotate(359deg); transform:rotate(359deg); } }
@-moz-keyframes spin-back { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin-back { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin-back { from { -webkit-transform: rotate(359deg); transform:rotate(359deg); } to { -webkit-transform: rotate(0deg); transform:rotate(0deg); } }

@media only screen and (max-width: 767px){
    #header .header-nav-main nav>ul li {
        border-bottom: 1px solid #171c8f30;
    }
    #uzbilek linearGradient{
        stroke: 0
    }
    #gayrimenkul path{
        fill: black
    }
    .header-logo svg {
        transition: .3s;
        width: 181px;
        height: 102px;
        margin-top: 6px;
    }
    .sticky-header-active .header-logo svg{
        width: 181px;
        height: 72px;
        margin-top: 2px;
    }
    /*
    .st0 {
        fill: #ffffff!important;
    }
    */
}

@keyframes makine2{
    0% {
        stop-color:#96783C
    }
    50% {
        stop-color:#FECE7C
    }
    100% {
        stop-color:#96783C
    }
}
.page- .header-logo svg #blackgroup path{
    transition: .3s;
    fill: #ffffff;
}
.sticky-header-active .page- .header-logo svg #blackgroup path{
    fill: #A5A5A5;
}
#header.header-narrow .header-logo .logo-default{
    filter: drop-shadow(1px 1px 0px #666);
    width: 330px;
    height: 69px;
}
body:not(.page-) #header.header-narrow .header-logo .logo-default{
    margin-bottom: -30px!important;
}
html #header.header-flex .header-logo{
    margin: 0!important;
}
html #header.header-transparent .header-body:before, html #header.header-transparent-bottom-border .header-body{
    border: 0!important;
}


ul.nav-list li a:before{border-left: 4px solid #1279b5;}
.side-dropdown-custom:before{border-top: 4px solid #bdbdbd!important;}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{font-family: 'Red Hat Display', sans-serif!important;color: #171c8f;}
h2 {
    font-weight: 500;
    margin-bottom: 15px;
}
h1 {
    font-size: 2.2em;
    letter-spacing: 0;
}
h3 {
    font-size: 22px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 15px;
    text-transform: none;
}
.tp-caption.main-label.paragraf{
    text-shadow: none!important;
}
.header-nav-top .fa.fa-globe{color:#828282;}
/*.parallax-background:after{background-image: url(/upload/images/pattern.png);}
.parallax-background{height: 100%!important;
    transform: none!important;
    background-size: cover!important;
    background-position:center!important;}
    .parallax-background:after {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.5);
    background-image: linear-gradient(343deg,#07397e -5.67%,#f71b4f 94.33%);
    opacity:.3;
}*/
.menu-list a:not(.side-dropdown-custom) {
    transition: .2s;
    text-transform: none;
    font-size: 14px;
    color: #121212;
    text-decoration: none;
    display: block;
    padding: 12px 0px 12px 10px;
}
@media (max-width: 370px){
    #header .header-nav-top .nav>li>a, #header .header-nav-top .nav>li>span{font-size:.81em}
}
@media (max-width: 475px){
.owl-dots{display:none;}
}
@media (max-width: 320px){
    .rev_slider_wrapper{height: 164px;}
}
@media (min-width: 321px) and (max-width: 375px) { 
    .rev_slider_wrapper{height: 112px;}
}

@media (min-width: 376px) and (max-width: 425px) { 
    #revolutionSlider_wrapper{height: 237!important;}
}

@media (min-width: 425px) and (max-width: 768px) { 
    #revolutionSlider_wrapper{height: 237!important;}
}
@media (min-width: 769px){
    .rev_slider_wrapper{height: 718px;}
}
#header .header-top .header-nav-top{
    overflow: visible!important;
}

/***DİL BAYRAKLARI CSS****/
.header-nav-top .nav.nav-pills li{
    max-height: 50px!important;
}
.header-nav-top .nav.nav-pills li:nth-child(1) a.dropdown-menu-toggle{
    max-height: 50px!important;
}
#header .header-nav-top .nav>li>a>img.lazyLoad{
    max-width: 25px!important;
    max-height: 29px;
}
/***DİL BAYRAKLARI CSS SON****/

#header a#dropdownLanguage{    
    display: none;
}
#header .header-nav-top .nav>li:last-child>a {
    padding: 14px 4px;
}
@media (max-width: 767px){
    .tp-caption.main-label.paragraf{
        text-align: left;
    }
    .ekip .thumb-info-takim-t1{
        width: 50%;
    }
    #header .header-top .header-nav-top{
        width: 100%;
    }
    div.pnone.col-md-6{
        float: unset;
    }
    div.pnone.col-md-6:not(.sol){
        float: left;
    }
    .container-fluid>.row>.p-none:last-child section.section{
        min-height: 500px;
    }
    .heading.heading-border {
        margin-bottom: 0px;
    }
    #header.header-no-min-height .header-body{
        min-height: 0.2px!important;
        border-bottom: 0;
    }
    #header {
        background: #171c8f;
        min-height: 128.4px!important;
        max-height: 128.4px!important;
    }
    #header .header-top{
        background: #171c8f;
        border-bottom: 1px solid #ffffff40;
        padding-bottom: 12px;
    }
    /*
    #header .header-top .header-social-icons {
        display: block!important;
        margin: 1px 0 -10px;
    }
    */
    html.sticky-header-active #header .header-body, #header .header-body{
        padding-bottom: 0!important;
        /*background: #171c8f !important;*/
    }
    .header-nav-top .nav.nav-pills li:nth-child(2){
        float: right;
        display: none;
    }
    .header-nav-top .nav.nav-pills li:nth-child(3){
        float: left;
        display: none;
    }
    .header-nav-top .nav.nav-pills li:nth-child(4){
        float: right;
    }
    #header .header-nav-top .nav>li:last-child>a {
        padding: 5px 4px;
    }
    #header .header-menu-top-wrp{
        width: 100%;
    }
    #header a#dropdownLanguage{
        margin-right: 0!important;
    }
    .header-nav-top .nav.nav-pills li{
        max-height: 29px!important;
    }
    .header-nav-top .nav.nav-pills li:nth-child(1) a.dropdown-menu-toggle{
        max-height: 29px!important;
    }
    #header .header-nav-top .nav>li>a>img.lazyLoad{
        max-width: 25px!important;
        max-height: 29px;
    }
    .header-nav-top .nav.nav-pills li:nth-child(5){display:none;}
    #header .header-nav-top .nav>li>a a:focus, #header .header-nav-top .nav>li>a:hover {color:#fff;background: transparent;}
    #header .header-nav-top .nav>li>a, #header .header-nav-top .nav>li>span{
        color: #ffffff;
        padding: 5px 0 0px;
    }
    #footer:not(.light) h3{margin: 20px 0 5px 0;}
    #header .header-btn-collapse-nav:before {content: 'MENÜ';font-size: small;font-weight:800;}
    #header .header-btn-collapse-nav{
        border: 1px solid #ddd;
        margin-top: -14px;
    }
    .sticky-header-active #header .header-btn-collapse-nav {
        margin-top: -25px;
    }
    #header.header-narrow .header-logo img {
        margin: 0px 12px 12px 0;
    }
    #header .header-logo img{width: 160px!important;height: auto!important;}
    .sticky-header-active #header .header-logo img{top:0!important;}
}
/*Call to Action CSS*/
html .btn-borders.btn-primary{
    border-color: #547388;
}

@media (max-width: 767px){
    #footer .word-rotate .word-rotate-items {
        text-align: center;
        width: 100% !important;
        display: grid !important;
    }
    #footer .call-to-action .call-to-action-btn a{
        margin-top: 30px!important;
    }
    #footer .widget-column-3, #footer .widget-column-2{
        margin-top: 30px;
    }
    #footer .widget-column-4{
        margin-top: 50px;
    }
    .call-to-action-btn .btn-primary{
        margin: 0!important;
    }
    html .call-to-action.call-to-action-primary {
        padding-bottom: 30px;
    }
    .slideText{
        margin-bottom: 30px;
    }
    .call-to-action .call-to-action-content, .call-to-action .call-to-action-btn{
        text-align: center;
        padding: 0;
        margin-bottom: 0!important;
    }
    .call-to-action{
        padding-right: 0;
        padding-left: 0;
    }
    h1 .word-rotate{
        float: none;
    }
    .call-to-action p{
        margin-bottom: 0!important;
        text-align: center!important;
    }
}

.col-md-3 .portfolio-item.img-thumbnail {
    border: 0;
    margin-top: -18px;
}


/* -- Google Translate Css*/
.goog-te-gadget-icon{display:none;}
.goog-te-banner-frame.skiptranslate {display:none !important;} 
body{top: 0px !important;}
.goog-te-gadget-simple{border:0!important;}
.goog-te-gadget-simple {background-color: transparent!important;}
.goog-te-gadget-simple .goog-te-menu-value span {font-family: 'Red Hat Display', sans-serif;color:#828282 !important;}
.page- .goog-te-gadget-simple .goog-te-menu-value span {color:#ddd  !important;}
.goog-te-gadget-simple .goog-te-menu-value{padding:0px;margin:0 15px 0 0;display: inline-block;}
.goog-te-gadget-simple{padding-top:0;}

#header .header-top .header-nav-top{max-height:48px;overflow: hidden;}
html.sticky-header-active #header.header-semi-transparent-light .header-body{top:0px !important;}
.goog-te-gadget-simple{font-size:14px !important;color: #222 !important;}
.fa.fa-globe {float:left;padding:5px 6px;}
/* -- End Google Translate Css */

.testimonial blockquote p {min-height:auto!important;}
#header .header-nav-top .nav>li>a a:focus, #header .header-nav-top .nav>li>a:hover {
    background:transparent!important;
}
.btn-primary-scale-2{
    background: #000!important;
    color: #ffffffab!important;
}
.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

@media screen and (max-width: 768px) {
  .masonry .masonry-item{width:50%;}
}
.masonry-item .thumb-info {
    border: 10px solid #fff;
}

.thumb-info .thumb-info-action-icon{background-image: linear-gradient(147deg, #990000 0%, #ff0000 74%);}

section.section-serit{background-image: linear-gradient(315deg, #fffffc 0%, #beb7a4 74%);/*background-image: linear-gradient(147deg, #990000 0%, #ff0000 74%);background: linear-gradient(89deg, #ab8526 , #d2a847 , #b28c2f , #d7b462 );*/}
section.section-haberler{background-image: linear-gradient(315deg, #fffffc 0%, #beb7a4 74%);}
.owl-theme .owl-dots .owl-dot span{background:#949494;}
html .btn-dark {background-color: #727271;border-color: #727271;}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {background: #1B3A66!important;}
@media (max-width: 991px){
    #header .header-nav-main nav>ul li a {
        letter-spacing: 1px;
        padding: 10px 6px;
    }
    #header .header-nav-main nav>ul li ul li a {
        color: #ff671f !important;
        letter-spacing: 1px;
        font-weight: 500;
    }
}
.section-anasayfa {
background: linear-gradient(89deg, #ab8526 , #d2a847 , #b28c2f , #d7b462 )!important;padding: 20px 0!important;margin-top:0!important;margin-bottom:0!important;}
.section-serit h2,.section-serit h4{text-shadow: 0 0 2px dimgrey;}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {background: #1B3A66;}

html .btn-primary {
    border-color: #ff671f;
    background: #ff671f;
}

/*Footer Start*/
#footer .btn-primary{
    color: white!important;
    background: #000000;
    border-color: #8f8f8f;
}
#footer .footer-copyright p, #footer .footer-developed-by a {
    color: #ffffff54!important;
}
#footer .footer-copyright.pt-md.pb-md.tleft{text-align:center;}
#footer .footer-copyright img{opacity:0.5;}
#footer .footer-copyright .footer-developed-by{
    z-index: 2;
    padding-top: 15px;
}

#footer-wrapper>.container>.col-md-3{
    z-index: 2;
}
.footerlogo {
    background-color: #BE000600;
    padding: 0px;
    text-align: center;
    margin: -21px 0 4px -19px;
    width: 185px;
    float: none;
}
@media (min-width: 768px) {
    .logo.footerlogo img{
        width: 241px;
        background: #ffffff94;
        filter: drop-shadow(0px 0px 28px #ffffff00);
        border-radius: 4px;
        padding: 20px;
    }
}
@media (max-width: 767px) {
    .social-icons li{
        margin-right: 10px;
    }
    .social-icons li:last-child{
        margin-right: 0;
    }
    .iufzhm .lhJXOF{
        margin-left: -15px;
    }
    footer#footer:before {
        background: linear-gradient(180deg, black, transparent);
    }
    #footer{
        background-position: 81% 100%!important;
        padding: 0px!important;
    }
    #footer-wrapper{text-align:center;padding: 0!important;}
    #footer-wrapper .footerlogo{margin:0 auto 15px;}
    .logo.footerlogo img {
        background: #ffffff94;
        filter: drop-shadow(0px 0px 28px #ffffff00);
        border-radius: 4px;
    }
    .urunler .slider4 > div:nth-child(2n+1){
        clear:both !important;
    }
    .urunler .thumb-info-type {
        min-height: 180px;
    }
    section.section {
        margin:0;
    }
    .lineslider{
        display:none !important;
    }
    .video-area, .rakamlar{
        padding-bottom:0 !important;
    }
}    
#footer-wrapper .col-md-3 ul li a:before{content: '\203A';display:inline-block;margin-right:5px;font-size: 19px;color: #ff671f;}
#footer-wrapper .col-md-3 ul.social-icons li a:before{content:none;}
#footer-wrapper .footer-social-icons>li>strong>a:before{content:none!important;}
#footer .footer2 .social-icons li{border-radius:0;box-shadow:none;list-style-type:none;}
#footer .footer2 .social-icons li:hover a{opacity:1}
#footer .footer2 .social-icons li a{color:#FFF!important;border-radius:0}
#footer .footer2 .social-icons li.social-icons-twitter a{background:#1aa9e1}
#footer .footer2 .social-icons li:hover.social-icons-foursquare a{background:#0072b1!important}
#footer .footer2 .social-icons li:hover.social-icons-tripadvisor a{background:#00AF87!important}
#footer .footer2 .social-icons li.social-icons-facebook a{background:#3b5a9a}
#footer .footer2 .social-icons li.social-icons-instagram a{background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);}
#footer .footer2 .social-icons li:hover.social-icons-instagram a{background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%) !important;}
#footer .social-icons li:hover.social-icons-foursquare a{background:#0072b1!important}
#footer .social-icons li:hover.social-icons-tripadvisor a{background:#00AF87!important}
#footer .social-icons li:hover.social-icons-linkedin a{background:#0e76a8 !important}
.social-icons li:hover.social-icons-facebook a{background: #3b5a9a!important;}
.social-icons li:hover.social-icons-twitter a {background: #1aa9e1!important;}
.social-icons li:hover.social-icons-instagram a {background: #f09433!important; 
background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%)!important; 
background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%)!important; 
background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%)!important; 
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 )!important;}
#footer .footer-copyright {
    margin-top:0;
    background: transparent;
    border-top: 0;
}
#footer .container .row>div {
    margin-bottom: 0;
}
.phone-no {
    line-height: 22px;
}

#footer-wrapper .col-md-3 .phone-no p {
    margin-bottom: 2px;
}
.phone-no span{color: #BE0006;}
#footer-wrapper {
    position: relative;
    padding: 50px 0 0;
}
#footer-wrapper .footer-social-icons {
    margin-top: 20px;
    padding-left:0;
}
#footer-wrapper .footer-social-icons li{display: inline-block;}
#footer{
    font-size:1em!important;
    margin-top: 0;
    border: 0;
    padding: 0;
    background: #ffffff;
    background-position: 81% 50%;
    background-size: cover;
}
/*
.footer-social-icons li a:hover {background: #BE0006!important;}
.footer-social-icons a {
    background: #BE0006!important;
    color: #ffffff;
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin: 0 5px 5px 0;
    padding: 0!important;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    transition: 0.6s;
    -moz-transition: 0.6s;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    font-size: 20px;
}
*/
/*Footer Social Icons Start*/
    #footer .social-icons li {
        border-radius: 0;
        box-shadow: none;
        margin: 0;
    }
    #footer .social-icons li a {
        overflow: hidden;
        margin: 0 5px 5px 0;
        width: 40px;
        height: 40px;
        border: #999999 1px solid;
        border-radius: 3px;
        color: #999999!important;
        background: transparent;
    }
    #footer .social-icons li a i {
        font-size: 20px;
        display: block;
        position: relative;
        width: 40px;
        height: 40px;
        margin-top: 10px;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
    }
    #footer .social-icons a:hover i {
        color:#fff;
    }
    #footer .social-icons a:hover i:first-child {
        margin-top: -38px;
    }
    #footer .social-icons a:hover i:last-child {
        margin-top: 8px;
    }
    /*Footer Social Icons End*/
.phone-no span, .phone-no a:hover, .col-md-3 h5 span, .widget-column-2 ul li a:hover, .widget-column-2 ul li.current_page_item a {
    color: #171c8f;
}

#menu-footer-menu{list-style: none;padding-left:0}
#footer .col-md-3 h5, #footer .col-md-3 h3 {
    font-weight: 400;
    margin-bottom: 25px;
    text-transform: uppercase;
    border-bottom: 1px solid #171c8f36;
    padding-bottom: 10px;
    color: #171c8f;
    font-size: 18px;
    letter-spacing: 2px;
    margin-top: 0;
}
#footer h5:before, #footer h3:before {
    position: absolute;
    content: '';
    top: 32px;
    left: 14px;
    height: 3px;
    width: 12px;
    background: #ff671f;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
#footer .col-md-3:hover h5:before, #footer .col-md-3:hover h3:before{
    width: 181px;
}

/*Footer End*/
.footer-ribbon{display:none;}
/*Butonlar CSS*/
.btn-warning{background-color:#333;border:#333;}
.btn-white{color:#fff;border:1px solid #ccc;}
.btn-white:hover{color:#fff;border: 1px solid #00538082;background-color: #27317d82;}
/*Butonlar CSS SON*/
.social-icons li:hover.social-icons-instagram a {background: #f09433; 
background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );}.page-odeme .submit{margin-bottom: 30px;}
.panel-group {margin-top: 42px;}
.product-price-box .old-price {width:100%;}
#footer p, #footer a{color:#000000ab!important;}

@media only screen and (min-width: 992px){
    #footer .container .row>div {
        margin-bottom: 0;
    }

}

.owl-carousel .owl-nav .owl-prev {
    left: -25px;
}
.owl-carousel .owl-nav .owl-next {
    right: -25px;
}

.header-logo a .logo-text span:first-child {
    font-size: 18px;
    color: #08c;
    text-align: left;
    font-weight: 600;
    letter-spacing: -1.3px;
    margin-top: -5px;
}
.header-logo a .logo-text span:nth-child(2) {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.7px;
    margin-top: 2px;
    color: #575757;
}
.logo-icon-wrp {
    float: left;
    width: 50px;
    height: 45px;
}
.parallax-background{background-repeat: no-repeat;}

.testimonial blockquote {background: #f5f5f5;}
.testimonial .testimonial-arrow-down {border-top-color: #f5f5f5;}


.page- .testimonial blockquote {background: #fff;}
.page- .testimonial .testimonial-arrow-down {border-top-color: #fff;}

.testimonial blockquote p {color: #777;}
.testimonial blockquote:after, .testimonial blockquote:before {color: #777;}
@media only screen and (min-width: 768px){
    .testimonial blockquote p{min-height: 231px;max-height: 231px;overflow-y:auto;overflow-x:hidden;}
    .section-yorumlar .aboutDesc>div:nth-child(1n+4){margin-top:30px;}
}

/*  STYLE 1 */
.testimonial blockquote p::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

.testimonial blockquote p::-webkit-scrollbar
{
	width: 12px;
	background-color: #F5F5F5;
}

.testimonial blockquote p::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #555;
}

.section.template-2{margin-top:0;}

.section-primary.template-2 span, .section-primary.template-2 label{color:#fff;}

.counters.template-2 strong { line-height: 1;font-size: 3.6em;font-family: "Red Hat Display", sans-serif!important;font-weight:normal;}
.counters.template-2 label{ font-family: "Red Hat Display", sans-serif!important;font-weight:normal;font-size: 1.1em;color: #6a80a9 !important;}

/* */
.ml-15{margin-left:-15px;}
.mr-15{margin-right:-15px;}

/* Genel */

.wws-popup__open-btn{
    background: linear-gradient(89deg, #0c9e43 , #1ba54f , #5ed88c, #077731 );
    background-size: 400% 400%;
    -webkit-animation: AnimationName 15s ease infinite;
    -moz-animation: AnimationName 15s ease infinite;
    animation: AnimationName 15s ease infinite;
}
@-webkit-keyframes AnimationName {
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}
}
@keyframes AnimationName { 
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}
}

.product .product-image-area .product-image{border-radius:0;}

#footer .footer-ribbon span, .home-concept strong, .home-intro p em {font-family: inherit;}

body{
    font-family: "Red Hat Display", sans-serif!important;
    font-size: 16px;
}
body p{
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: "Red Hat Display", sans-serif!important;
}

.tp-caption.PostSlider-Title, .PostSlider-Title {/*font-family: 'Muli', sans-serif;*/font-family: "Red Hat Display", sans-serif!important;}

html .scroll-to-top {
    background: #222;
    bottom: 158px;
    color: #ffffff;
}
html .scroll-to-top:hover, html .scroll-to-top:focus{color: #ffffff;}

/* Slider Bullet */
.tp-thumbs.hades {background: transparent !important;}
.section .HakkimizdaTitle {
    font-size: 40px;
}
.call-to-action-content .fa-star{font-size:30px;color:#FD4;}
.call-to-action-with-star .call-to-action-content{padding-top:0;padding-bottom: 0;}

.call-to-action.call-to-action-with-star .call-to-action-content {
    width: 65%;
}
.call-to-action.call-to-action-with-star .call-to-action-btn {
    width: 30%;
}
@media (max-width: 500px) {
    .custom-footer{text-align:center!important;}
}
@media (max-width: 767px) {
    .call-to-action.call-to-action-with-star .call-to-action-btn,
    .call-to-action.call-to-action-with-star .call-to-action-content{
        width:100%;
    }
}
.footer_custom{
    clear: both!important;
}

.footer_custom ul{padding:0}
.footer_custom ul li{list-style:none}
.footer_custom .footer-copyright{border-top:0!important}
.footer_custom .footer-copyright .container .row > div{border-top:1px solid #e4e4e41f}
#googlemaps{min-height:550px}

html .background-color-light {
    background-color: #fff0!important;
}
.list.list-icons li > .fa:first-child, .list.list-icons li > .icons:first-child, .list.list-icons li a:first-child > .fa:first-child, .list.list-icons li a:first-child > .icons:first-child {
    position: absolute;
    left: 0;
    top: 5px;
}
.list.list-icons {
    list-style: none;
    padding-left: 0;
    padding-right: 0;
}
.fa-check:before {
    color: #0088cc;
    border-color: #0088cc;
}
.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
}
.icons {font-size: inherit;}

/*********************************** GALLERY CSS ***********************************/
.row.slider4 div.col-md-3{
    padding: 0 10px;
}
.thumb-info .thumb-info-title, .thumb-gallery .thumb-info-title{
    max-width: 100%;
    bottom:0;
    background: #1B3A6699;
}
.urunler .thumb-info .thumb-info-title{
    position: relative;
    text-transform: none;
    background: #ffffff;
    color: #1B3A66;
    text-shadow: 0 0 black;
    letter-spacing: 0;
    font-size: 20px;
    padding: 25px 30px 0;
}
.urunler .owl-carousel .owl-nav [class*="owl-"]{
    color: #BE0006;
    font-size: 44px;
}
.urunler .owl-carousel .owl-nav .owl-prev {
    left: -55px;
}
.urunler .owl-carousel .owl-nav .owl-next {
    right: -35px;
}
.urunler .owl-theme .owl-nav [class*=owl-]:hover{
    color: #1B3A66;
}
.ref-anasayfa{
    margin-top:0 !important;
}    
.ref-anasayfa .owl-carousel .owl-nav [class*="owl-"]{
    color: #1b3a66;
    font-size: 44px;
}
.ref-anasayfa .owl-carousel .owl-nav .owl-prev {
    left: -55px;
}
.ref-anasayfa .owl-carousel .owl-nav .owl-next {
    right: -35px;
}
.ref-anasayfa .owl-theme .owl-nav [class*=owl-]:hover{
    color: #1B3A66;
}
.thumb-info:hover .thumb-info-title {
    background: #ffffff;
}
.portfolio-item.img-thumbnail{
    padding:0px;
    border:0;
    border-radius:4px!important;
}
.portfolio-item .thumb-info{
    border:0;
    border-radius:4px!important;
    padding: 0px;
}
.referanslar .portfolio-item .thumb-info{
    border:0;
    border-radius:4px!important;
    padding: 0 30px;
}
.thumb-info img:hover {
    opacity: 0.85;
}
.owl-theme .owl-nav [class*=owl-]:hover {
    color: #898a8d;
}
.owl-carousel .owl-nav [class*="owl-"] {
    color: #aa2d2d;
    width: 20px;
    background: transparent !important;
}
.mfp-bottom-bar{
    display:table;
    margin-top:-81px;
}
.mfp-bottom-bar .mfp-title{
    height: 41px;
    vertical-align: middle;
    display: table-cell;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-top: -36px;
    color: #005AC4;
    border:1px solid #ddd;
}
.urunler .thumb-info-type{
    letter-spacing: 1px;
    margin-top: 0;
    background: white;
    white-space: normal;
    margin-left: -15px;
    margin-right: -15px;
    min-height: 130px;
    padding: 10px 15px;
}
.urunler .thumb-info-type > p{
    letter-spacing: .4px;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
}
.urunler .thumb-info-type > p strong {
    font-size: 18px;
    color: #ee3427;
}

.urunler .thumb-info:hover:after{
    background: #006eb700;
}
.urunler .thumb-info img{
    transition: .3s;
}
.urunler .thumb-info:hover img{
    filter: grayscale(0)
}
/*
.urunler .thumb-info-type:after{
    width: 100%;
    height: 100%;
    content: "Devamını oku...";
    position: absolute;
    left: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 9;
    background-position: 100%;
    opacity: 1;
    color: #ff654c;
    background-size: unset;
    display: contents;
}
*/
.urunler .thumb-info{
    box-shadow: 0 0 30px -10px #ccc;
}
.urunler.micro .thumb-info{
    padding: 0px;
    border: 1px solid #dddddd;
}
.urunler.micro .thumb-info img {
    padding: 0px;
    filter: grayscale(.6)
}
@media only screen and (min-width: 992px){
    .urunler.micro .thumb-info{
        min-height: 485px;
    }
}

.urunler .thumb-info:hover:before {
    opacity: .11;
}
/******************** GALLERY CSS SON ***********************/

/******************** AÇIK MENU DİZİLİŞİ CSS ***********************/
@media only screen and (min-width: 992px){
    #header .header-nav-main nav>ul>li.dropdown.menu-566 .dropdown-submenu .dropdown-menu {
        transform: none!important;
        top: 50px;
        left: auto!important;
        right: auto!important;
        padding: 0 !important;
        background-color: transparent!important;
        transition: none!important;
        box-shadow: none;
        margin-left: 4px;
        display: contents!important;
    }
    #header .header-nav-main nav>ul>li.dropdown.menu-566 .dropdown-menu{
    }
    #header .header-nav-main nav>ul>li.dropdown.menu-566 .dropdown-menu li.dropdown-submenu:hover>.dropdown-menu{
        top: 50px;
        transition: 0;
    }
    #header .header-nav-main nav>ul>li.dropdown.menu-566{
        position: static;
    }
    #header .header-nav-main nav>ul>li.dropdown.menu-566 .dropdown-menu{
        position: absolute;
        display: flex;
        width: auto;
        left: auto;
        right: 0;
        padding: 30px 30px 50px 30px !important;
        flex-wrap: wrap;
        gap: 19px;
        align-content: flex-start;
        justify-content: space-between;
        margin-top: -22px;
    }
    #header .header-nav-main nav>ul>li.dropdown.menu-566 .dropdown-menu li.dropdown-submenu{
        position: relative;
        flex: 0 0 17.333%;
    
    }
    #header .header-nav-main nav>ul>li.dropdown.menu-566 .dropdown-submenu .dropdown-menu >li > a{
        background: transparent;
        letter-spacing: 1px;
        font-weight: 400;
        background: transparent;
        box-shadow: none;
        border: 0;
        transition: .3s;
    }
    #header .header-nav-main nav>ul>li.dropdown.menu-566 .dropdown-submenu .dropdown-menu >li > a:hover{
        color: #ff671f;
    }
    #header .header-nav-main nav>ul>li.dropdown.menu-566 .dropdown-submenu>a{
        font-weight: 700;
    }
    #header .header-nav-main nav>ul>li.dropdown.menu-566 .dropdown-menu li.dropdown-submenu>a:after{
        border-color: transparent;
    }
    
    .heading.heading-middle-border:before{
        border-top: 1px solid #ff671f63;
     }
}
/******************** AÇIK MENU DİZİLİŞİ CSS SON ***********************/

/******************** AÇIK MENU DİZİLİŞİ CSS ***********************/
@media only screen and (min-width: 992px){
    #header .header-nav-main nav>ul>li.dropdown.menu-478 .dropdown-submenu .dropdown-menu {
        transform: none!important;
        top: 50px;
        left: auto!important;
        right: auto!important;
        padding: 0 !important;
        background-color: transparent!important;
        transition: none!important;
        box-shadow: none;
        margin-left: 4px;
        display: contents!important;
    }
    #header .header-nav-main nav>ul>li.dropdown.menu-478 .dropdown-menu{
    }
    #header .header-nav-main nav>ul>li.dropdown.menu-478 .dropdown-menu li.dropdown-submenu:hover>.dropdown-menu{
        top: 50px;
        transition: 0;
    }
    #header .header-nav-main nav>ul>li.dropdown.menu-478{
        position: static;
    }
    #header .header-nav-main nav>ul>li.dropdown.menu-478 .dropdown-menu{
        position: absolute;
        display: flex;
        /*width: auto;*/
        /*left: 0;*/
        width: 940px;
        left: 390px;
        right: 0;
        padding: 30px 30px 50px 30px !important;
        flex-wrap: wrap;
        gap: 19px;
        align-content: flex-start;
        justify-content: space-between;
        margin-top: -22px;
    }
    #header .header-nav-main nav>ul>li.dropdown.menu-478 .dropdown-menu li.dropdown-submenu{
        position: relative;
        flex: 0 0 17.333%;
    
    }
    #header .header-nav-main nav>ul>li.dropdown.menu-478 .dropdown-submenu .dropdown-menu >li > a{
        padding: 2px 4px !important;
        background: transparent;
        font-size: 13px;
        letter-spacing: 1px;
        font-weight: 400;
        background: transparent;
        box-shadow: none;
        border: 0;
        transition: .3s;
    }
    #header .header-nav-main nav>ul>li.dropdown.menu-478 .dropdown-submenu .dropdown-menu >li > a:hover{
        color: #ff671f;
    }
    #header .header-nav-main nav>ul>li.dropdown.menu-478 .dropdown-submenu>a{
        font-weight: 700;
    }
    #header .header-nav-main nav>ul>li.dropdown.menu-478 .dropdown-menu li.dropdown-submenu>a:after{
        border-color: transparent;
    }
    
    .heading.heading-middle-border:before{
        border-top: 1px solid #ff671f63;
     }
}
/******************** AÇIK MENU DİZİLİŞİ CSS SON ***********************/