/* ROOT */

:root {
    --primary-color: #2a4158;   /* default #2a4158 */
    --text-color: #ffffff;     /* default #ffffff */
    --border-color: #6ec5ff;  /* default #858585 */
    --menu-color: #4b667a;  /* default #4b667a */
    
  }

/* LAYOUT */

html,body {
    margin:0;
    padding:0;
    scroll-behavior: smooth;
    background-color: var(--primary-color);
    }

h3 {
    text-align:left; 
}

.main {
    margin: auto;
    width: 100%;
    font-size: 13px;
    }

figcaption {
    font-size: 12px;
    letter-spacing: 1px;
    font-weight:500;
    padding: 14px 0 0 0;
    }





/* General Structure */  
.h1 { grid-area: h1; }
.h2 { grid-area: h2; }
.h3 { grid-area: h3; }
.h4 { grid-area: h4; }
.m1 { grid-area: m1; }
.m2 { grid-area: m2; }
.m3 { grid-area: m3; }
.c4 { grid-area: c4; }
.f1 { grid-area: f1; }
.f2 { grid-area: f2; }
.f3 { grid-area: f3; }


.gc {
    display: grid;
    grid-template-areas:
      'h3 h3 h3 h3'
      'h1 h2 h2 h2'
      'm2 m2 m2 m2'
      'm3 m3 m3 m3'
      'm1 m1 m1 m1'
      'h4 h4 h4 h4'
      'f1 f1 f1 f1'
      'f2 f2 f2 f2';
    grid-gap: 0px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color:#f0f8ff;
    }


    .gccontact {
        display: grid;
        grid-template-areas:
          'h3 h3 h3 h3'
          'h1 h2 h2 h2'
          'm2 m2 m2 m2'
          'm3 m3 m3 m3'
          'm1 m1 m1 m1'
          'c4 c4 c4 c4'
          'f1 f1 f1 f1'
          'f2 f2 f2 f2';
        grid-gap: 0px;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        background-color:#f0f8ff; 
        }

.h1 {
    background-color: var(--primary-color);
    color:white;
    /* border: solid 1px red; */
    display: flex;
    align-items: center;
    
  
    }

.h2 {
    background-color: var(--primary-color);
    color:white;
    /* border: solid 1px red;*/
    
    } 

.h3 {
    background-color:var(--primary-color);
    color:white;
    /* border: solid 1px red; */
    font-size:12px;
    position: sticky;
    top: 0;
    z-index: 2;
    }

.h4 {
   
    color:black;
    /* border: solid 1px red; */
    display: table;   /* Allow the centering to work */
	margin: 0 auto;
    padding: 26px 0 15px 0;
    }


.m1 {
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, var(--primary-color), var(--primary-color), black);
    color:rgb(255, 255, 255);
    /* border: solid 1px red; */
    display: table;   /* Allow the centering to work */
    padding: 26px 0 15px 0;
  
}

.c4 {
    background-color: var(--primary-color);
    padding: 0px 0px 0px 0px; 
    height: 466px;  
    display:inline-block; 
    overflow:hidden;
    }

#myVideo {
   width: 100%; 
  
  }

.m2 {
   
    padding: 0px 0;   
 /* -webkit-animation:zoom 100s infinite; */
 /* animation:zoom 100s infinite; */
    background-repeat: no-repeat;
 /* background-image:url(slide02b.jpg); */
   
 /* background-attachment: fixed; */ 
    

    
    display: flex;
    /* border: solid 1px red; */
    /* height: 47vw;  */
    width: 100%;
    visibility: inherit;
    background-size: cover;
    justify-content: center;
    align-items: center;
    position:relative;
}

/* Django language selection  */

.langselectform select {
    border: 0 !important;  /*Removes border*/
    -webkit-appearance: none;  /*Removes default chrome and safari style*/
    -moz-appearance: none; /* Removes Default Firefox style*/
    appearance:none;
    text-indent: 0.01px; /* Removes default arrow from firefox*/
    text-overflow: "";  /*Removes default arrow from firefox*/ /*My custom style for fonts*/
    border: none;
    padding-left:0px;
    padding-right:0px;
    font-size:12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-color);
    background:none !important;
    text-align-last: right;

}

