    
        
    /* AÇIKLAMA ----> BU ALANDA DEĞİŞİKLİK YAPACAK KİŞİDE EN AZ ORTA DÜZEY BİR CSS BİLGİSİ GEREKLİDİR.
 HER İHTİMALE KARŞI BU KODLARI BİR YERE KOPYALAYIN VE AKSİ BİR DURUM KARŞISINDA BU KODLARI TEKRAR EKLEYEBİLİRSİNİZ ///////////////////////////////////////////*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;700&display=swap');

/* 1-Ana Menü Görünüm Ayarları ///////////////////////////////////////////*/
.top-level-menu > li {
    font-family: 'Montserrat', sans-serif;
    background: none;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    margin: 0 2px;
}

/* 2- Ana Menü Hover Ayarları ///////////////////////////////////////////*/
.top-level-menu > li:hover {
    background-color: rgba(217, 182, 95, 0.1);
    border-color: rgba(217, 182, 95, 0.3);
}

/* 3- Ana Menü Box, Yazı Boyutu ve Renk Ayarları ///////////////////////////////////////////*/
.top-level-menu > li span {
    color: #FFFFFF !important;
    padding: 12px 18px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
    transition: color 0.3s ease;
}

/* 4- Ana Menü Kutu, Yazı Boyutu ve Renk Ayarları Hover İçin ///////////////////////////////////////////*/
.top-level-menu > li:hover span {
    color: #D9B65F !important;
}

