@import url('https://fonts.googleapis.com/css2?family=League+Gothic&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Averia+Libre:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

@font-face {
  font-family: bangBangClean;
  src: url(/font/WesternBangBangClean-Regular.ttf);
}

@font-face {
  font-family: binokasih-finish;
  src: url(/font/binokasih-finish.ttf);
}

@font-face {
  font-family: gothamic;
  src: url(/font/Gothamic.ttf);
}

@font-face {
  font-family: Rakesly;
  src: url(/font/Rakesly\ Rg.otf);
}

* {
  font-family: "Montserrat", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  letter-spacing: 1.5px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: #000000;

}

#scrollToTop {
  position: fixed;
  /* Sabit konumda kalır */
  bottom: 25px;
  /* Sayfanın altından 20px yukarıda */
  right: 25px;
  /* Sayfanın sağından 20px içeride */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  /* Diğer içeriklerin üstünde olması için */
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;

}

#scrollToTop img {
  width: 24px;
  height: 24px;
  filter: invert(100%);
}

#scrollToTop:hover {
  background: #ff0000;
  transform: scale(1.1);
}

.header {
  position: fixed;
  top: -250px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: transparent;
  z-index: 1000;
  transition: top 2s ease, background-color 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}

.header.scrolled {
  background-color: rgba(0, 0, 0, 0.6);

  .headerLogo {
    transform: scale(0.8);
  }

}

.header.top {
  background-color: transparent;
  opacity: 1;
}

.headerLogo {
  width: 10%;
  height: 90%;
  position: absolute;
  transition: all 0.7s ease;
  z-index: 5;
  cursor: pointer;
}

.headerLogo:hover {
  transform: scale(1.1);
}

nav {
  display: flex;
  transition: background-color 0.3s ease;
  width: 100vw;
  height: 13vh;
  overflow: hidden;
  justify-content: space-evenly;
  align-items: center;
}

nav:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

nav .ulSide1 {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  text-align: center;
  width: 50vw;
  height: 100%;
  gap: 20px;
}

nav .ulSide3 {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  text-align: center;
  width: 50vw;
  height: 100%;
  gap: 20px;
}

nav .ulSide2 {
  height: 100%;
  width: 20vw;
}

nav ul li {
  display: flex;
  list-style: none;
  margin: 0px 20px;
  align-items: center;
  justify-content: center;
}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 20px;
  padding: 5px 10px;
  position: relative;
  font-family: 'Nimbus Sans L', sans-serif;
  font-weight: 600;
  font-style: normal;
  cursor: pointer;
  transition: transform 0.3s ease;
}

nav ul li a:hover {
  transform: scale(1.1);
}

/*ANİMASYONLAR*/
/* Genel animasyonlar için görünmez yap */
.animated {
  opacity: 0;
  transition: all 1.3s ease-out;
}

/* Soldan gelen animasyon */
.from-left {
  transform: translateX(-500px);
}

.from-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Sağdan gelen animasyon */
.from-right {
  transform: translateX(500px);
}

.from-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.from-right2 {
  transform: translateX(500px);
}

.from-right2.visible {
  opacity: 0.3;
  transform: translateX(0);
}

/* Yukarıdan gelen animasyon */
.from-top {
  transform: translateY(-100px);
}

.from-top.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Aşağıdan gelen animasyon */
.from-bottom {
  transform: translateY(200px);
}

.from-bottom.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Solma efekti */
.fade-in {
  opacity: 0;
}

.fade-in.visible {
  opacity: 1;
}







/* .cont1-topside{
    width: 100vw;
    height: 20vh;
    margin-top: 10vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #00000085
  } */

.heading-side h1 {
  color: rgb(255, 255, 255);
  font-size: 60px;
  font-weight: 500;
  letter-spacing: -1px;
  font-family: Rakesly;
}


.cont1-midside {
  background-color: #000000db;
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
}

.cont1bg {
  position: fixed;
  z-index: -2;
  width: 50%;
}


.text1 {
  width: 56vw;
  height: 90vh;
  padding: 0 3vw;
  display: flex;
  flex-direction: column;
  margin-top: 25vh;
  gap: 60px;
}

.text1 h1 {
  font-size: 60px;
  text-align: center;
  font-weight: 600;
  color: white;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -5px;
}

.text1 h2 {
  color: #7e2323;
  ;
  font-size: 50px;
  letter-spacing: -1px;
  font-family: "Averia Libre", serif;
  text-align: center;
}