/* @-webkit-keyframes zoom {  
    0%{background-size:120%;}
    50%{background-size:100%;}
    100%{background-size:120%;}
    
    }

@keyframes zoom {  
    0%{background-size:120%;}
    50%{background-size:100%;}
    100%{background-size:120%;}
    }
*/


.m3 {
    background-color:white;
    color:black;
    padding: 54px 0;
    /* border: solid 1px red; */
    display: table;   /* Allow the centering to work */
	margin: 0 auto;
    }

.f1 {
    background-color:var(--primary-color);
    font-size:12px;
    list-style-type: none;
    list-style: none;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    padding: 18px 0 0px 0;
    }

.f2 {
    background-color:var(--primary-color);
    padding: 18px 0;
    position: sticky;
    bottom: 0;
    }

.f3 {
    background-color:var(--primary-color);
    color:white;
    /* border: solid 1px red; */
    font-size:11px;
    }
    

.gc > div {
    text-align: center;
    }

.gccontact > div {
    text-align: center;
    }

/* LOGO */

.logo
    {
    height: 18px;
    padding-left: 14px;
    /* border:green solid 1px; */
    }

.logosocial
    {
    height: 15px;
    /* border:green solid 1px; */
    }

.logosocial2
    {
    height: 14px;
    /* border:green solid 1px; */
    }

.logosocialtop
    {
    height: 14px;
    padding-top: 1px;

    /* border:green solid 1px; */
    }

.logosocial2top
    {
    height: 13px;
    padding-top: 1px;

    /* border:green solid 1px; */
    }

.logofooter
     {
    height: 12px;
    /* border:green solid 1px; */
    }


/* NAVIGATION */

/* LANGUAGE */

.langnav {
    list-style-type: none;
    overflow: hidden;
    margin: 0 10px 0 12px;
    padding: 0;
}

.langnav li {
    float:left;
    /* border:yellow 1px solid; */
} 

.langnav li.right {
    float:right;
} 

.langnav li a {
    color: white;
    text-decoration: none;
    display:block;
    padding: 8px 6px 8px 0px; 
} 


/* MAIN MENU */

#mnav {
    list-style-type: none;
    overflow: hidden;
    margin: 0;
    padding: 0; 
}   

#mnav li {
    float:left;
    /* border:yellow 1px solid; */
} 

#mnav li.right {
    float:right;
} 

#mnav li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 14px 18px 14px 12px;
    font-weight:600;
} 



.mnavmini {
    display:none;
}

