@font-face {
    font-family: 'gothic';
    src: url('/tr/fonts/GOTHIC.eot'); /* IE9 Compat Modes */
    src: url('/tr/fonts/GOTHIC.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('/tr/fonts/GOTHIC.woff') format('woff'), /* Pretty Modern Browsers */
         url('/tr/fonts/GOTHIC.ttf')  format('truetype'); /* Safari, Android, iOS */
        
      }
html, body {
    height: 100%;
    margin: 0;
    font-family: "GOTHIC";
    box-sizing: border-box;
}
body {
    background: linear-gradient(
        to right,
        #262522 0%,
        #262522 30%,
        #302E2B 30%,
        #302E2B 100%
    );
} 
/* POSİTİON YERLEŞİM DEĞERLERİ */
/* 576 dan küçükse X-SM */
@media screen and (max-width: 576px) {
    body {
        background: linear-gradient(
            to right,
            #302E2B 0%,
            #302E2B 30%,
            #302E2B 30%,
            #302E2B 100%
        );
    } 
}
/* 576 - 768 arası SM */
@media screen and (min-width: 576px) and (max-width: 768px) {
    body {
        background: linear-gradient(
            to right,
            #302E2B 0%,
            #302E2B 30%,
            #302E2B 30%,
            #302E2B 100%
        );
    }    
}
/* 768 - 992 arası MD */
@media screen and (min-width: 768px) and (max-width: 992px) {
   
}
/* 992 - 1200 arası LG */
@media screen and (min-width: 992px) and (max-width: 1200px) {
  
}
/* 1200 - 1920 arası xl */
@media screen and (min-width: 1200px) and (max-width: 1920px) {
    
}
/* 2720 den büyükse  */
@media screen and (min-width: 1920px) {
    
}
.menuAnaSayfaBaslik a {
    width:100%;
    color: #FFF;
    font-size: 11pt;
    text-decoration: none;
}
.menuAnaSayfaBaslik a:hover {
    color: #F7941D;
}
.menuAnaSayfaIcon {
    color: #F7941D;
}
/* Menü */
.menu {
    width:237px;
    background-color:#262522;
    padding: 0 20px;
    overflow-y: auto;
}
.menu hr {
    border-top: 1px solid #CCC;
}
.menu .baslik {
    width:100%;
    color: #DDD;
    font-size: 11pt;
}
.menu .madde a{
    width:100%;
    color: #999;
    font-size: 10pt;
    text-decoration: none;
}
.menu .madde a:hover{
    color: #F7941D;
}
.menu i {
    color: #F7941D;
}

.mobilMenu {
    position: fixed;
    top:0;
    left:-237px;
    z-index: 900;
    width: 287px;
    padding: 0;
    transition: 0.5s;
}
.mobilMenuAcik {
    position: fixed;
    top:0;
    left:0;
    z-index: 900;
    width: 287px;
    padding: 0;
    transition: 0.5s;
}
.menuHandler {
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF !important;
    background-color:#262522;
    border-radius: 0 15px 15px 0 ;
    font-size: 19pt;
}
/*---------HOME VİDGETLER-------------*/
.homeVidget {
    width: 100%;
    height: 450px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 150%;
    border-radius: 20px;
    overflow: hidden;
    position:relative;
    transition: 0.5s;
}
.homeVidget:hover {
    background-size: 170%;
    transition: 0.5s;
}
.homeVidget .alt{
    width: 100%;
    height: 190px;
    overflow: hidden;
    position:absolute;
    top: 270px;
    left:0;
    text-align: center;
    padding: 0 5%;
}
.homeVidget .ust{
    width: 100%;
    height: 190px;
    overflow: hidden;
    position:absolute;
    top: 35px;
    left:0;
    text-align: center;
    padding: 0 5%;
}
.homeVidget .baslik{
    text-align: center;
    font-size: 2.3em;
    font-weight: lighter;
    line-height: 1;
    padding-bottom: 7px;
}
.homeVidget .baslik2{
    text-align: center;
    font-size: 12pt;
    font-weight:bold;
    line-height: 1.2;
    padding-bottom: 10px;
}
.homeVidget .aciklama{
    text-align: center;
    font-size: 11pt;
    font-weight:normal;
    line-height: 1.5;
}
.homeFontBeyaz {
    color:#FFF;
}
.homeFontSiyah {
    color:#000;
}

/*----------- SCROLBAR ----------------*/
/* width */
::-webkit-scrollbar {
    width: 7px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #262522; 
  }
    /* Track */
  ::-webkit-scrollbar-track:hover {
    background: #DDD; 
  }
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #000; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #FBB040; 
  }
  /*--------------BUTONLAR------------------------*/
  .buttonYesil {
      width: 100%;
      height: 30px;
      color: #8DC63F;
      border: 1px solid #619314;
      border-radius: 14px;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 10%;
      font-size: 11pt;
      transition: 0.5s;
  }
  .buttonYesil:hover {
    color: #FFF;
    background-color: #8DC63F;
    transition: 0.5s;
}
.buttonMavi {
    width: 100%;
    height: 30px;
    color: #00AEEF;
   border: 1px solid #006787;
    border-radius: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    font-size: 11pt;
    transition: 0.5s;
}
.buttonMavi:hover {
  color: #FFF;
  background-color: #00AEEF;
  transition: 0.5s;
}
.buttonturuncu {
    width: 100%;
    height: 30px;
    color: #F7941D;
  /*  background-color: #F7941D;*/
    border: 1px solid #905a18;
    border-radius: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    font-size: 11pt;
    transition: 0.5s;
}
.buttonturuncu:hover {
  color: #FFF;
  background-color: #F7941D;
  transition: 0.5s;
}