/* 5- Açılır Menü Alanı Ayarları ///////////////////////////////////////////*/
.second-level-menu {
    position: absolute;
    top: 100%;
    left: 0;
    /* GÜNCELLENDİ: Genişlik 'min-width' ile sabitlendi */
    min-width: 260px; 
    background-color: transparent;
    padding: 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.top-level-menu > li:hover > .second-level-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* === İSTEDİĞİNİZ REVİZYONUN UYGULANDIĞI ALAN === */
.second-level-menu > div {
    width: 100%;
    background-color: rgb(3, 3, 3, 0.70); /* Yarı saydam koyu arka plan */
    padding: 8px 0;
    border-radius: 8px;
    -webkit-backdrop-filter: blur(8px); /* Cam efekti (Safari için) */
    backdrop-filter: blur(8px); /* Cam efekti */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Zarif kenarlık */
}

/* 6- Açılan Menüdeki her bir menu itemlerinin ayarları ///////////////////////////////////////////*/
.second-level-menu > div > li {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Arka plana uygun ayırıcı çizgi */
    transition: background-color 0.2s ease;
}
.second-level-menu > div > li:last-child {
    border-bottom: none;
}

.second-level-menu > div > li a,
.second-level-menu > div > li p {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
}

/* 7- Açılan Menüdeki Itemlerin Hover Arkaplan ayarı ///////////////////////////////////////////*/
.second-level-menu > div > li:hover {
    background: rgba(217, 182, 95, 0.15); /* Marka rengiyle uyumlu hover */
}

/* 8- Açılan Menüdeki Itemlerin font ayarları ///////////////////////////////////////////*/
.second-level-menu > div > li p,
.second-level-menu > div > li a {
    color: #FFFFFF !important; /* Arka plana uygun beyaz yazı rengi (!important eklendi) */
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: color 0.2s ease;
}

/* 9- Açılan Menüdeki Itemlerin hover font ayarı ///////////////////////////////////////////*/
.second-level-menu > div > li:hover p,
.second-level-menu > div > li:hover a {
    color: #D9B65F !important; /* Marka rengiyle uyumlu hover yazı rengi (!important eklendi) */
}

/* 10- Üçüncü açılan menü alanı için genel ayarlar ///////////////////////////////////////////*/
.third-level-menu {
    position: absolute;
    left: 100%;
    top: 0;
    width: 260px;
    background-color: rgba(53, 69, 79, 0.5);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 8px 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.second-level-menu > div > li:hover > .third-level-menu {
    opacity: 1;
    visibility: visible;
}

/* 11- Üçüncü açılan menü alanındaki ITEM ayarları ///////////////////////////////////////////*/
.third-level-menu > li {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease;
}
.third-level-menu > li:last-child {
    border-bottom: none;
}

.third-level-menu > li a,
.third-level-menu > li p {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
}

/* 12- Üçüncü açılan menü alanındaki ITEMLERİN Hover arkaplan renk ayarı ///////////////////////////////////////////*/
.third-level-menu > li:hover {
    background: rgba(217, 182, 95, 0.15);
}

/* 13- Üçüncü açılan menü alanındaki ITEMLERİN yazı ayarı ///////////////////////////////////////////*/
.third-level-menu li p,
.third-level-menu li a {
    color: #FFFFFF !important; /* Arka plana uygun beyaz yazı rengi (!important eklendi) */
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: color 0.2s ease;
}

/* 14- Üçüncü açılan menü alanındaki ITEMLERİN yazı hover ayarı ///////////////////////////////////////////*/
.third-level-menu li:hover p,
.third-level-menu li:hover a {
    color: #D9B65F !important; /* Marka rengiyle uyumlu hover yazı rengi (!important eklendi) */
}

/* 15- Açılan menu alanlarındaki üst çizgi renkleri ///////////////////////////////////////////*/
/* Bu bölüm boştu, gerekirse stil eklenebilir veya tamamen kaldırılabilir. */

/* Ok ikonları için (açılır menüleri belirtmek için) */
.top-level-menu > li.has-submenu > span::after,
.second-level-menu > div > li.has-submenu > p::after,
.second-level-menu > div > li.has-submenu > a::after {
    content: ' \25BE';
    font-size: 0.8em;
    margin-left: 6px;
    display: inline-block;
}

.second-level-menu > div > li.has-submenu-right > p::after,
.second-level-menu > div > li.has-submenu-right > a::after {
    content: ' \25B8';
    float: right;
    margin-left: 0;
}
.header-desktop-logo-div-main{
margin-top: -90px;
}


/* hizmetler */
.hizmetler-module-main-div{
    background:#FFFFFF ;
padding:95px 0;
margin: 0px 0;
}
.hizmetbox{
background-color: #FFFFFF;
}
.hizmetbox-img{
background-color: #FFFFFF;
}
.hizmetbox-hed a{
color: #000000;
}


.infobox-main{
background-image:url("../../images/uploads/") ;
background-size: cover;
background-position:top center;
}





/* Swiper Custom Style ///////////////////////////////////////////*/
.swiper-container {
height: 100%;
}
.swiper-slide {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
}
[class^="swiper-button-"] {
-webkit-transition: all .3s ease;
transition: all .3s ease;
}
[class^="swiper-button-"] {
width: 44px;
opacity: 0;
visibility: hidden;
}

.swiper-button-prev {
-webkit-transform: translateX(50px);
transform: translateX(50px);
}

.swiper-button-next {
-webkit-transform: translateX(-50px);
transform: translateX(-50px);
}
.swiper-container:hover .swiper-button-prev,
.swiper-container:hover .swiper-button-next {
-webkit-transform: translateX(0);
transform: translateX(0);
opacity: 1;
visibility: visible;
}
.swiper-pagination-bullet-active {
width: 10px!important; height: 10px!important; border-radius: 0 !important;
background-color: transparent !important;
border: 1px solid #D4C66C !important;
}
[class^="swiper-pagination-bullet"]{
width: 3px; height: 3px;
-webkit-border-radius: 0 !important;-moz-border-radius: 0 !important;border-radius: 0 !important;
transition: all .3s ease;
}

/* Swiper Custom Style SON ///////////////////////////////////////////*/


/* iphone 5s ==========================================
*****************************************************************************/
@media screen and (max-width:321px) and (min-width:0px) {
.swiper-container {
width: 100% !important; margin: 0 auto;
}
.slider_text_inside_box_h{
font-size: 28px !important ;
line-height: 28px !important ;
}
.slider_text_inside_box_s{
font-size: 18px !important ;
line-height: 22px !important ;
}
}
/*** iphone X - S5 vs ==========================================
*****************************************************************************/
@media screen and (max-width:410px) and (min-width:321px) {
.swiper-container {
width: 100% !important; margin: 0 auto;
}
.slider_text_inside_box_h{
font-size: 28px !important ;
line-height: 28px !important ;
}
.slider_text_inside_box_s{
font-size: 18px !important ;
line-height: 22px !important ;
}

}
/* Pixel 2 - iphone plus ==========================================
*****************************************************************************/
@media screen and (max-width:767px) and (min-width:410px) {
.slider_text_inside_box_h{
font-size: 28px !important ;
line-height: 28px !important ;
}
.slider_text_inside_box_s{
font-size: 18px !important ;
line-height: 22px !important ;
}
}
/* Ipad Pro*/
@media screen and (max-width:1100px) and (min-width:1023px) {
.slider_text_inside_box_h{
    font-size: 69px !important ;
    line-height: 69px !important ;
}
}

@media screen and (max-width:1023px) and (min-width:767px) {
/* Ipad */
.slider_text_inside_box_h{
    font-size: 69px !important ;
    line-height: 69px !important ;
}
}





.footer-module-main-div{
font-family : 'Roboto Condensed',sans-serif ;
    background:#000000 ;
padding:80px 0;
margin: 0px 0 0 0;
}
.footer-module-box-telif{
width: 90%;
font-family : 'Roboto Condensed',sans-serif ;
color: #B2B2B2;
}
.footer-module-box-social a{
display: block;
color: #FFFFFF;
padding: 10px 14px;
box-sizing: border-box;
line-height: 15px;
font-size: 15px ;
}
.footer-module-box-social a:first-child{
padding-left: 0;
}
.footer-module-header-text{
color: #FFFFFF;
}
.footer-module-contact-box{
color: #B2B2B2;
}
.footer-module-contact-box a{
color: #B2B2B2;
}
.footer-module-workhour-div{
color: #B2B2B2;
}
.footer-module-links-div a{
display: block;
width: 100%;
margin-bottom: 10px;
color: #B2B2B2;
}


.sss-module-main-div{
    background-image:url("../../images/uploads/7537147464657-20-Elmira_-_ipek_Kirpik_Merkezi_-_SSS_BG.jpeg") ;
    background-size: cover;
    background-position:top center;
            background-attachment: fixed;
    padding:95px 0;
margin: 0px 0;
}
.accordion_main {
width: 100%;
text-align: left
}

.accordion-header,
.accordion-body {}

.accordion__item{
border-bottom:1px solid #2B2B2B !important;
margin-bottom: 0}

.accordion-header {
padding: 1.5em 1.5em;
background: #1E1E1E;
color: #FFFFFF;
cursor: pointer;
font-size:16px;
font-weight: 400;
letter-spacing: .05em;
transition: all .3s;
}
.accordion__item:last-child{
border-bottom:1px solid #2B2B2B !important;
}


.accordion-body {
background: #252525;
color: #FFFFFF;
display: none;
width: 100%;
}

.accordion-body__contents {
padding: 20px 20px 40px 20px;
line-height: 20px;
font-weight: 300;
font-size: 14px;
width: 100%;
letter-spacing: .03em;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
align-items: flex-start;
overflow: hidden;
}

.accordion__item.active:last-child .accordion-header {
border-radius: 0;
}

.accordion:first-child > .accordion__item > .accordion-header {
border-bottom: 1px solid transparent;
}

.accordion__item > .accordion-header:before {
content: "\f078";
font-family: FontAwesome;
font-size: 1.2em;
float: left;
margin-right: 15px;
position: relative;
transition: .3s all;
transform: rotate(0deg);
}

.accordion__item.active > .accordion-header:before {
transform: rotate(-180deg);
}

.accordion__item.active .accordion-header {
background: #252525;
color:#D9B65F}





.intro-video-module-main-div{
    background:#252525 ;
padding:125px 0;
margin-top: 30px !important ;
margin-bottom: 30px !important;
}


.video-play-button {
position: absolute;
z-index: 10;
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
box-sizing: content-box;
display: block;
width: 32px;
height: 44px;
border-radius: 50%;
margin-left: auto;
margin-right: auto;
left:0;
right: 0;
}
.video-play-button:before {
content: "";
position: absolute;
z-index: 0;
left: 50%;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
display: block;
width: 80px;
height: 80px;
background: #BA1F24;
border-radius: 50%;
-webkit-animation: pulse-border 1500ms ease-out infinite;
animation: pulse-border 1500ms ease-out infinite;
}
.video-play-button:after {
content: "";
position: absolute;
z-index: 1;
left: 50%;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
display: block;
width: 80px;
height: 80px;
background: #FA183D;
border-radius: 50%;
transition: all 200ms;
}
.video-play-button:hover:after {
background-color: #DA0528;
}
.video-play-button img {
position: relative;
z-index: 3;
max-width: 100%;
width: auto;
height: auto;
}
.video-play-button span {
display: block;
position: relative;
z-index: 3;
width: 0;
height: 0;
border-left: 32px solid #FFFFFF;
border-top: 22px solid transparent;
border-bottom: 22px solid transparent;
margin-left: 5px;
}
@-webkit-keyframes pulse-border {
0% {
-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
opacity: 0;
}
}
@keyframes pulse-border {
0% {
-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
opacity: 0;
}
}








.yorumlar-module-main-div{
font-family : 'Playfair Display',sans-serif ;
    background-image:url("../../images/uploads/7786945608739-964-Elmira_-_ipek_Kirpik_Merkezi_-_Musteri_Yorumlari_BG.jpeg") ;
    background-size: cover;
    background-position:top center;
            background-attachment: fixed;
    padding:130px 0;
margin: 0px 0;
}
.swiper-comments {
width: 100%;
height: auto;
padding-bottom:60px;
}
.swiper-comments .swiper-slide {
width: 100%;
background-color:#FFF;
display:block;
padding:20px;
box-sizing:border-box;
border-radius: 5px;
height:100%;
text-align:center;
}
.swiper-comments .swiper-pagination-bullet-active {
width: 14px!important; height: 14px!important;
border-radius: 100px !important;
background-color: #D9B65F !important;
}
.swiper-comments .swiper-pagination-bullet {
width: 14px; height: 14px;
border-radius:100px !important;
webkit-transition: all .3s ease;
transition: all .3s ease;
}


.marka-module-main-div{
    background:#D9B65F ;
padding:30px 0;
margin: 0px 0;
}

.swiper-clients {
width: 100%;
height: 100%;
position: relative;

}

.swiper-clients .swiper-slide {
text-align: center;
padding: 5px 10px;
height: 100px;
display: flex;
justify-content: center;
align-items: center;
}
.swiper-clients .swiper-slide img{
max-height: 90px;
}







.blog-box{
border: 1px solid #F1F1F1;
background-color: #FFFFFF;
}