* {
    box-sizing: border-box;
  }
  
  body {
  }
  
  .navbar {
  }
  

  
  .dropdown {
    overflow: hidden;
  }
  
  .dropdown .dropbtn {
    border: none;
    outline: none;
    color: white;
    background-color: inherit;
    font: inherit;
    margin: 0;
    padding: 14px 16px 14px 16px;
    font-weight:600;
    
    /* width: 100%; */
   
  }
  
  .navbar a:hover, .dropdown:hover .dropbtn {
    background-color: var(--menu-color);
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
    /* 
    border: 1px solid; 
    border-bottom:none; 
    */
 
    
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 100%;
    left: 0;
    /* box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); */
    
    margin-top: 0;
    z-index: 1;
   
   
  }
  
  .dropdown-content .header {
    background: var(--menu-color);
    padding: 16px;
    color: white;
    
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
   
    
  }
  
  /* Create three equal columns that floats next to each other */
  .columncorporate {
    float: left;
    width: 100%;
    padding: 14px 0px 0px 30px; 
    background-color: var(--primary-color);
    height: 300px;
    border-top:1px solid var(--border-color);
    border-bottom:1px solid var(--border-color);
    background-image: url('corporate.jpg'), linear-gradient(to right, var(--primary-color),#000000,#000000,#000000);  
    background-size:contain;
    background-position: right;
    background-repeat: no-repeat;
   
  }



  .column {
    float: left;
    width: 100%;
    padding: 14px 0px 0px 30px; 
    background-color: var(--primary-color);
    height: 300px;
    border-top:1px solid var(--border-color);
    border-bottom:1px solid var(--border-color);
    background-image: url('engineeringservices.jpg'), linear-gradient(to right, var(--primary-color),#000000,#000000,#000000);
    background-size:contain;
    background-position: right;
    background-repeat: no-repeat;
   
  }

  .columnclient {
    float: left;
    width: 100%;
    padding: 14px 0px 0px 30px; 
    background-color: #000000;
    height: 300px;
    border-top:1px solid var(--border-color);
    border-bottom:1px solid var(--border-color);
    background-image: url('engineeringclient.jpg'), linear-gradient(to right, var(--primary-color),#000000,#000000,#000000);
    background-size:contain;
    background-position: right;
    background-repeat: no-repeat;
   
   
   
  }

  .columnpic {
    float: left;
    width: 100%;
 /* padding: 10px; */
    background-color: var(--primary-color);
    height: 330px;
  }
  
  .columncorporate a {
    float: none;
    color: black;
    padding: 16px;
    text-decoration: none;
    display: block;
    text-align:left; 
    border-left: 3px solid #6ec5ff00;
    line-height: 14px;
  }

  .column a {
    float: none;
    color: black;
    padding: 16px;
    text-decoration: none;
    display: block;
    text-align:left; 
    border-left: 3px solid #6ec5ff00;
    line-height: 14px;
  }

  .columnclient a {
    float: none;
    color: black;
    padding: 16px;
    text-decoration: none;
    display: block;
    text-align:left; 
    border-left: 3px solid #6ec5ff00;
    line-height: 14px;
  }
  

  .columncorporate a:hover {
    /* background-color: #0040be; */
    border-left: 3px solid #6ec5ff;
    color: #6ec5ff !important;

     }


  .column a:hover {
 /* background-color: #0040be; */
    border-left: 3px solid #6ec5ff;
    color: #6ec5ff !important;
  }

  .columnclient a:hover {
    /* background-color: #0040be; */
    border-left: 3px solid #6ec5ff;
    color: #6ec5ff !important;

     }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }


/* PRODUCT */

.productlogo {
    width: 120px;
    height: 120px;
    /* border: solid grey 1px; */

    }





/* CLIENTS */

.clients {
    width: 100%;
    margin: auto;
    /* border: solid grey 1px; */
}

.clientnav {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    list-style: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
}

.clientnav li {
    /* border:rgb(0, 17, 255) 1px solid; */
    padding: 10px 2vw 10px 2vw; 
} 

.clientlogo {
    height: clamp(36px, 5.5vw, 81px);
    
    /* 🆕 Başlangıçta siyah-beyaz görünmesi için */
    filter: grayscale(100%); /* 🆕 */

    /* 🆕 Hover sırasında yumuşak geçiş için */
    transform: scale(1); /* 🆕 */
    transition: filter 0.3s ease, transform 0.3s ease; /* 🆕 */
}

/* 🆕 Hover efekti: renkli hale gelir ve hafif büyür */
.clientlogo:hover {
    filter: grayscale(0%); /* 🆕 */
    transform: scale(1.1); /* 🆕 */
}



/* FEATURED*/

.featured {
    
    width: 100%;
    margin: auto;

    /* border: solid grey 1px; */

    }

.featurednav {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    list-style: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    }

    
.featurednav li {
    /* border:rgb(0, 17, 255) 1px solid; */
    padding: 28px 2vw 28px 2vw;
    border: 1px solid transparent;
 
    } 

.featurednav li:hover {
    }

.featuredlogo {
    height: clamp(184px, 18vw, 360px);
    border-radius: 18px;
    border: 2px solid transparent;
    filter: grayscale(100%);
	transition: .2s ease-in-out;
    }

.featuredlogo:hover {
    filter: none;
	transform: scale(1.05);
    border-bottom: 2px solid var(--border-color);
    }

.featurednav a  {
    text-decoration: none;
    color: white ;
    } 

.featurednav a:hover {
    /* color: #92d3ff; blue title when hovering items */ 
    } 



.hover-name {
    letter-spacing: 1px;
    }

    li:hover .hover-name {

    }

    .hover-name2 {
    letter-spacing: 1px;    
    font-weight: bolder;
    }

    li:hover .hover-name2 {
    color: var(--border-color);
    }

    .hover-name3 {
    font-weight: bolder;
    }




    /* border: solid grey 1px; */

    
  



.productnav {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    list-style: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
 
    }

    
.productnav li {
    /* border:rgb(0, 17, 255) 1px solid; */
    padding: 10px 2vw 10px 2vw; 
    } 



    

.h4 ul a {
    text-decoration: none;
    color:black;
}

.m2 ul a {
    text-decoration: none;
    color:black;
}


.cardpic {
    width:70%; 
    margin-top:24px; 
    border: 2px solid black
}



/* MAIN PAGE */


.title {
    font-size: clamp(30px, 6vw, 70px);
    font-weight: 900;
    line-height: min(9vw, 160px);
    color: rgb(255, 255, 255) !important;
    position:absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
   
 /* text-shadow: 2px 2px #000000; */
    }

.titleclient {
    font-size: clamp(24px, 2vw, 40px);
    font-weight: 900;
    line-height: min(16vw, 70px);
    color: #3d5d7e !important;
    }

.titlefeatured {
    font-size: clamp(24px, 2vw, 40px);
    font-weight: 900;
    line-height: min(16vw, 70px);
    color: var(--text-color) !important;
  
    }

.getaquote {
    font-size: 18px;
    font-weight: 400;
    width:200px;
    height:50px;
    background: white;
    border-radius: 20px;
    border: 2px rgb(0, 173, 23) solid;
    margin: 3vw 0;
    }

.getaquote:hover {
    color:white;
    background:  rgb(0, 173, 23);

    }

.description {
    font-size: clamp(16px, 1.1vw, 20px);
    font-weight: 200;
    text-decoration: none;
    color:black;

    }

.paragraph {
    margin-left: clamp(50px, 5vw, 1200px);
    margin-right: clamp(50px, 5vw, 1200px);
    text-align: justify !important;
    font-size: clamp(16px, 1.1vw, 20px);
    font-weight:200;
    letter-spacing: 0.06vw;
    line-height: 24px;
}

.paragraphcenter {
    margin-left: clamp(50px, 22vw, 1200px);
    margin-right: clamp(50px, 22vw, 1200px);
    font-size: clamp(16px, 1.1vw, 20px);
    font-weight:200;
    letter-spacing: 0.06vw;
    line-height: 24px;
}

.productbanner {
    width: 70vw;
    max-width: 1200px;
    min-width: 160px;
   /*  border: solid 1px green; */
   transition: transform 1s;
   Margin: 0vw 0 3vw 0;
    }


.productbanner:hover {
    transform: rotate3d(-12, 30.0, 15.0, -4deg);
    }

.productmedia {
    width: 40vw;
    max-width: 500px;
    min-width: 220px;
    border: solid 2px rgb(63, 63, 63);
    border-radius: 1vw;
    Margin: 3vw 0 3vw 0;
        }

.video {
    width: 40vw;
    max-width: 500px;
    min-width: 220px;
    border: solid 2px rgb(63, 63, 63);
    border-radius: 1vw;
    Margin: 3vw 0 3vw 0;
    }



/* PRODUCTS */

.subproductnav {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    list-style: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    }
    
.subproductnav li {
    /* border:rgb(0, 17, 255) 1px solid; */
    padding: 10px 10px 10px 10px;
    } 


.card {
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.2);
    max-width: 286px;
    margin: auto;
    text-align: center;
    background: white;
   
    }
      
.price {
    color: grey;
    font-size: 22px;
    }
      
.card button {
    border: none;
    outline: 0;
    padding: 12px;
    color: white;
 
    text-align: center;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
    }
      
.card button:hover {
    
    }

.buttoninstock {
    background-color: rgb(0, 173, 23);
    }

.buttoninstock:hover {
    background-color: rgb(0, 173, 23);
    }

.buttonoutofstock {
    background-color: rgb(190, 190, 190);
}   

.buttonoutofstock:hover {
    background-color: rgb(175, 0, 0); 
}


    /* Footer */

    .footernav {
        display: flex;
        flex-wrap: wrap;
        list-style-type: none;
        list-style: none;
        overflow: hidden;
        margin: 0;
        padding: 0;
        justify-content: center;
        align-items: center;
        }
        
    .footernav li {
        /* border:rgb(0, 17, 255) 1px solid; */
        padding: 4px 4px 0px 4px;
        } 

    .footernav a {
        text-decoration: none;
        color:white;
        }

    
    /* CONTACT */

    .contactcard {
        border:2px dashed rgb(160, 160, 160);
        }
    
    .contactcenter {
            margin-left: clamp(50px, 8vw, 1200px);
            margin-right: clamp(50px, 8vw, 1200px);
            font-size: clamp(16px, 1.1vw, 20px);
            font-weight:200;
            letter-spacing: 0.06vw;
            line-height: 24px;
    }


    /* CLIENT LOGIN BUTTON */
.clientlogin {
    color:#6ec5ff !important;
}







/* Butonları saran ve dikeyde ortalayan kapsayıcı */
.button-container {
    position: fixed; /* Ekran kaydırılsa bile sabit kalır */
    top: 80%; /* Kapsayıcının üst kenarını ekranın ortasına getirir */
    right: 0;
    transform: translateY(-50%); /* Kapsayıcıyı kendi yüksekliğinin %50'si kadar yukarı kaydırır */
    display: flex;
    flex-direction: column; /* Butonları alt alta sıralar */
    gap: 16px; /* Butonlar arasına boşluk ekler */
    z-index: 1000;
}

/* Gizli checkbox */
#toggle-button {
    display: none;
}