/*-------------- LİSTELEME ALANLARI------------------------*/
.listelemeCover {
    border-radius: 18px;
    background-color: #262522;
    padding: 15px;
    width: 100%;
    height:fit-content;
    overflow-x: hidden;
    margin-bottom: 22px;
}
.listelemeCover .logoImage img {
    width: 100%;
    height:auto;
}
.listelemeCover .logoImage {
    display:flex;
    align-items: center;
}
.listelemeCover .firmaAdi {
    color: #DDD;
    font-size: 9pt;
    line-height: 1.2;
    display:flex;
    align-items: center;
}
.listelemeCover .tarih {
    color: #F7941D;
    font-size: 11pt;
    display:flex;
    align-items: center;
    line-height: 1;
}
.listelemeCover .tarih i {
    padding: 0 5px 0 0;
}
.listelemeCover .projeAdi {
    color: #F7941D;
    font-size: 12pt;
    line-height: 1.2;
}
.listelemeCover .projeTeknoloji {
    color: #BBB;
    font-size: 11pt;
    line-height: 1.2;
}
.listelemeCover .aciklama {
    color: #999;
    font-size: 10pt;
    line-height: 1.2;
}
.listelemeCover .link a {
    color: #00AEEF;
    font-size: 9pt;
    line-height: 1;
    text-decoration: none;
    display:flex;
    align-items: center;
}
.listelemeCover .link a:hover {
    color: #F7941D;
}
.sayfaBasligi, .sayfaBasligi a {
    color: #F7941D;
    font-size: 9pt;
    text-decoration: none;
}
.sayfaBasligi a:hover {
    color: #EEE;
}
/*-----------------  DETAY LİSTELEME COVER ----------------------*/
.detayCover {
    border-radius: 18px;
    background-color: #262522;
    padding: 2em;
    width: 100%;
    height:fit-content;
    overflow-x: hidden;
    margin-bottom: 22px;
}
.detayCover .logo {
    display:flex;
    align-items: center;
}
.detayCover .logo img {
    width: 100%;
    height:auto;
}
.detayCover .firmaAdi {
    color: #F7941D;
    font-size: 13pt;
    line-height: 1.2;
    display:flex;
    align-items: center;
}
.detayCover .tarih {
    color: #F7941D;
    font-size: 14pt;
    font-weight:bold;
    display:flex;
    flex-direction: column;
    align-items:flex-end;
    justify-content: center;
    line-height: 1;
}
.detayCover .tarih i {
    padding: 0 5px 0 0;
}
.detayCover .ProjeBaslik {
    color: #F7941D;
    font-size: 11pt;
    font-weight:bold;
    line-height: 1;
}
.detayCover .ProjeBaslikYazi {
    color: #BBB;
    font-size: 14pt;
    line-height: 1;
}
.detayCover .aciklama {
    color: #888;
    font-size: 12pt;
    line-height: 1.2;
    text-align: justify;
}
.detayCover .video{
    width: 100%;
    height:auto;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}
.detayCover .video img{
    width: 100%;
    height:auto;
}
.detayCover .video .filigran{
    width: 100%;
    height:100%;
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    top:0;
    left: 0;
}
.detayCover .video i{
    position: absolute;
    font-size: 5vw;
    color: #FFF;
    top: calc((100% - 6vw)/2);
    left: calc((100% - 5vw)/2);
    cursor:pointer;
    transition: 0.3s;
}
.detayCover .video i:hover{
    color: #F00;
    transition: 0.3s;
}
.detayCover .video .etiket{
    position: absolute;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10pt;
    color: #000;
    background-color: #FFF;
    top: 10%;
    right: 5%;
    transition: 0.3s;
    height: 30px;
    padding: 0 20px;
}
/*------------------ Detayların listelemesi ---------------------------*/
.detayListelemeCover img {
    width:100%;
    height:auto;
    border-radius: 13px;
    overflow: hidden;
}
.detayListelemeCover {
    position: relative;
    border-radius: 18px;
   /* background-color: #000;*/
    overflow: hidden;
   /* padding: 7px;*/
    cursor: pointer;
    margin-bottom: 22px;
}
.t-filigran{
    width: 100%;
    height:100%;
    background-color: rgba(0,0,0,0);
    position: absolute;
    top:0;
    left: 0;
    transition: 0.5s;
}
.t-filigran:hover {
    background-color: rgba(0,0,0,0.5);
    transition: 0.5s;
}
.detayListelemeCover .t-icon{
    position: absolute;
    font-size: 2vw;
    color: #FFF;
    top: calc(50% - 1vw);
    left: calc(50% - 1vw);
    cursor:pointer;
    transition: 0.5s;
    opacity: 0;
}
.t-filigran:hover .t-icon {
    transition: 0.5s;
    opacity: 1;
}
iframe { 
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
  }
.modalCloseIcon {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 40pt;
    color: #F7941D;
    cursor: pointer;
    z-index: 999 !important;
    transition: 0.5s;
}
.modalCloseIcon:hover {
    color: #F00;
    transition: 0.5s;
}
/*SOL MENU STICKY*/
.solMenu {
    position:sticky; 
    top:0; 
    background-color:#262522;
    height:100vh; 
    overflow-y: auto; 
    overflow-x:hidden;
}
