*
{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: 'Nunito', sans-serif;
}
html
{
   width: 100vw;
   height: 100%;
   overflow-x: hidden;
   overflow-y: hidden;
   pointer-events: none;
   user-select: none;
}
body
{
   overflow-x: hidden;
   top: 0 !important;
}
.skiptranslate iframe {
   display: none !important;
}
.us
{
   user-select: text;
}
#preloader
{
   position: fixed;
   width: 100vw;
   height: 100%;
   z-index: 99999999999999999;
   user-select: none;
   pointer-events: none;
   background: #fff;
   display: flex;
   align-items: start;
   justify-content: center;
   filter: hue-rotate(360deg);
   opacity: 1;
   top: 0;
   scale: 1;
   overflow: hidden;
}
#loader
{
   margin-top: 380px;
   position: fixed;
   width: 150px;
   height: 150px;
   background-size: 100%;
   transition: 1.2s;
   display: flex;
   align-items: center;
   justify-content: center;
}
#loader span
{
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   transform: rotate(calc(18deg * var(--i)));
}
#loader span::before
{
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 15px;
   height: 15px;
   border-radius: 50%;
   background: #1c99cb;
   box-shadow: 0 0 5px #1c99cb,
               0 0 10px #1c99cb,
               0 0 15px #1c99cb,
               0 0 20px #1c99cb,
               0 0 40px #1c99cb,
               0 0 60px #1c99cb,
               0 0 80px #1c99cb,
               0 0 100px #1c99cb;
   animation: loadanimate 2s linear infinite;
   animation-delay: calc(0.1s * var(--i));
}
@keyframes loadanimate {
   50%
   {
      transform: scale(1);
   }
   80%,100%
   {
      transform: scale(0);
   }
}
#loader img
{
   width: 120px;
}
:root
{
   --studentcolor1:#2A0869;
   --studentcolor2:#9130D8;
}
.students-col::-webkit-scrollbar
{
   width: 8px;
   scroll-behavior: smooth;
}
.students-col::-webkit-scrollbar-thumb
{
   background-color: rgba(255, 255, 255, 0.7);
   border-radius: 10px;
}
.students-col::-webkit-scrollbar-track
{
   border-radius: 10px;
   margin-bottom: 1.3em;
   margin-top: 1.3em;
}
/*Translate*/
.goog-te-gadget-icon {
   border-radius: 50px;
 }
 
 
