/* Genel swiper container ayarları */
.swiper-container {
  width: 100%; /* Genişlik %100, ekran boyutuna göre uyumlu */
  height: 780px; /* Yükseklik sabit olarak 780px */
  max-width: 1920px; /* Maksimum genişlik 1920px */
  margin: 0 auto; /* Orta hizalama */
}

/* Mobil cihazlar ve daha küçük ekranlar için responsive ayar */
/* Masaüstü (varsayılan) slider ayarları */
.swiper-container {
  width: 100%; /* Genişlik %100, ekran boyutuna göre uyumlu */
  height: 780px; /* Yükseklik sabit olarak 780px */
  max-width: 1920px; /* Maksimum genişlik 1920px */
  margin: 0 auto; /* Orta hizalama */
}

.swiper-slide {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; /* Masaüstü için tam ekran uyumlu */
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block; /* img etiketi masaüstünde aktif olacak */
  width: 100%;
  height: auto;
  object-fit: cover; /* Resim orantılı şekilde sığacak */
}

/*-----------------------------------
  Mobil cihazlar için responsive ayar
-----------------------------------*/
@media screen and (max-width: 767px) {
  .swiper-container {
    width: 100%;
    height: auto; /* Mobilde yükseklik otomatik ayarlanacak */
    padding: 0; /* İç boşlukları sıfırlıyoruz */
  }

  .swiper-slide {
    width: 100%;
    height: 56.25vw; /* 16:9 oranı için ekranın genişliğinin %56.25'i */
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; /* Resmin tamamını görünür yapıyoruz */
    overflow: hidden; /* Taşmayı engelliyoruz */
  }

  /* Resim için img etiketi yerine arka plan kullanıyoruz, bu yüzden img etiketini gizliyoruz */
  .swiper-slide img {
    display: none;
  }

.swiper-button-next, 
.swiper-button-prev {
  display: none !important;
}
}



/*-----------------------------------------
  Overlays For Slides
-------------------------------------------*/
.light-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5; 
}

.medium-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6; 
}

.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
}



/*-----------------------------------------
  Slider Content Captions
-------------------------------------------*/
.slider-content{
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
@media screen and (max-width:767px) {
  .slider-content{
    padding: 70px 30px;
  }
}
.slider-content h2{
  font-size: 65px;
  color: #fff;
  line-height: 1.4;
  font-weight: 600;
}

@media screen and (max-width:767px) {
  .slider-content h2{
    font-size: 30px;
    color: #fff;
    line-height: 1.4;
    font-weight: 600;
  }
}

.slider-content h3{
  font-size: 50px;
  color: #fff;
  line-height: 1.4;
  font-weight: 600;
}
@media screen and (max-width:767px) {
  .slider-content h3{
    font-size: 25px;
    color: #fff;
    line-height: 1.4;
    font-weight: 600;
  }
}


.slider-content h4{
  font-size: 22px;
  color: #fff;
  line-height: 1.4;
  font-weight: 600;
  margin: 5px 0px;
}
@media screen and (max-width:767px) {
  .slider-content h4{
    font-size: 20px;
    color: #fff;
    line-height: 1.4;
    font-weight: 600;
  }
}

.slider-content h5{
  font-size: 20px;
  color: #fff;
  line-height: 1.4;
  font-weight: 600;
  margin: 15px 0px;
}


.slider-content p{
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.9;
  font-weight: 400;
  max-width: 100%;
  margin-top: 10px;
  word-wrap: break-word;
}
@media screen and (max-width:767px) {
  .slider-content p{ 
    width: auto;
  }
}



/*-----------------------------------------
  Slider Parallax
-------------------------------------------*/
.parallax-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 130%;
  height: 100%;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}




/*-----------------------------------------
Revolution Slider Styles
-------------------------------------------*/
.rev-slider-content{
  z-index: 19 !important;
  white-space: nowrap; 
  font-size: 90px; 
  line-height: 90px; 
  font-weight: 500; 
  color: #ffffff !important; 
}

.revolution-btn{
  z-index: 21 !important; 
  white-space: nowrap; 
  font-size: 18px; 
  line-height: 60px; 
  font-weight: 500; 
  color: rgba(255,255,255,1); 
  letter-spacing: 1px;
  border-color:rgba(0,0,0,1);
  border-radius:30px 30px 30px 30px;
  outline:none;
  box-shadow:none;
  box-sizing:border-box;
  -moz-box-sizing:border-box;
  -webkit-box-sizing:border-box;
  cursor:pointer;
  text-decoration: none;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
}