/* Butonun normal durumu */
.client-login-button {
    width: 180px;
    text-align: center; /* Metin ortalanır */
    background-color: black;
    color: white;
    padding: 20px 0px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    text-decoration: none;
    border-radius: 6px 0 0 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #6ec5ff;
    border-right: none;
    opacity: 0.3;
    transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

/* Butonun içindeki logo */
.client-login-button img {
    width: 130px;
    height: auto;
    display: block;
}

/* Butonun içindeki slogan */
.client-login-button span {
    font-size: 10px;
    color: white;
    margin-top: 4px;
    text-align: center;
}

/* Hover efekti */
.client-login-button:hover {
    background-color: black;
    color: white;
    opacity: 1;
}

/* Checkbox işaretli ise buton daha belirgin */
#toggle-button:checked + label.client-login-button {
    opacity: 1;
    background-color: black;
    border-color: #6ec5ff;
}

/* İlk butonun içindeki uyarı metni gizli */
.click-indicator {
    display: none;
    font-size: 9px;
    color: #ffd700; /* Altın sarısı dikkat çekici renk */
    margin-top: 4px;
}

/* Checkbox işaretlenince uyarı metni görünür */
#toggle-button:checked + label.client-login-button .click-indicator {
    display: block;
}

/* İkinci link başlangıçta gizli */
.open-link {
    display: none;
}

