/* =========================================
   BANNER STYLE TWO
   Genişlik full olsun
   Yükseklik bozulmasın
   Figure'lar tek parça gibi birlikte kaysın
========================================= */

.banner-style-two{
  position: relative;
  padding: 320px 0px 120px 0px;
  overflow: hidden;
}

.banner-style-two .image-layer{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 1020px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* sadece banner container full width */
.banner-style-two > .container{
  width: 100%;
  max-width: 100% !important;
  padding-left: 40px;
  padding-right: 40px;
}

.banner-style-two .content-box{
  position: relative;
  margin-right: 50px;
  z-index: 2;
}

.banner-style-two .content-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: #006fbd;
  margin-bottom: 37px;
}

.banner-style-two .content-box h1{
  position: relative;
  display: block;
  font-size: 42px;
  line-height: 73px;
  font-weight: 500;
  color: #222;
  margin-bottom: 31px;
}

.banner-style-two .content-box .text{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 36px;
  color: #777;
  margin-bottom: 54px;
}

.banner-style-two .content-box .theme-btn-two{
  padding: 15px 50px;
}

/* sağ kolon taşmayı düzgün yönetsin */
.banner-style-two .image-column{
  position: relative;
  overflow: visible;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* ANA ÇÖZÜM:
   image-box aynı yükseklikte kalır
   ama ekran küçülünce bütün halinde scale olur */
.banner-style-two .image-box{
  position: relative;
  width: 690px;
  min-width: 690px;
  height: 835px;
  min-height: 835px;
  margin-top: -240px;
  margin-left: auto;
  margin-right: 0;

  transform-origin: right center;
  will-change: transform;
}

/* içindeki tüm nesneler aynı düzenle kalsın */
.banner-style-two .image-box .bg-layer{
  position: absolute;
  width: 550px;
  height: 550px;
  left: 0px;
  bottom: 0px;
  background-repeat: no-repeat;
  border-radius: 50%;
  z-index: -1;
}

.banner-style-two .image-box .image{
  position: absolute;
}

.banner-style-two .image-box .image-1{
  left: 0px;
  top: 90px;
}

.banner-style-two .image-box .image-2{
  left: 100px;
  bottom: 130px;
}

.banner-style-two .image-box .image-3{
  right: 0px;
  top: 0px;
}

.banner-style-two .image-box .image-4{
  right: 20px;
  bottom: 110px;
}

.banner-style-two .image-box .image-5{
  right: 20px;
  top: 340px;
}

.banner-style-two .image-box img{
  max-width: none;
  float: left;
}

/* hareketli yuvarlaklar */
.anim-icons{
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.anim-icons .icon{
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-style-two .anim-icons .icon-1{
  background: #006fbd;
  width: 60px;
  height: 60px;
  left: 30px;
  bottom: 50%;
  border-radius: 50%;
}

.banner-style-two .anim-icons .icon-2{
  background: #95baf1;
  width: 32px;
  height: 32px;
  left: 60px;
  bottom: 30%;
  border-radius: 50%;
}

.banner-style-two .anim-icons .icon-3{
  background: #006fbd;
  width: 85px;
  height: 85px;
  left: -42px;
  bottom: 10%;
  border-radius: 50%;
}

/* =========================
   RESPONSIVE - TEK PARÇA KAYMA
========================= */

/* çok geniş ekran */
@media (min-width: 1400px){
  .banner-style-two > .container{
    padding-left: 60px;
    padding-right: 60px;
  }
}

/* desktop/laptop */
@media (max-width: 1399px){
  .banner-style-two > .container{
    padding-left: 30px;
    padding-right: 30px;
  }

  .banner-style-two .image-box{
    transform: scale(0.92);
    margin-left: auto;
    margin-right: 0;
  }
}

@media (max-width: 1199px){
  .banner-style-two .image-box{
    transform: scale(0.82);
    margin-left: auto;
    margin-right: 0;
  }

  .banner-style-two .content-box{
    margin-right: 20px;
  }
}

/* burada kritik nokta:
   figure'ları tek tek oynatmıyoruz
   image-box komple küçülüp sola kayıyor */
@media (max-width: 991px){
  .banner-style-two{
    padding: 320px 0px 120px 0px;
  }

  .banner-style-two > .container{
    padding-left: 20px;
    padding-right: 20px;
  }

  .banner-style-two .image-column{
    display: flex;
    justify-content: center;
  }

  .banner-style-two .image-box{
    transform: scale(0.74);
    margin-left: 0;
    margin-top: -240px;
  }
}

@media (max-width: 767px){
  .banner-style-two > .container{
    padding-left: 15px;
    padding-right: 15px;
  }

  .banner-style-two .content-box h1{
    font-size: 34px;
    line-height: 48px;
  }

  .banner-style-two .content-box .text{
    font-size: 16px;
    line-height: 28px;
  }

  .banner-style-two .image-column{
    display: flex;
    justify-content: center;
  }

  .banner-style-two .image-box{
    transform: scale(0.60);
    margin-left: 0;
    margin-top: -300px;
  }
}

@media (max-width: 575px){
  .banner-style-two .image-box{
    transform: scale(0.50);
    margin-left: 0;
    margin-top: -340px;
  }
}