.goog-te-gadget-simple {
     background-color: transparent !important;
     border:0 !important;
     font-size: 10pt;
    font-weight:800;
     display: inline-block;
     padding:0 10px !important;
     cursor: pointer;
     zoom: 1;
     border-radius: 12px;
 }
 
 .goog-te-gadget-simple  span {
    color:white !important;
}
.goog-te-gadget-simple span:nth-child(3)
{
   display: none;
}
.translate
{
   color:white;
   font-size: 16px;
   font-weight: bolder;
   position: relative;
   height: 30px;
   width: 90%;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: 0.3s;
}
.translate:hover
{
   background: rgba(255, 255, 255, 0.4);
   box-shadow: 0 0 5px black;
   border-radius: 100px;
}
/*Translate*/
nav
{
   position: absolute;
   z-index: 2000;
   padding:10px 1.5%;
   padding-left: 10%;
   width: 100%;
   transition: 0.3s;
}
.nav-anim
{
    background: rgba(0, 0, 0, 0.4);
    position: fixed;
    padding: 4px 1%;
    padding-left: 5%;
}
nav .logo_img
{
    margin-left: 50px;
}
nav img
{
   height: 42px;
   transition: 0.3s;
}
.nav-wrapper
{
   position: relative;
   display: flex;
   justify-content: space-between;
   align-items: center;
}
nav .menu ul
{
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 15px;
   flex-wrap: wrap;
   height: 15px;
}
nav .menu ul li
{
   list-style-type: none;
}
#MenuBtn
{
   display: none;
   font-size: 24px;
   color: white;
}
.hider
{
   display: none;
   color: white;
   font-size: 24px;
}
.vh_line
{
   background: white;
   height: 25px;
   width: 4px;
   border-radius: 15px;
   opacity: 1;
   margin: 0;
   padding: 0;
   margin-right: 15px;
   box-shadow: 0 0 5px black;
}
nav .menu .menu-link
{
   color:white;
   font-size: 17px;
   position: relative;
   text-decoration: none;
   transition: 0.3s;
}
nav .menu .menu-link:hover
{
   color: #22b5f0;
}
nav .menu .menu-link::after
{
   content: '';
   display: block;
   width: 0;
   height: 3px;
   background: white;
   border-radius: 10px;
   margin: auto;
   transition: 0.3s;
}
nav .menu .menu-link:hover::after
{
   background:#22b5f0;
   width: 100%;
}
@media (max-width:960px)
{
   #MenuBtn
   {
      display: block;
   }
   nav .menu
   {
      display: none;
      position: fixed;
      top: 0;
      left: 100%;
      height: 100vh;
      width: 100vw;
      background: rgba(0, 0, 0, 0.3);
      transition: 0.4s;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(3px);
   }
   nav .menu ul
   {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
   }
   .hider
   {
      display: flex;
   }
   nav
   {
      padding: 10px 4.5%;
   }
   .nav-anim
   {
      padding: 4px 4.5%;
   }
}
.wrap
{
    width: 100vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
.wrapper
{
    margin: 50px 0;
}
.bg-img
{
    height: 100vh;
    position: absolute;
    object-fit: cover;
    object-position: center;
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(18px);
    width: 100%;
    scale: 1.11;
    user-select: none;
    pointer-events: none;
}
.t_box
{
    background: linear-gradient(to bottom , white 30%, transparent);
    border-radius: 25px 25px 0 0 ;
    height: 100vh;
    padding-top: 5px;
}
.row
{
    padding-bottom: 30px;
    display: flex;
    justify-content: space-between;
}
.row .t_box p
{
    font-size: 16px;
    color: rgba(0, 0, 0, 0.5);
    margin: 0;
    padding: 0;
    user-select: none;
    pointer-events: none;
}
.row h2
{
    font-size: 20px;
}
.row .t_box .kapak-border
{
    height: 100%;
    position: relative;
}
.row .t_box .about
{
    display:flex;
    justify-content: space-between;
    align-items:center;
    margin-top: 3px;
}
.row .t_box .kapak
{
    min-height: 78%;
    max-height: 78%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    user-select: none;
    pointer-events: none;
    position: absolute;
}
.row .t_box .kapak img
{
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
    object-position: center;
    user-select: none;
    pointer-events: none;
}
.sider
{
    display:flex;
    justify-content:space-between;
    padding-top:10px;
    width: 90%;
}
.sider article
{
    width: 70%;
}
.sider aside
{
    display:flex;
    flex-direction:column;
    gap: 10px;
    width:370px;
    align-items:center;
}
.row .metin img
{
    height: 500px;
    width: 97%;
    object-fit: cover;
    object-position: center;
    border-radius: 25px;
    user-select: none;
    pointer-events: none;
    display: flex;
    align-items: center;
    margin: auto;
    box-shadow: 0 0 15px black;
}
@media (max-width:1399px)
{
    .row .metin img
    {
        height: auto;
    }
}
@media (max-width:1199px)
{
    .row .t_box .kapak
    {
        object-fit: contain;
        object-position: top;
    }
    .row .t_box
    {
        height: 80vh;
    }
}
@media (max-width:991px)
{
    .row .t_box
    {
        height: 65vh;
    }
    .row .metin img
    {
        width: 100%;
    }
}
@media (max-width:767px)
{
    .sider
    {
        flex-direction: column;
    }
    .sider article
    {
        width: 100%;
    }
    .sider aside
    {
        margin: auto;
    }
    .row .t_box .about
    {
        display: none;
    }
    .row .t_box
    {
        height: 55vh;
    }
}
@media (max-width:575px)
{
    .row .t_box
    {
        height: 55vh;
    }    
}
@media (max-width:500px)
{
    .row .t_box
    {
        height: 47vh;
    }
}
@media (max-width:440px)
{
    .row .t_box
    {
        height: 42vh;
    }
}
.row .metin a
{
  text-decoration:none;
}
.row .metin a:hover
{
  text-decoration:underline;
}
.row .metin
{
    font-size: 20px;
    font-weight: 400;
}
.row center
{
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 20px 0;
}
.row iframe
{
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    width: 800px;
    height: 450px;
}
.row p b
{
    color: #89C6FC;
}
.row .details
{
    display: flex;
    justify-content: center;
    align-items: end;
    flex-direction: column;
    position: relative;
    
}
.details .info
{
    background: rgba(0, 0, 0, 0.1);
    box-shadow:  0 0 5px rgba(0, 0, 0, 0.6);
    width: 370px;
    min-width: 370px;
    max-width: 370px;
    border-radius: 20px;
    padding: 5px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-height: 300px;
    overflow-y: scroll;
    position: relative;
}
.show-after::after
{
    opacity: 1;
    content: '';
    pointer-events: none;
    border-radius: 20px;
    position: absolute;
    top:0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35),transparent 15%);
    transition: 0.2s;
}
.details.scroll-bottom::after
{
    opacity: 0;
    transition: 0.2s;
}
.details .info h1
{
    width: 100%;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 5px 10px;
    transition: 0.2s;
}
.details .info h1:hover
{
    background: rgba(0, 0, 0, 0.2);
}
.details .info h3
{
    font-size: 24px;
}
.details .info .keys_title
{
    display: flex;
    justify-content: center;
}
.details .info .keys
{
    width: fit-content;
    position: relative;
    font-weight: bold;
    padding: 0;
    user-select: none;
    margin-bottom: 5px;
}
.details .info p
{
    margin: 0;
}
.paylas
{ 
    padding: 6px 8px; border-radius: 17px; background: transparent; border:3px solid #89C6FC; color: #89C6FC; transition: 0.3s;
}
.paylas:hover 
{ 
    background-color:#89C6FC; color: white;
    box-shadow: 0 0 5px 3px #89C6FC;
}
.links
{
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin: 15px 0;
}
.author-date-link
{
    display: flex;
    align-items: baseline;
    flex-direction: column;
    gap: 10px;
}
.author-date-link p
{
    color: rgba(0, 0, 0, 0.5);
    padding: 0;
    margin: 0;
}
.author-date-link p a
{
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    transition: 0.25s;
    position: relative;
}
.author-date-link p a:hover
{
    color: #89C6FC;
}
.author-date-link p a::after
{
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; margin: auto;
    background: rgba(0, 0, 0, 0.5);
    width: 0;
    height: 3px;
    border-radius: 8px;
    transition: 0.25s;
}
.author-date-link p a:hover::after
{
    width: 100%;
    background: #89C6FC;
}
.author-date-link p a:active::after
{
    height: 100%;
}
aside .card
{
    text-decoration: none;
    max-width: 100%;
    height: 120px;
    background: rgba(0,0,0,0.1);
    box-shadow:  0 0 5px rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    overflow:hidden;
    transition: 0.2s;
    user-select: none;
    position: relative;
}
.card:active
{
    scale: 1.04;
}
.card:hover
{
    box-shadow:  0 0 10px rgba(0, 0, 0, 0.8);
    height: 180px;
}
.card .card-body
{
    padding: 5px;
    padding-right: 10px;
}
.card-date
{
    padding-right: 5px;
    text-align: end;
}
aside h3
{
    width: 100%;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
}
aside h3::after
{
    content: '';
    height: 3px;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 10px;
}
aside h4
{
    width: 100%;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
}
aside h4::after
{
    content: '';
    height: 3px;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 10px;
}