/* Checkbox işaretliyken ikinci link görünür */
#toggle-button:checked ~ .open-link {
    display: flex;
    flex-direction: column;
    width: 180px;
    text-align: center;
    background-color: black;
    color: white;
    padding: 20px 0px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    text-decoration: none;
    border-radius: 6px 0 0 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #6ec5ff;
    border-right: none;
    cursor: pointer;
    align-items: center;
    gap: 4px;
    opacity: 1;
    letter-spacing: 1px;
}

/* uyarı metni hover */
#toggle-button:checked ~ .open-link:hover {
    color: #6ec5ff;
}

/* İkinci link içindeki logo */
.open-link img {
    width: 130px;
}

/* İkinci link içindeki slogan */
.open-link span {
    font-size: 10px;
    margin-top: 4px;
}

/* İkinci link hover efekti */
.open-link:hover {
    background-color: black;
    color: white;
    opacity: 1;
}




/* CLIENT LOGIN LINKI */




.client-login {
  position: relative !important;
  z-index: 1 !important;
}

.client-login a {
  display: inline-block !important;
  transition: transform 0.2s ease !important;
  box-shadow: none !important;
  z-index: 2 !important;
}



/* USER LOGIN */













    @media screen and (max-width: 850px) {
        #mnav li.right, #mnav li {}
        .gc {
            grid-template-areas:
              'h3 h3 h3'
              'h1 h1 h1'
              'h2 h2 h2'
              'm2 m2 m2'
              'm3 m3 m3'
              'm1 m1 m1'
              'h4 h4 h4'
              'f1 f1 f1'
              'f2 f2 f2'
              'f3 f3 f3';
            }
        
            .gccontact {
                grid-template-areas:
                'h3 h3 h3'
                'h1 h1 h1'
                'h2 h2 h2'
                'm2 m2 m2'
                'm3 m3 m3'
                'm1 m1 m1'
                'c4 c4 c4'
                'f1 f1 f1'
                'f2 f2 f2'
                'f3 f3 f3';
                }


    
        .logo
            {
            margin: auto;
            text-align: center;
            padding:0;
            }
    
        .mnavbig {
            display:none;
            }
            
        .mnavmini {
            display:block;
            }
    
        #mnav li a {
            padding: 8px 10px 8px 0px; 
            }
        
        .dropdown .dropbtn {
            padding: 8px 10px 8px 10px; 
            }
        
        .h1 {
            padding: 14px;
            }

        .h2 {
            padding-bottom: 14px;
            font-size:12px;
            }
        
        .m1 {
           
            
            }
        
        .m2 {
            
            animation:none !important;
            
            }

            .description {
                font-size: clamp(16px, 1.1vw, 20px);
                font-weight: 200;
                text-decoration: none;
                color:black;
                }
            
            .paragraph {
                margin-left: clamp(10px, 8vw, 1200px);
                margin-right: clamp(10px, 8vw, 1200px);
                text-align: justify;
                font-size: clamp(16px, 1.1vw, 20px);
                font-weight:200;
                letter-spacing: 0.06vw;
                line-height: 24px;
            }
            
            .paragraphcenter {
                margin-left: clamp(10px, 8vw, 1200px);
                margin-right: clamp(10px, 8vw, 1200px);
                font-size: clamp(16px, 1.1vw, 20px);
                font-weight:200;
                letter-spacing: 0.06vw;
                line-height: 24px;
            }
            
            .productbanner {
                width: 82vw;
                max-width: 1200px;
                min-width: 160px;
               /*  border: solid 1px green; */
               transition: transform 1s;
               Margin: 3vw 0 6vw 0;
                }
            
            
            .productbanner:hover {
                transform: rotate3d(-12, 30.0, 15.0, -4deg);
                }
            
            .productmedia {
                width: 82vw;
                max-width: 500px;
                min-width: 220px;
                border: solid 2px rgb(63, 63, 63);
                border-radius: 1vw;
                Margin: 3vw 0 3vw 0;
                    }
            
            .video {
                width: 82vw;
                max-width: 500px;
                min-width: 220px;
                border: solid 2px rgb(63, 63, 63);
                border-radius: 1vw;
                Margin: 3vw 0 3vw 0;
                }
            
            .card {
                max-width: 222px;
                }
            
