/* CSS VARIABLES */
:root {
  --primary: #141414;
  --light: #F3F3F3;
  --dark: 	#686868;
}

html, body {
  width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background-color: var(--primary);
  color: var(--light);
  font-family:  Helvetica, Arial, sans-serif;
  box-sizing: border-box;
  line-height: 1.4;
  overflow-x: hidden;
}
/* scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #EC0000; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b30000; 
}
.oralistan ::-webkit-scrollbar {
  width: 6px;
}

/* Track */
.oralistan ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
.oralistan ::-webkit-scrollbar-thumb {
  background: #EC0000; 
  border-radius: 10px;
}

/* Handle on hover */
.oralistan ::-webkit-scrollbar-thumb:hover {
  background: #b30000; 
}

img {
  max-width: 100%;
}

h1 {
  padding-top: 60px;  
}

.wrapper {
  margin: 0;
  padding: 0;
}

/* HEADER */
header {
  padding: 20px 20px 0 20px;
  position: fixed;
  top: 0;
  display: grid;  
  grid-gap:5px;
  grid-template-columns: 1fr 4fr 1fr;
  grid-template-areas: 
   "nt mn mn sb . . . "; 
  background-color: var(--primary);
  width: 100%;
  margin-bottom: 0px;  
  z-index: 1;
}

.netflixLogo {
  grid-area: nt;
  object-fit: cover;
  width: 100px;
  max-height: 100%;
  
  padding-left: 30px;
  padding-top: 0px;  
}

.netflixLogo img {  
  height: 35px;     
}

#logo {
  color: #E50914;  
  margin: 0; 
  padding: 0; 
}


.main-nav {
  grid-area: mn;
  padding: 0 30px 0 20px;
}

.main-nav a {
  color: var(--light);
  text-decoration: none;
  margin: 20px;  
}

.main-nav a:hover {
  color: var(--dark);
}

.sub-nav {
  grid-area: sb;
  padding: 0 40px 0 40px;
}

.sub-nav a {
  color: var(--light);
  text-decoration: none;
  margin: 5px;
}

.sub-nav a:hover {
  color: var(--dark);
}


/* MAIN CONTIANER */
.main-container {
  padding: 50px;
}

.box {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(6, minmax(100px, 1fr));
}

.box a {
  transition: transform .3s;  
}

.box a:hover {
  transition: transform .3s;
  -ms-transform: scale(1.4);
  -webkit-transform: scale(1.4);  
  transform: scale(1.4);
}

.box img {
  border-radius: 2px;
}

/* LINKS */
.link {
  padding: 50px;
}

.sub-links ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.sub-links a {
  color: var(--dark);
  text-decoration: none;
}

.sub-links a:hover {
  color: var(--dark);
  text-decoration: none;
}

.logos a{
  padding: 10px;
}

.logo {
  color: var(--dark);
}
a:link {


  text-decoration: none;


}


a:visited {


  text-decoration: none;


}


a:hover {


  text-decoration: none;


}


a:active {


  text-decoration: none;


}
ul{
    list-style-type: none;
}

/* FOOTER */
footer {
  padding: 20px;
  text-align: center;
  color: var(--dark);
  margin: 10px;
}
.footerIlkUc{
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.footerIkinci{
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.imageSpotify{
  resize:both;
  width:120px;
}
.imageTwitter{
  resize:both;
  width:80px;
}
.imageTwitch{
  resize:both;
  width:100px;
}

/* MEDIA QUERIES */

@media(max-width: 900px) {

  header {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: 
    "nt nt nt  .  .  . sb . . . "
    "mn mn mn mn mn mn  mn mn mn mn";
  }

  .box {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(4, minmax(100px, 1fr));
  }

}

@media(max-width: 700px) {

  header {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: 
    "nt nt nt  .  .  . sb . . . "
    "mn mn mn mn mn mn  mn mn mn mn";
  }

  .box {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(3, minmax(100px, 1fr));
  }

  .sub-links ul {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
   
}

@media(max-width: 500px) {

  .wrapper {
    font-size: 15px;
  }

  header {
    margin: 0;
    padding: 20px 0 0 0;
    position: static;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas: 
    "nt"    
    "mn"
    "sb";
    text-align: center;
  }

  .netflixLogo {
    max-width: 100%;
    margin: auto;
    padding-right: 20px;
  }

  .main-nav {
    display: grid;
    grid-gap: 0px;
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
  }

  h1 {
    text-align: center;
    font-size: 18px;
  }

 
 

  .box {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(1, 1fr);
    text-align: center;    
  }

  .box a:hover {
    transition: transform .3s;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);  
    transform: scale(1.2);
  }

  .logos {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }

  .sub-links ul {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
    font-size: 15px;
  }

  

  
   
}
/* #region Footer */

footer {
  position: relative;
  background-color: var(--footer-bg-color);
}

footer.odd {
  background-color: #111111;
}

footer .card h4 {
  margin-top: 0;
}

footer .card i {
  margin-right: 10px;
}

footer .items .card a:not(.btn) {
  margin: 0 0 0.5rem;
  display: block;
  color: var(--primary-p-color);
}

footer .odd .items .card a:not(.btn):last-child {
  margin-bottom: 5px;
}

footer .odd .items .card a:not(.btn) {
  color: var(--secondary-p-color);
}

footer .items .card:not(.no-hover):hover a:not(.btn):hover {
  color: var(--secondary-color);
}

footer .items .card a:not(.btn):hover i {
  color: var(--secondary-color);
}

footer a.navbar-brand:not(.btn) {
  padding: 0;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--nav-item-color);
}

footer .navbar-brand i {
  color: var(--primary-color);
}

footer .navbar-brand img {
  height: var(--nav-brand-height);
}

footer .navbar-brand .brand {
  letter-spacing: 5px;
  color: var(--secondary-p-color);
}

footer .navbar-brand .featured {
  position: relative;
  display: inline-block;
  padding: 13px 2px 14px 30px;
}

footer .navbar-brand .featured:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 7.5px);
  height: 100%;
  border-radius: 100px 0 0 100px;
  background-color: var(--secondary-color);
  opacity: 0.15;
}