.tp-bannertimer{
  height: 5px; 
  background: #fff;
  opacity: .5;
}

.revolution-btn-2{
  z-index: 20 !important; 
  min-width: 480px; 
  max-width: 480px; 
  white-space: normal; 
  font-size: 25px; 
  line-height: 35px; 
  font-weight: 400; 
  color: #ffffff; 
  letter-spacing: 0px;
}

.tp-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    background: rgba(255,255,255,.3);
    cursor: pointer;
}




/*-----------------------------------------
Main Image Section Styles
-------------------------------------------*/
.main-image-section{
  width: 100%;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  padding: 90px 0px 90px 0px;   
  min-height: 85%;  
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;  
}

.main-image-content{
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1; 
}


.main-image-content h2{
  font-size: 50px;
  color: #fff;
  line-height: 1.4;
  font-weight: 600;
}

@media screen and (max-width:767px) {
  .main-image-content h2{
    font-size: 25px;
    color: #fff;
    line-height: 1.4;
    font-weight: 600;
  }
}

.main-image-content h3{
  font-size: 45px;
  color: #fff;
  line-height: 1.4;
  font-weight: 600;
}

.main-image-content p{
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.9;
  font-weight: 400;
  max-width: 100%;
  margin-top: 10px;
  word-wrap: break-word;
}
@media screen and (max-width:767px) {
  .main-image-content p{ 
    width: auto;
  }
}



/*-----------------------------------------
Main Video Section Section Styles
-------------------------------------------*/
.main-video-content {
    position: relative;
    text-align: center;
    height: 550px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

@media (max-width: 767px) {
  .main-video-section{
    height: auto;
  }
  .main-video-content{
    height: auto;
    padding: 50px 0px;
  } 
}

.main-video-content h2{
  position: relative;
  font-size: 60px;
  font-weight: 400;
  color: #111;
  margin: 5px 0px;  
}
@media (max-width: 767px) {
  .main-video-content h2{
    font-size: 30px;
    font-weight: 400;
  } 
}
.main-video-content h3{
  position: relative;
  font-size: 50px;
  font-weight: 400;
  color: #111;
  margin: 5px 0px;  
}
@media (max-width: 767px) {
  .main-video-content h3{
    font-size: 30px;
    font-weight: 400;
  } 
}
.main-video-content h4{
  position: relative;
  font-size: 40px;
  font-weight: 400;
  color: #111;
  margin: 5px 0px;  
}
.main-video-content h5{
  position: relative;
  font-size: 30px;
  font-weight: 400;
  color: #111;
  margin: 5px 0px;  
}
.main-video-content h6{
  position: relative;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #111;
  margin: 5px 0px;  
}
@media (max-width: 767px) {
  .main-video-content h6{
    font-size: 15px;
    font-weight: 400;
  } 
}




/*-----------------------------------------
Main Image Section Section Styles
-------------------------------------------*/
.main-image-section{
    position: relative;
    display: table;
    height: calc(100% - 150px);
    width: 100%;
    padding: 0px;
}
.main-image-content {
    position: relative;
    text-align: center;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

@media (max-width: 767px) {
  .main-image-section{
    height: auto;
  }
  .main-image-content{
    height: auto;
    padding: 50px 0px;
  } 
}

.main-image-content h2{
  position: relative;
  font-size: 70px;
  font-weight: 400;
  display: block;
  color: #111;
  margin: 5px 0px;  
}
@media (max-width: 767px) {
  .main-image-content h2{
    font-size: 30px;
    font-weight: 400;
  } 
}
.main-image-content h3{
  position: relative;
  font-size: 50px;
  font-weight: 400;
  color: #111;
  display: block;
  margin: 5px 0px;  
}
@media (max-width: 767px) {
  .main-image-content h3{
    font-size: 30px;
    font-weight: 400;
  } 
}
.main-image-content h4{
  position: relative;
  font-size: 40px;
  font-weight: 400;
  color: #111;
  margin: 5px 0px;  
}
.main-image-content h5{
  position: relative;
  font-size: 30px;
  font-weight: 400;
  color: #111;
  margin: 5px 0px;  
}
.main-image-content h6{
  position: relative;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
  color: #111;
  margin: 5px 0px;  
}