/* Responsive layout - Megamenu */
            .column {
                height: 270px;
                background-image: linear-gradient(to right, var(--primary-color), #000000);
                }

            .columnclient {
                height: 270px;
                background-image: linear-gradient(to right, var(--primary-color), #000000);
              }

            .columncorporate {
                height: 270px;
                background-image: linear-gradient(to right, var(--primary-color), #000000);
              }
            
            .column a {
            /*     text-align: center; */
                line-height: 20px;
                  }
            
            .columnclient a {
            /*     text-align: center; */
                line-height: 20px;
                  }

            .columncorporate a {
            /*     text-align: center; */
                line-height: 20px;
                  }
            
            h3 {
              /*     text-align: center; */
            }

            .clientlogo {
                height: 50px;
            
                /* border: solid grey 1px; */
            
                }
            
            .languagetextonright {
                padding: 8px 0px 8px 0px !important; 
                }

        }

        @media screen and (max-width: 425px) {

            .dropdown .dropbtn {
                padding: 8px 6px 8px 6px; 
                }
            
            /* Açılan ikinci buton için responsive */    
            .client-login-button {
                    width: 120px;
                    padding: 10px 5px;
                }

            .client-login-button img {
                    width: 80px;
                }

            .client-login-button span {
                    font-size: 8px;
                    margin-top: 2px;
                }

            /* Açılan ikinci buton için responsive */
            .open-link {
                width: 100px;
                padding: 10px 0;
            }

            .open-link img {
                width: 80px;
            }

            .open-link span {
                font-size: 10px;
                margin-top: 2px;
            }
            #toggle-button:checked ~ .open-link {
                font-size: 10px;
                margin-top: 2px;
                width: 120px;
                padding: 10px 5px;
            }


        }


        







          
          