footer .navbar-brand .featured .first {
  position: relative;
  margin-right: -10px;
  color: var(--secondary-color);
}

footer .brand .logo {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 0.8;
  color: var(--primary-color);
}

footer .brand .logo img {
  width: auto;
  height: var(--footer-brand-height);
}

footer .brand a:hover {
  text-decoration: none;
}

footer .title {
  margin-top: 0;
}

footer .contacts {
  position: relative;
  top: 2.5rem;
  left: 2.5rem;
}

footer .contacts .nav-item {
  position: relative;
  z-index: 1;
}

footer .contacts:before {
  content: '';
  position: absolute;
  z-index: 0;
  top: -40px;
  right: 40px;
  width: 100%;
  height: 165%;
  border-top: 4px solid;
  border-right: 4px solid;
  border-color: var(--primary-t-color);
  transition-timing-function: cubic-bezier(.25, .25, .75, .75);
  transition-duration: 0.6s;
  transition-property: opacity, transform;
}

footer .contacts:after {
  content: '';
  position: absolute;
  z-index: 0;
  top: -40px;
  right: 40px;
  width: 100%;
  height: 165%;
  border-left: 4px solid;
  border-bottom: 4px solid;
  border-color: var(--primary-t-color);
  transition-timing-function: cubic-bezier(.25, .25, .75, .75);
  transition-duration: 0.6s;
  transition-property: opacity, transform;
}

footer .contacts:hover:before,
footer .contacts:hover:after {
  border-color: var(--primary-color);
}

footer .contacts li {
  margin: 0;
  font-size: 1.2rem;
}

footer .nav-item {
  margin: 0;
}

footer .nav-item .nav-link {
  font-weight: 400;
  line-height: 1.4;
  color: inherit;
}

footer.odd .nav-item .nav-link {
  color: var(--secondary-p-color);
}

footer .nav-item .nav-link:hover {
  color: var(--primary-color);
  outline: none;
}

footer .copyright {
  background-color: var(--primary-l-color);
}

footer .copyright p {
  font-size: 14px;
  line-height: 1.8;
}

/* #endregion Footer */
/*KARTLAR */
.btn:focus, .btn:active, button:focus, button:active {
outline: none !important;
box-shadow: none !important;
}

#image-gallery .modal-footer{
display: block;
}
.modal-footer label{
 padding: 0 12rem;
  color:black;
}
.thumb{
margin-top: 15px;
margin-bottom: 15px;
}
.coin{
  display:flex;
  flex-direction:row;
  justify-content: center;
}
.rowMaddeler{
display: flex;
flex-direction: column;
align-items:flex-start;
width: 1000px;
}
.ulHakkinda{
list-style-type: none;
margin: 0;
padding:5px;
}
.liicerik{
display: flex;
flex-direction: row;
margin: 5px;
}
.eren{
display: flex;
flex-direction: row;
align-items:flex-start;
align-content: space-between;
}
.erenilkResim{
margin-left: 5rem;
}
.ulicerik{
list-style-type: none;
margin: 0;
padding:5px;
}
.fotolar{
height: 300px;
display: flex;
flex-wrap: wrap;
align-content: space-around;
}
.img-thumbnail{
width: 200px;
margin: 10px;
}
.login{
display: flex;
flex-direction: column;

border-radius: 4px;
width: 300px;
height: 400px;
padding: 60px 68px 40px;
}
.loginGroup{
width: 100%;
position: relative;
z-index: 100;
background: #333;
margin-bottom: 20px;
border-radius: 4px;
border: none;
opacity: 1;
font-size: 1rem;
color: white;
line-height: 50px;
padding: 12px 18px 0;
}
.signin{
margin: 24px 0 12px;
padding: 16px;
color: white;
background: red;
font-size: 0.9rem;
border: none;
border-radius: 4px;
cursor: pointer;
width: 100%;
}
.loginCont{
position: relative;
display: flex;
align-items: center;
justify-content: center;
margin-top: 5%;

background-repeat: no-repeat;
background-position: center center;
background-size: cover;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

background-blend-mode: multiply;

}
.loginBaslik{
margin-bottom: 20px;
font-size: 2.2rem;
font-weight: 600;
color: white;
}
.bilgi{
display: flex;
flex-direction: column;
text-align: center;
width: 90%;
}