#bakim img{
	height:38px;
	width:auto;
}

/*header*/
/*header golge ayari (20)*/
@media (min-width: 1281px) {
    .l-header.shadow_thin .l-subheader.at_middle, .l-header.shadow_thin .l-subheader.at_bottom {
        box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08) !important;
    }
}

header .sosyal-aglar{
	--hwrapper-gap: 0.7rem !important;
}
header .sosyal-aglar-blok-01 .sosyal-aglar .w-iconbox-icon svg{
	height: 1.5rem !important;
}

/*footer*/
#footer-imza .footer-alt-logo{
	height:20px;
}

/*
/*grid ortala
.w-grid-list {
    justify-content: center;
    align-items: center;
}
*/

/*kutu-bg*/
.bg-genel{
    position:absolute;
}
@media(max-width:1024px){
	.bg-genel{
		display:none !important;
	}
}

/*iletişim formları*/
.w-form-row.for_agreement a{
	color:var(--color-content-text) !important;
	font-weight:bold;
}

/* sınıflar */
:root{
	--renk-1 : var(--color-subfooter-bg);
	--renk-2 : var(--color-subfooter-bg-alt);
	--renk-3 : var(--color-subfooter-border);
	--renk-4 : var(--color-subfooter-heading);
	--renk-5 : var(--color-subfooter-text);
	--renk-6 : var(--color-subfooter-link);
	--renk-7 : var(--color-subfooter-link-hover);
	
	--kutu-bg-renk : #fff;
	--kutu-padding : 1rem;
	--kutu-border : 1px solid var(--renk-1);
	--kutu-border-radius : 0.75rem;
	--kutu-golge-1 : 0 0 1.25rem 0 rgba(0,0,0,0.05);
	--kutu-golge-1-hover : 0 0 1.25rem 0 rgba(0,0,0,0.15);
	--kutu-golge-2 : 0 10px 55px 5px rgb(220 227 231);
	--kutu-golge-3: 0 10px 55px 5px rgb(137 217 255 / 20%);
}