.text1 p {
  font-size: 25px;
  line-height: 70px;
  text-align: center;
  letter-spacing: -1px;
  color: #ffffff;
  font-family: "Averia Libre", serif;
  font-weight: bold;
}

.cont1-logo img {
  width: 80%;
  height: 80%;
}

.cont1-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25vw;
  height: 70vh;
}


.container2 {
  background-color: #ffffff;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.leftside2 {
  width: 49vw;
  height: 100vh;
  padding: 0 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rightside2 {
  width: 49vw;
  height: 100vh;
  padding: 0 150px;
}


.text2 {
  width: 36vw;
  height: 95vh;
  padding: 0 5vw;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.text2 p {
  font-size: 25px;
  text-align: center;
  letter-spacing: -1px;
  color: #000000;
  font-family: "Averia Libre", serif;
  font-weight: bold;
  text-align: left;
}

.cont2-photo {
  width: 16vw;
  height: 60vh;
  object-fit: contain;
}

.cizgiside1 {
  height: 100vh;
  width: 5vw;
  display: flex;
  justify-content: center;
}

.cizgiside1 .cizgi1 {
  height: 100vh;
  width: 0.5vw;
  background-color: #000000;
}

.baloncuk1 {
  position: absolute;
  width: 6.5vw;
  height: 7vh;
  background-color: #000000;
  margin-top: 8vh;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;

}

.baloncuk1 p {
  color: white;
  font-size: 30px;
  font-weight: bold;
}

.rightside2 {
  width: 49vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;

}

.rightside2 img {
  width: 90%;
  height: 70%;
}

.rightside2 p {
  font-weight: bold;
  letter-spacing: 0px;
  font-size: 20px;
}

.rightside2 p span {
  font-size: 20px;
  font-weight: lighter;
  font-style: italic;
}




/*fdsafsdasdfdfsasdaffdsafsda*/


.container3 {
  background-color: #ffffff;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.leftside3 {
  width: 36vw;
  height: 100vh;
  padding: 0 100px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.leftside3photo img {
  width: 100%;
  border-radius: 60px;
  margin-bottom: 20px;
}

.leftside3photo p {
  font-weight: bold;
  letter-spacing: 0px;
  font-size: 20px;
}

.leftside3photo p span {
  font-size: 20px;
  font-weight: lighter;
  font-style: italic;
}

.leftside3text p {
  font-size: 28px;
  text-align: center;
  letter-spacing: -1px;
  color: #000000;
  font-family: "Averia Libre", serif;
  font-weight: bold;
  text-align: left;
}


.rightside3 {
  width: 36vw;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.text3 {
  width: 36vw;
  height: 40vh;
  padding: 100px 100px 0 100px;
}

.text3 p {
  font-size: 25px;
  text-align: center;
  letter-spacing: -1px;
  color: #000000;
  font-family: "Averia Libre", serif;
  font-weight: bold;
  text-align: left;
}

.baloncuk2 {
  position: absolute;
  width: 6.5vw;
  height: 7vh;
  background-color: #000000;
  margin-top: 8vh;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;

}

.baloncuk2 p {
  color: white;
  font-size: 30px;
  font-weight: bold;
}

.baloncuk3 {
  position: absolute;
  width: 6.5vw;
  height: 7vh;
  background-color: #000000;
  margin-top: 58vh;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;

}

.baloncuk3 p {
  color: white;
  font-size: 30px;
  font-weight: bold;
}

.cizgiside2 {
  height: 100vh;
  width: 5vw;
  display: flex;
  justify-content: center;
}

.cizgiside2 .cizgi2 {
  height: 100vh;
  width: 0.5vw;
  background-color: #000000;
}

.rightside3photo {
  height: 55vh;
}


.rightside3photo img {
  width: 75%;
  transform: rotate(10deg);
}

.rightside3photo p {
  font-weight: bold;
  letter-spacing: 0px;
  font-size: 20px;
  color: black;
}

.rightside3photo p span {
  font-size: 20px;
  font-weight: lighter;
  font-style: italic;
}



/*sdafasdfasdfasdfsadfsdfg*/



.container4 {
  background-color: #000000f9;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.leftside4 {
  width: 49vw;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.rightside4 {
  width: 49vw;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.cizgiside4 {
  height: 100vh;
  width: 5vw;
  display: flex;
  justify-content: center;
}

.cizgiside4 .cizgi4 {
  height: 100vh;
  width: 0.5vw;
  background-color: #7e2323;
}

.baloncuk4 {
  position: absolute;
  width: 6.5vw;
  height: 7vh;
  background-color: #7e2323;
  margin-top: 17vh;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
}

.baloncuk4 p {
  color: white;
  font-size: 30px;
  font-weight: bold;
}

.text4 {
  width: 36vw;
  height: 100vh;
  padding: 100px 100px 0 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.text4 p {
  font-size: 30px;
  text-align: center;
  letter-spacing: -1px;
  color: #ffffff;
  font-family: "Averia Libre", serif;
  font-weight: bold;
  text-align: left;
  line-height: 50px;
}

.text4 h1 {
  font-size: 90px;
  text-align: center;
  color: #7e2323;
  font-family: "League Gothic", sans-serif;
  font-weight: 400;
  text-align: left;
}

.leftside4 {
  display: flex;
  justify-content: center;
  align-items: center;
}


.cont4-photo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 49vw;
  height: 100vh;
  gap: 40px;
  margin-top: 20vh;
}

.cont4-photo img {
  width: 70%;
  height: 60%;
}

.cont4-photo p {
  font-weight: bold;
  letter-spacing: 0px;
  font-size: 20px;
  color: rgb(255, 255, 255);
}

.cont4-photo p span {
  font-weight: lighter;
  letter-spacing: 0px;
  font-size: 20px;
  color: rgb(255, 255, 255);
}

.cont4-photo img {
  width: 75%;
  transform: rotate(2deg);
}






.container5 {
  background-color: #000000f9;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.leftside5 {
  width: 49vw;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.text5 {
  width: 36vw;
  height: 100vh;
  padding: 100px 100px 0 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.text5 p {
  font-size: 25px;
  text-align: center;
  color: #ffffff;
  font-family: "Averia Libre", serif;
  font-weight: bold;
  text-align: left;
  line-height: 30px;
}

.text5 h1 {
  font-size: 90px;
  text-align: center;
  color: #7e2323;
  font-family: "League Gothic", sans-serif;
  font-weight: 400;
  text-align: left;
}

.rightside5 {
  width: 49vw;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

.cont5photo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 49vw;
  height: 100vh;
  gap: 40px;
  margin-top: 20vh;
}

.cont5photo img {
  width: 50%;
  height: 60%;
  outline: 3px dashed #000000;
  outline-offset: 0px;
}

.cont5photo p {
  font-weight: bold;
  letter-spacing: 0px;
  font-size: 20px;
  color: rgb(255, 255, 255);
}

.cont5photo p span {
  font-weight: lighter;
  letter-spacing: 0px;
  font-size: 20px;
  color: rgb(255, 255, 255);
}

.cizgiside5 {
  height: 100vh;
  width: 5vw;
  display: flex;
  justify-content: center;
}

.cizgiside5 .cizgi5 {
  height: 100vh;
  width: 0.5vw;
  background-color: #7e2323;
}

.baloncuk5 {
  position: absolute;
  width: 6.5vw;
  height: 7vh;
  background-color: #7e2323;
  margin-top: 17vh;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
}

.baloncuk5 p {
  color: white;
  font-size: 30px;
  font-weight: bold;
}




.container6 {
  background-color: #000000f9;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.leftside6 {
  width: 49vw;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.rightside6 {
  width: 49vw;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.cizgiside6 {
  height: 100vh;
  width: 5vw;
  display: flex;
  justify-content: center;
}

.cizgiside6 .cizgi6 {
  height: 100vh;
  width: 0.5vw;
  background-color: #7e2323;
}

.baloncuk6 {
  position: absolute;
  width: 6.5vw;
  height: 7vh;
  background-color: #7e2323;
  margin-top: 17vh;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
}

.baloncuk6 p {
  color: white;
  font-size: 30px;
  font-weight: bold;
}

.text6 {
  width: 36vw;
  height: 100vh;
  padding: 100px 100px 0 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.text6 p {
  font-size: 27px;
  text-align: center;
  letter-spacing: -1px;
  color: #ffffff;
  font-family: "Averia Libre", serif;
  font-weight: bold;
  text-align: left;
  line-height: 35px;
}

.leftside6 {
  display: flex;
  justify-content: center;
  align-items: center;
}


.cont6photo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 49vw;
  height: 100vh;
  gap: 10px;
}

.cont6photo img {
  width: 60%;
  height: 60%;
}

.cont6photo p {
  font-weight: bold;
  letter-spacing: 0px;
  font-size: 20px;
  color: rgb(255, 255, 255);
}

.cont6photo p span {
  font-weight: lighter;
  letter-spacing: 0px;
  font-size: 20px;
  color: rgb(255, 255, 255);
}




.container7 {
  background-color: #ffffff;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.leftside7 {
  width: 49vw;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.text7 {
  width: 36vw;
  height: 100vh;
  padding: 100px 100px 0 100px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 100px;
}

.text7 p {
  font-size: 30px;
  text-align: center;
  color: #000000;
  font-family: "Averia Libre", serif;
  font-weight: bold;
  text-align: left;

}

.text7 h1 {
  font-size: 120px;
  text-align: center;
  color: #000000;
  font-family: "League Gothic", sans-serif;
  font-weight: 400;
  text-align: left;
}

.rightside7 {
  width: 49vw;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

.cont7photo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 49vw;
  height: 100vh;
  gap: 40px;
}

.cont7photo img {
  width: 50%;
  height: 45%;
}

.cont7photo p {
  font-weight: bold;
  letter-spacing: 0px;
  font-size: 20px;
  color: rgb(0, 0, 0);
}

.cont7photo p span {
  font-weight: lighter;
  letter-spacing: 0px;
  font-size: 20px;
  color: rgb(0, 0, 0);
}

.cizgiside7 {
  height: 100vh;
  width: 5vw;
  display: flex;
  justify-content: center;
}

.cizgiside7 .cizgi7 {
  height: 100vh;
  width: 0.5vw;
  background-color: #000000;
}

.baloncuk7 {
  position: absolute;
  width: 6.5vw;
  height: 7vh;
  background-color: #000000;
  margin-top: 17vh;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
}

.baloncuk7 p {
  color: rgb(255, 255, 255);
  font-size: 30px;
  font-weight: bold;
}

.flama {
  position: absolute;
  z-index: 10;
  width: 7%;
  margin-top: 24vh;
}



.container8 {
  background-color: #ffffff;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.leftside8 {
  width: 49vw;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.rightside8 {
  width: 49vw;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.cizgiside8 {
  height: 100vh;
  width: 5vw;
  display: flex;
  justify-content: center;
}

.cizgiside8 .cizgi8 {
  height: 100vh;
  width: 0.5vw;
  background-color: #000000;
}

.baloncuk8 {
  position: absolute;
  width: 6.5vw;
  height: 7vh;
  background-color: #000000;
  margin-top: 17vh;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
}

.baloncuk8 p {
  color: white;
  font-size: 30px;
  font-weight: bold;
}

.text8 {
  width: 36vw;
  height: 100vh;
  padding: 100px 100px 0 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.text8 p {
  font-size: 27px;
  text-align: center;
  letter-spacing: -1px;
  color: #000000;
  font-family: "Averia Libre", serif;
  font-weight: bold;
  text-align: left;
  line-height: 50px;
}

.leftside8 {
  display: flex;
  justify-content: center;
  align-items: center;
}


.cont8photo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 49vw;
  height: 100vh;
  gap: 10px;
}

.cont8photo img {
  width: 50%;
  height: 50%;
}

.cont8photo p {
  font-weight: bold;
  letter-spacing: 0px;
  font-size: 20px;
  color: rgb(0, 0, 0);
}

.cont8photo p span {
  font-weight: lighter;
  letter-spacing: 0px;
  font-size: 20px;
  color: rgb(0, 0, 0);
}






.container9 {
  background-color: #ffffff;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.leftside9 {
  width: 49vw;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.text9 {
  width: 36vw;
  height: 100vh;
  padding: 100px 100px 0 100px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 100px;
}

.text9 p {
  font-size: 30px;
  text-align: center;
  color: #000000;
  font-family: "Averia Libre", serif;
  font-weight: bold;
  text-align: left;

}

.text9 h1 {
  font-size: 120px;
  text-align: center;
  color: #000000;
  font-family: "League Gothic", sans-serif;
  font-weight: 400;
  text-align: left;
}

.rightside9 {
  width: 49vw;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

.cont9photo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 49vw;
  height: 100vh;
  gap: 40px;
}

.cont9photo img {
  width: 80%;
  height: 45%;
}

.cont9photo p {
  font-weight: bold;
  letter-spacing: 0px;
  font-size: 20px;
  color: rgb(0, 0, 0);
}

.cont9photo p span {
  font-weight: lighter;
  letter-spacing: 0px;
  font-size: 20px;
  color: rgb(0, 0, 0);
}

.cizgiside9 {
  height: 100vh;
  width: 5vw;
  display: flex;
  justify-content: center;
}

.cizgiside9 .cizgi9 {
  height: 100vh;
  width: 0.5vw;
  background-color: #000000;
}

.baloncuk9 {
  position: absolute;
  width: 6.5vw;
  height: 7vh;
  background-color: #000000;
  margin-top: 17vh;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
}

.baloncuk9 p {
  color: rgb(255, 255, 255);
  font-size: 30px;
  font-weight: bold;
}





.container10 {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.cont10bg img {
  position: absolute;
  z-index: -2;
  width: 100vw;
  height: 100vh;
}

.rightside10 img {
  position: absolute;
  z-index: -1;
  width: 50%;
  height: 90vh;
  margin-top: 10vh;
  margin-left: 30vw;
  opacity: 0.2;
}


.leftside10 {
  width: 59vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.rightside10 {
  width: 41vw;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.cizgiside10 {
  height: 100vh;
  width: 5vw;
  display: flex;
  justify-content: center;
}

.cizgiside10 .cizgi10 {
  height: 20vh;
  width: 0.5vw;
  background-color: #7e2323;

}

.baloncuk10 {
  position: absolute;
  width: 6.5vw;
  height: 7vh;
  background-color: #7e2323;
  ;
  margin-top: 17vh;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
}

.baloncuk10 p {
  color: white;
  font-size: 30px;
  font-weight: bold;
}

.text10 {
  width: 36vw;
  height: 100vh;
  padding: 100px 200px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.text10 p {
  font-size: 27px;
  letter-spacing: -1px;
  color: #ffffff;
  font-family: "Averia Libre", serif;
  font-weight: bold;
  text-align: justify;
  line-height: 70px;
}




.frame {
  width: 300px;
  height: auto;
  position: relative;
  transform-origin: top center;
  display: flex;
  justify-content: center;
}

.frame img {
  /* display: block; */
  width: 50%;
}

.topside10 {
  width: 50vw;
  height: 40vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
  margin-top: 5vh;
  padding-left: 100px;
}

.raschside10 {
  display: flex;
  align-items: center;
}

.raschside10 .frame {
  display: flex;
  align-items: center;
  margin-left: 100px;
}

.ragnarside10 {
  display: flex;
  align-items: flex-end;
  padding-bottom: 25px;
}

.bottomside10 {
  display: flex;
  flex-direction: column;
}

.bottomTopside {
  display: flex;
  flex-direction: row;
  height: 25vh;
  margin-bottom: 30px;
}

.kane,
.martin,
.kyle,
.frazer {
  overflow: hidden;
}

.martin .frame {
  display: flex;
  margin-left: 45px;
  margin-top: 50px;
}

.kyle .frame {
  display: flex;
  margin-left: 50px;
  margin-top: 50px;
}

.kane .frame {
  display: flex;
  margin-left: 100px;
}

.frazer .frame {
  display: flex;
  margin-left: 50px;

}

.james .frame {
  margin-right: 80px;
  margin-bottom: 70px;
}

.angel .frame {
  margin-top: 65px;
}

.viggo .frame {
  margin-left: 250px;
}

.mars .frame {
  margin-top: 65px;
}



.bottomBotside {
  display: flex;
  flex-direction: row;
  height: 25vh;
}

.mars,
.james,
.viggo,
.angel {
  overflow: hidden;
}

.mars .frame {
  margin-right: 20px;
}


.container11 {
  margin: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-color: rgb(0, 0, 0);
}

.patchlerbg {
  position: absolute;
  z-index: -1;
  width: 100vw;
  height: 100vh;
}


.image-item {
  position: absolute;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.image-item p {
  padding: 10px;
  color: white;
  font-size: 17px;
  font-weight: bold;
  opacity: 1;
}

.image-item img {
  display: block;
  max-width: 100%;
  height: auto;
}

.image-item:hover {
  transform: scale(1.05);

}

.tooltip {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 15px;
  white-space: nowrap;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s;
}


/* Positioning images manually */
.item1 {
  top: 20%;
  left: 5%;
  width: 350px
}

.item2 {
  top: 35%;
  left: 5%;
  width: 350px
}

.item3 {
  top: 50%;
  left: 5%;
  width: 350px
}

.item4 {
  top: 65%;
  left: 5%;
  width: 350px
}

.item5 {
  top: 80%;
  left: 5%;
  width: 350px
}

.item6 {
  top: 11.5%;
  left: 36.65%;
  width: 675px;
}

.item7 {
  top: 30%;
  left: 36.9%;
  width: 650px;
}

.item8 {
  top: 42%;
  left: 35%;
  width: 150px;
}

.item9 {
  top: 45%;
  left: 57.5%;
  width: 200px;
}

.item10 {
  top: 76%;
  left: 37.5%;
  width: 630px;
}

.item11 {
  top: 13%;
  right: 8%;
  width: 350px;
}

.item12 {
  top: 25%;
  right: 8%;
  width: 350px;
}

.item13 {
  top: 37%;
  right: 8%;
  width: 350px;
}

.item14 {
  top: 49%;
  right: 8%;
  width: 350px;
}

.item15 {
  top: 61%;
  right: 8%;
  width: 350px;
}

.item16 {
  top: 73%;
  right: 8%;
  width: 350px;
}

.item17 {
  top: 85%;
  right: 8%;
  width: 350px;
}



.container12 {
  width: 100vw;
  height: 100vh;
  background-color: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.topside12 {
  width: 100vw;
  height: 85vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.logoside12-1 {
  width: 15vw;
  height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;

}

.birinciLogo,
.ikinciLogo,
.ucuncuLogo {
  display: flex;
  justify-content: flex-end;
}

.logoside12-1 img {
  width: 70%;
}

.logoside12-2 img {
  width: 70%;
}

.textside12 {
  display: flex;
  flex-direction: column;
  width: 30vw;
  height: 85vh;
  justify-content: center;
  gap: 30px;
}

.text12-1 {
  display: flex;
  flex-direction: row;
  width: 30vw;
  height: 20vh;
  justify-content: space-around;
}

.text12-2 {
  display: flex;
  flex-direction: row;
  width: 30vw;
  height: 20vh;
  justify-content: space-around;
}

.text12-3 {
  display: flex;
  flex-direction: row;
  width: 30vw;
  height: 20vh;
  justify-content: space-around;
}

.logoside12-2 {
  width: 15vw;
  height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.text12-1-1,
.text12-1-2,
.text12-2-1,
.text12-2-2,
.text12-3-1,
.text12-3-2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.text12-2-1 {
  padding-right: 55px;
}


.text12-1-1 p,
.text12-1-2 p,
.text12-2-1 p,
.text12-2-2 p,
.text12-3-1 p,
.text12-3-2 p {
  color: white;
  font-weight: bold;
  font-size: 25px;
}




.bottomside12 {
  width: 100vw;
  height: 15vh;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 350px;
}

.bottomside12 p {
  text-align: center;
  color: white;
  font-size: 20px;
  font-weight: bold;
}

.cizgiside12 {
  height: 85vh;
  width: 5vw;
  display: flex;
  justify-content: center;
}

.cizgiside12 .cizgi12 {
  height: 80vh;
  width: 0.5vw;
  background-color: #7e2323;

}

.baloncuk12 {
  position: absolute;
  width: 6.5vw;
  height: 7vh;
  background-color: #7e2323;
  ;
  margin-top: 16.5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
}

.baloncuk13 {
  position: absolute;
  width: 6.5vw;
  height: 7vh;
  background-color: #7e2323;
  ;
  margin-top: 39vh;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
}

.baloncuk14 {
  position: absolute;
  width: 6.5vw;
  height: 7vh;
  background-color: #7e2323;
  ;
  margin-top: 61.5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
}

.baloncuk12 p,
.baloncuk13 p,
.baloncuk14 p {
  color: white;
  font-size: 30px;
  font-weight: bold;
}





/*FOOTER*/
footer {
  width: 100vw;
  height: 33vh;
  background-color: #000000;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  /* background-image: url(/photos/footeriçin.png); */
  background-position: top;
}

.footer-content {
  display: flex;
  width: 70vw;
  flex: 1;
  padding: 20px;
  justify-content: space-between;
}

.footer-section {
  flex: 1;
  padding: 10px 30px;
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 10px;
}


.footer-section img {
  width: 210px;
}

.footer-section h3 {
  margin-bottom: 10px;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: bold;
}

.footer-section p {
  font-size: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 5px;
}

.footer-section ul li a {
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-section ul li a:hover {
  font-weight: bold;
}

.footer-section .large-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.footer-section .large-logo img {
  max-width: 100%;
  max-height: 100%;
}

.social-icons1 {
  display: flex;

  align-items: left;
  flex-direction: row;
  padding: 10px 0;
  gap: 60px;
}

.social-icons2 {
  display: flex;
  align-items: left;
  flex-direction: row;
  padding: 10px 0;
  gap: 60px;
}

.social-icons1 img {
  width: 60px;
  height: 60px;
  margin: 0 10px;
  cursor: pointer;
}

.social-icons2 img {
  width: 60px;
  height: 60px;
  margin: 0 10px;
  cursor: pointer;
}

.discordimg {
  padding: 20px;
}

.copyright {
  text-align: center;
  padding: 10px;
  background-color: #222;
  font-size: 0.8rem;
  width: 100vw;
}











.kirmizi {
  color: #7e2323;
  font-family: "Averia Libre", serif;
}

.turuncu {
  /* color: rgb(83, 83, 83); */
  font-family: "Averia Libre", serif;
  text-decoration: underline;
}

.alticizili {
  text-decoration: underline;
  font-family: "Averia Libre", serif;
}

.mavi {
  color: rgb(255, 255, 255);
  text-decoration: underline;
  font-family: "Averia Libre", serif;
}

.italik {
  font-style: italic;
  font-family: "Averia Libre", serif;
}

.bize-ulas {
  color: blueviolet;
}

@media (max-width:2047px) {
  .text1 h1 {
    padding: 15px;
    width: 100%;
    font-size: 2.5rem;
    letter-spacing: -2px;
    height: 30vh;
  }

  .text1 p {
    font-size: 1.2rem;
    line-height: 40px;
  }

  .text2 {
    padding: 0px;
  }

  .text2 p {
    font-size: 1.2rem;
  }

  .text3 p {
    font-size: 1.2rem;
  }

  .text3 {
    padding: 50px 100px 0 100px;
  }

  .leftside3text p {
    font-size: 1.2rem;
  }

  .rightside3photo {
    height: 60vh;
  }

  .text4 {
    width: 45vw;
  }

  .text4 p {
    font-size: 1.2rem;
  }

  .text5 {
    width: 45vw;
  }

  .text5 p {
    font-size: 1.2rem;
  }

  .text6 p {
    font-size: 1.2rem;
  }

  .text6 {
    width: 45vw;
  }

  .text7 p {
    font-size: 1.2rem;
  }

  .text7 {
    width: 45vw;
  }

  .text8 p {
    font-size: 1.2rem;
  }

  .text8 {
    width: 48vw;
  }

  .text9 p {
    font-size: 1.2rem;
  }

  .text9 {
    width: 45vw;
  }

  .text10 {
    padding: 100px 100px 0 0;
  }

  .text10 p {
    font-size: 1.2rem;
    line-height: 40px;
  }

  .frazer .frame {
    margin-left: 0;
  }

  .frame {
    width: 170px;
  }

  .item7 {
    width: 440px;
    top: 32%;
    left: 38.9%;
  }

  .item6 {
    left: 32.65%;
    top: 7%;
  }

  .item10 {
    top: 76%;
    left: 35.85%;
    width: 550px;
  }

  .item8 {
    top: 44%;
    left: 34%;
    width: 110px;
  }

  .item9 {
    top: 47.5%;
    left: 60.5%;
    width: 140px;
  }

  .footer-section {
    padding: 0 15px;
  }

  .footer-section p {
    font-size: 0.8rem;
  }
}


.mobile-logo {
  max-width: 200px;

  padding-top: 300px;
}

.mobile-block {
  text-align: center;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
  color: white;
  justify-content: center;
  align-items: center;
  font-size: clamp(2rem, 0.571rem + 3.81vw, 4rem);
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
}

@media (max-width:1300px) {
  .mobile-block {
    display: flex;
    flex-direction: column;
  }

  .header,
  .container,
  .container2,
  .container3,
  .footer-content,
  #scrollToTop,
  .container4,
  .container5,
  .container6,
  .container7,
  .container8,
  .container9,
  .container10,
  .container11,
  .container12 {
    display: none;
  }
}