.bg-renk-1{ background:var(--renk-1); }
.bg-renk-2{ background:var(--renk-2); }
.bg-renk-3{ background:var(--renk-3); }
.bg-renk-4{ background:var(--renk-4); }
.bg-renk-5{ background:var(--renk-5); }
.bg-renk-6{ background:var(--renk-6); }
.bg-renk-7{ background:var(--renk-7); }
.bg-renk-beyaz{ background:#fff !important; }

.kutu-golge-1{ box-shadow:var(--kutu-golge-1); }
.kutu-golge-2{ box-shadow:var(--kutu-golge-2); }
.kutu-golge-3{ box-shadow:var(--kutu-golge-3); }

.no-margin{ margin:0!important; }
.no-padding{ padding:0 !important; }

.yazi-renk-1{ color:var(--renk-1); }
.yazi-renk-2{ color:var(--renk-2); }
.yazi-renk-3{ color:var(--renk-3); }
.yazi-renk-4{ color:var(--renk-4); }
.yazi-renk-5{ color:var(--renk-5); }
.yazi-renk-6{ color:var(--renk-6); }
.yazi-renk-7{ color:var(--renk-7); }
.beyaz-yazi h1, .beyaz-yazi h2, .beyaz-yazi h3, .beyaz-yazi h4, .beyaz-yazi h5, .beyaz-yazi h6, .beyaz-yazi{ color:#fff !important; }
.beyaz-link a{ color:#fff !important; }
.beyaz-link a:hover{ color:#f5f5f5 !important; }

.border-radius-03{ border-radius:0.3rem; }
.border-radius-05{ border-radius:0.5rem; }
.border-radius-07{ border-radius:0.7rem; }
.border-radius-1{ border-radius:1rem; }
.border-radius-2{ border-radius:2rem; }

.baslik-border-1 span{ box-shadow: inset 0 -0.4em 0 0 var(--renk-1); }

/*grid*/
.grid-01 .w-grid-item-h{
	box-shadow:var(--kutu-golge-3) !important;
}
.grid-01 .w-grid-item-h:hover{
	box-shadow:var(--kutu-golge-2) !important;
}

/*link-hover-1*/
.link-hover-1,
.w-text-link-hover-1 span{
    position: relative;
    display: inline-block;
    color: #000; /* Link rengi */
    text-decoration: none;
}
.w-text-link-hover-1.renk-1 span{
	color: var(--renk-1);
}
.link-hover-1::after,
.w-text-link-hover-1 span::after{
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #000; /* Çizginin rengi */
    transition: width 0.4s ease, right 0.4s ease;
}
.w-text-link-hover-1.renk-1 span::after{
	background: var(--renk-1);
}
.link-hover-1:hover::after,
.w-text-link-hover-1 span:hover::after{
    width: 100%;
    left: 0;
}
/*link-hover-1 son*/
/*link-hover-2*/
.link-hover-2 .w-text-value {
  position: relative;
  display: inline-flex; /* inline-flex yapıyoruz */
  align-items: center;  /* Metni dikey olarak ortalar */
  overflow: visible;
  transition: color 0.5s ease;
  line-height:1.2;
}

.link-hover-2 .w-text-value::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;    /* Sol kenardan 2px dışarıda başla */
  right: -2px;   /* Sağ kenardan 2px dışarıya kadar uzansın */
  bottom: 0;
  background: var(--renk-1);
  transform: scaleX(0);      
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: -1;
}

.link-hover-2:hover .w-text-value::before {
  transform: scaleX(1);
}

.link-hover-2:hover .w-text-value {
  color: #fff;
}
/*link-hover-2 son*/

.dikey-ayirici-1{
	margin:3rem 0;
}
.dikey-ayirici-1:before {
    content: '';
    background-color: var(--renk-4);
    width: 3px;
    border-radius: 3px;
    display: block;
    margin: 0 auto;
    height: inherit;
}

/* animasyon */
.hover-ust-5{
	transition: transform 0.3s ease;
}
.hover-ust-5:hover{
	transform: translateY(-5px);
}


/*iletişim balonları*/
#hemenaragoster,
#hemenaragoster-2,
#whatsappgoster,
#talepformugoster,
#instagramgoster,
#youtubegoster {
    display: none;
}

/* Wrapper */
.bt-iletisim-wrapper {
    position: fixed;
    right: 50px;
    bottom: 3%;
    display: flex;

    gap: 12px;
    z-index: 1111;
}

@media(max-width:600px){
    .bt-iletisim-wrapper {
        bottom: 5%;
		left: 50%;
        right: auto; /* sağdan yaslamayı iptal eder */
        transform: translateX(-50%);
		gap: 10px;
    }
}

/* Ortak buton stilleri */
.bt-hemen-ara,
.bt-whatsapp,
.bt-talep-formu,
.bt-instagram,
.bt-youtube {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    cursor: pointer;
    background-color: #888; /* default */
}

@media(max-width:600px){
    .bt-hemen-ara,
    .bt-whatsapp,
    .bt-talep-formu,
    .bt-instagram,
    .bt-youtube {
        width: 50px;
        height: 50px;
    }
}

/* Özel arka plan renkleri */
.bt-hemen-ara    { background-color: #25d366; }
.bt-whatsapp     { background-color: #128c7e; }
.bt-talep-formu  { background-color: var(--renk-1); }
.bt-instagram    { background-color: #e1306c; }
.bt-youtube      { background-color: #ff0000; }

/* Ortak stil */
.bt-hemen-ara a,
.bt-whatsapp a,
.bt-talep-formu a,
.bt-instagram a,
.bt-youtube a {
    text-decoration: none;
    color: #fff !important;
}

.bt-hemen-ara i,
.bt-whatsapp i,
.bt-talep-formu i,
.bt-instagram i,
.bt-youtube i {
    animation: pulse 1.5s infinite;
}

.bt-hemen-ara:hover,
.bt-whatsapp:hover,
.bt-talep-formu:hover,
.bt-instagram:hover,
.bt-youtube:hover {
    transform: scale(1.1);
}

.bt-hemen-ara a:hover,
.bt-whatsapp a:hover,
.bt-talep-formu a:hover,
.bt-instagram a:hover,
.bt-youtube a:hover,
.bt-hemen-ara i:hover,
.bt-whatsapp i:hover,
.bt-talep-formu i:hover,
.bt-instagram i:hover,
.bt-youtube i:hover {
    color: #fff !important;
}

/* İkon boyutları */
.bt-hemen-ara .phone-icon       { font-size: 1.4rem; }
.bt-whatsapp .whatsapp-icon    { font-size: 2rem; }
.bt-talep-formu .form-icon     { font-size: 1.6rem; }
.bt-instagram .instagram-icon  { font-size: 1.6rem; }
.bt-youtube .youtube-icon      { font-size: 1.6rem; }

/* Tooltip yukarı yönlü */
.bt-tooltip {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
    z-index: 1112;
}

.bt-hemen-ara:hover .bt-tooltip,
.bt-whatsapp:hover .bt-tooltip,
.bt-talep-formu:hover .bt-tooltip,
.bt-instagram:hover .bt-tooltip,
.bt-youtube:hover .bt-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Nabız animasyonu */
@keyframes pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.2); }
    100% { transform: scale(1); }
}
/*iletişim balonları*/

/*animasyonlu hemen ara ilk versiyon*/
.bt-hemen-ara-2{
	display:none;
}
.hotline-phone-ring-wrap {
    position: fixed;
    bottom: 1%;
    left: 0;
    z-index: 999999;
}

.hotline-phone-ring {
    position: relative;
    width: 110px;
    height: 110px;
    cursor: pointer;
    transition: visibility 0.5s;
}

.hotline-phone-ring-circle,
.hotline-phone-ring-circle-fill,
.hotline-phone-ring-img-circle {
    position: absolute;
    border-radius: 50%;
    transition: all 0.5s;
    transform-origin: 50% 50%;
}

.hotline-phone-ring-circle {
    width: 85px;
    height: 85px;
    top: 10px;
    left: 10px;
    border: 2px solid #f7bc3c;
    animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    opacity: 0.5;
}

.hotline-phone-ring-circle-fill {
    width: 55px;
    height: 55px;
    top: 25px;
    left: 25px;
    background-color: rgba(37, 211, 102, 0.7);
    border: 2px solid transparent;
    animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
}

.hotline-phone-ring-img-circle {
    width: 33px;
    height: 33px;
    top: 37px;
    left: 37px;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
}

.hotline-phone-ring-img-circle a{
	color:#fff !important;
}

.hotline-bar {
    position: absolute;
    width: 160px;
    height: 40px;
    line-height: 40px;
    bottom: 37px;
    left: 33px;
    background: var(--color-content-text);
    border-radius: 50px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.8s;
    z-index: -1;
}

.hotline-bar a {
    color: #fff !important;
    font-weight: bold;
    font-size: 0.9rem;
    text-decoration: none;
    display: block;
    text-indent: 50px;
    letter-spacing: 1px;
}

.hotline-bar a:hover, .hotline-bar a:active {
    color: #fff !important;
}

@keyframes phonering-alo-circle-anim {
    0%, 100% {
        transform: rotate(0) scale(0.5);
        opacity: 0.1;
    }
    30% {
        transform: rotate(0) scale(0.7);
        opacity: 0.5;
    }
}

@keyframes phonering-alo-circle-fill-anim {
    0%, 100% {
        transform: rotate(0) scale(0.7);
        opacity: 0.6;
    }
    50% {
        transform: rotate(0) scale(1);
        opacity: 0.6;
    }
}

@keyframes phonering-alo-circle-img-anim {
    0%, 50%, 100% {
        transform: rotate(0) scale(1);
    }
    10% {
        transform: rotate(-25deg) scale(1);
    }
    20% {
        transform: rotate(25deg) scale(1);
    }
    30% {
        transform: rotate(-25deg) scale(1);
    }
    40% {
        transform: rotate(25deg) scale(1);
    }
}
/*site ayarları son*/

.icerik-ortala, 
.icerik-ortala-2 .vc_column-inner{
	justify-content:center;
	display:flex;
	flex-direction:column;
}

.grid-ortala .w-grid-list {
    justify-content: center;
    align-items: center;
}

.w-form-row-state,
.mfp-bottom-bar{
	display:none !important;
}
.w-form-message.type_success{
	text-align:center !important;
}
.for_agreement span{
	font-size:0.8rem !important;
}


/* responsive */

@media(max-width:600px){
	.mobil-1-kolon{
		grid-template-columns: repeat(1, 1fr) !important;
	}
	.mobil-2-kolon{
		grid-template-columns: repeat(2, 1fr) !important;
	}
	
	.mobil-gap-15{
		--gap:1.5rem !important;
		--colums-gap:1rem !important;
		gap:1.5rem !important;
	}
	.mobil-gap-10{
		--gap:1rem !important;
		--colums-gap:1rem !important;
		gap:1rem !important;
	}
	.mobil-gap-0{
		--gap:0 !important;
		--colums-gap:0 !important;
		gap:0 !important;
	}
}

@media(min-width:601px) and (max-width:1024px){
	.tablet-1-kolon,
	.tablet-1-kolon .g-cols.cols_2{
		grid-template-columns: repeat(1, 1fr) !important;
	}
	.w-hwrapper.tablet-1-kolon{
		display:block !important;
	}
	.w-hwrapper.tablet-1-kolon>:not(:last-child) {
		margin: 0 0 var(--hwrapper-gap, 1.2rem);
	}
	
	.tablet-2-kolon,
	.tablet-2-kolon .g-cols.cols_2{
		grid-template-columns: repeat(2, 1fr) !important;
	}
	
	.tablet-ters{
		display: flex !important;
		flex-direction: column-reverse;
	}
}

@media(min-width:601px) and (max-width:1280px){
	.laptop-1-kolon{
		grid-template-columns: repeat(1, 1fr) !important;
	}
	
	.laptop-2-kolon{
		grid-template-columns: repeat(2, 1fr) !important;
	}
}