:root{
  --font-one:'Kumbh Sans',sans-serif;
  --font-two:'Playfair Display',sans-serif;
}

body{
    margin: 0;
    padding: 0;
    font-family: var(--font-one);
    background-color:#ffffff;

}

a {
    color: #fff;
    text-decoration: none;
}

ul{
  list-style: none;
}
.nav-link{
    color: #fff;
}
.nav-link:focus, .nav-link:hover {
    color: #d6c4ac;
}
.page-wrapper{
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.button02{
    background-color: #d5a05b;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 5px;
    transition: all 1000ms ease;
}

.slider .swiper-slide-active .content a{
    background-color: #d5a05b;
    transition: all 1000ms ease;
}

.slider .swiper-slide-active .content a:hover{
    background-color: #1b1b1bc0;
    transition: all 1000ms ease;
}


.form {
  padding-top: 50px;
}
.form input{
  width: 100%;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 25px;
  border: 1px solid #dedede;
}
.form input:focus {
  border-color: #484849;
  background: #ffffff;
}
.form textarea{
  width: 100%;
  height: 250px;
  padding: 25px;
  margin-bottom: 25px;
  border: 1px solid #dedede;
}

.form button{
  color: #ffffff;
    border: 1px solid;
    background-color: #3f3534;
    padding: 25px 40px;
    font-size: 20px;
}

.form button:hover{
  background-color: #a9804a;
}

/* 
*/
.header{
    /*background-color: #ffff00;*/
    min-height: 120px;
}

.header .right .icon i{
    font-size: 25px;
    padding-right: 20px;
    color: #d6c4ac;
    background-color: #a7957d33;
    width: 50px;
    height: 50px;
    border-radius: 100px;
}
.header .right .icon i::before{
    position: relative;
    left: 12px;
    top: 5px;
}

.header .right .icon .content{
    padding-left: 20px;
    font-size: 17px;
}
.header .right .button01{
    padding: 15px 25px;
    background-color: #d6c4ac;
    cursor: pointer;
}
.header .right .button01 a{
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    font-weight: 700;;
}

/*
Naw Bar
*/

.nav{
    background-color: #eed393;
    min-height: 100px;
    color: #fff;
}
.nav .menu i{
  display: none;
}
.nav .menu ul{
    list-style-type: none;
    font-size: 18px;
    margin-bottom: 0;
    padding-left: 0;
    align-items: center;
}
.nav .menu ul li{
    padding-right:25px;
}


.nav .icon ul{
    list-style-type: none;
    font-size: 19px;
    margin-bottom: 0;
    padding-left: 0;
}
.nav .icon ul li{
    padding-right: 15px;
}
.nav .icon ul li a:hover{
    color: #d6c4ac;
}

/*Swiper Slider*/

.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide .image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  
  .slider .image{
    width: 100%;
    height: 800px;
    filter: blur(0px);
  }
  
  .slider .swiper-slide-active .image{
    transform: scale(1.3);
    transition: all 6000ms ease;
    filter: blur(2px);
  }

  .slider .swiper-slide-active .image::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #39383855;
    z-index: 30;
    width: 100%;
    height: 100%;

  }


  .slider .shape1{
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    background-color: #b58f5d;
    opacity: 0;
    position: absolute;
    left: -400px;
    transform: translateX(-400px);
    z-index: 2;
  }

  .slider .swiper-slide-active .shape1{
    opacity: 0.51;
    transition: all 2000ms ease;
    transform: translateX(-125px);
  }

  .slider .shape2{
    width: 750px;
    height: 750px;
    border-radius: 50%;
    background-color: #59370a;
    opacity: 0;
    position: absolute;
    left: 50px;
    transform: translateX(-400px);
    top:250px;
    z-index: 30;
  }

  .slider .swiper-slide-active .shape2{
    opacity: 0.51;
    transition: all 2000ms ease;
    transform: translateX(-25px);
    top:-250px;
    transition-delay: 2000ms;

  }

  .slider .content{
    position: absolute;
    display: block;
    width: 500px;
    color: #fff;
    z-index: 5;
  }

  .slider .content h3{
    font-size: 75px;
    font-weight: 700;
    transition: all 2000ms ease;
    transform: translateY(100px);
    opacity: 0;
    
  }
  
  .slider .swiper-slide-active .content h3{
    font-size: 75px;
    font-weight: 700;
    opacity: 1;
    transition: all 3000ms ease;
    transform: translateY(0px);
    transition-delay: 1000ms;

  }

  .slider .content p{
    font-size: 20px;
    transform:translateX(100px);
    opacity: 0;
    transition: all 2000ms ease;

  }
  
  .slider .swiper-slide-active .content p{

    transform:translateX(0px);
    opacity: 1;
    transition: all 2000ms ease;
    transition-delay: 1500ms;
  }
  
  .slider .content a{
    opacity: 0;
    transform: translateY(200px);
    transition: all 2000ms ease;
  }

  .slider .swiper-slide-active .content a{
    opacity: 1;
    transition: all 2000ms ease;
    transform: translateY(0px);
    transition-delay: 2500ms;
  }

.swiper-button-next, .swiper-button-prev{
    background-color: #302a2140;
    color: #ffffff;
    padding: 50px 30px;
    position: absolute;
}
.swiper-button-next:hover, .swiper-button-prev:hover{
    background-color: #cf8009c0;
    transition: all 1000ms ease;
}
.swiper-button-next{

    bottom: 50px;
    top: auto;

}
.swiper-button-prev{

    bottom: 175px;
    top: auto;
    right: 10px;
    left: auto;
}
/**/
.about{
    min-height: 500px;
    margin:100px 0 ;
}
.about a{
  color: #59370a;
}

.about .container h3 {
  font-size: 65px;
  color: #433838;
  font-weight: 700;
  margin: 0 50px 50px 0;
  font-family: var(--font-two);
}
.about .container p {
  font-size: 17px;
  color: #433838;
  line-height: 1.8;
  margin: 0 50px 50px 0;
}

.about .container .owl-carousel .item .image {
  overflow: hidden;
  position: relative;

}

.about .container .owl-carousel .item .image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #59370a47;
  opacity: 0;
  z-index: 5;
  transition: all 1000ms ease;
}

.about .container .owl-carousel .owl-item.active:hover  .item .image::before{
  opacity: 1;
  transition: all 1000ms ease;
}

.about .container .owl-carousel .item .image img {
  transition: all 1500ms ease;
  transform: scale(1.2);
}

.about .container .owl-carousel .owl-item.active:hover .item .image img {
  transform: scale(1.1);
  transition: all 1500ms ease;
}

.about .container .owl-carousel .item {
  margin-right: 25px;
  border:1px solid #27272712;
  box-shadow: 0px 0 15px 0px #0000001f;
}

.about .container .owl-carousel .item h5{
  color:  #c26f03;
  font-size: 15px;
  padding: 15px 25px 0;
  margin-bottom: 0;
}

.about .container .owl-carousel .item h4 a{
  color: #59370a;
  font-size: 25px;
  padding: 0px 25px;
  font-weight: 600;
}

.about .container .owl-carousel .item h4 a:hover{
  color: #c26f03;
}

.about .container .owl-carousel .item .bottom{
  margin-top: 30px;
}
.about .container .owl-carousel .item .bottom .left a{
  position: relative;
  background-color: #efe6da;
  padding: 10px 0 10px 25px;
  display: inline-block;
  line-height: 30px;
  font-size: 13px;
  font-weight: 600;
  transition: all 500ms ease;
}

.about .container .owl-carousel .item .bottom .left a:hover{
  background-color: #ffca86;
  transition: all 500ms ease;
}

.about .container .owl-carousel .item .bottom .left a i{
  background-color: #59370a;
  padding: 17px;
  position: relative;
  color: #fff;
  margin-left: 15px;
  transition: all 500ms ease;
}

.about .container .owl-carousel .item .bottom .left a:hover i{
  background-color: #363027;
  transition: all 500ms ease;
}
.about .container .owl-carousel .item .bottom .right ul li a{
  display: flex;
  padding: 10px 20px;
  background-color: #edd4b3;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  margin-left: 5px;
  transition: all 500ms ease;
}
.about .container .owl-carousel .item .bottom .right ul {
  margin-bottom:0;
}
.about .container .owl-carousel .item .bottom .right ul li a:hover{
  background-color: #ffca86;
  transition: all 500ms ease;
  color: #ffffff;
}


/*Module03*/

.module03{
  background-color: #272727;
  position: relative;
  /* Parallax */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 50px 0;
}

.module03::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0000009e;
  height: 100%;
  width: 100%;
}

.module03 .container  {
  padding: 100px 0;
  z-index: 1;
}
.module03 .container .icon {
  position: relative;
  border: 1px solid #fff;
  padding: 45px 25px;
  border-radius: 15px;
  background-color: #452824d9;
}

.module03 .container .icon a{
  background-color: #a7804b;
  padding: 25px 35px;
  border-radius: 15px;
  font-size: 30px;
}

.module03 .container .icon a i{
  position: relative;
  z-index: 999;
}
.module03 .container .icon .ping{
  position: absolute;
  top: 0;
  left: 0;
  background-color: #a7804b;
  width: 100%;
  height: 100%;
  z-index: 99;
  border-radius: 15px;
	animation: ping 1.3s ease-in-out infinite both;
}


.module03 .container .text, .module03 .container  .content {
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
}

.module03 .container  .content {
  font-size: 60px;
  font-family: var(--font-two);
  line-height: 1.1;
  letter-spacing: -1px;
}


@keyframes ping {
  0% {

    transform: scale(0.5);
    opacity: 0.8;
  }
  80% {

    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}


/*Module04*/

.module04 {
  margin: 100px 0;
}

.module04 .image img{
  border-radius: 25px;
}

.module04 .container .title h3 {
  font-size: 65px;
  color: #433838;
  font-weight: 700;
  margin: 0 50px 50px 0;
  font-family: var(--font-two);
}

.module04 .container .content p {
  font-size: 17px;
  color: #817272;
  line-height: 1.8;
  margin: 0 50px 50px 0;
}

/*Module05*/

.module05{
  background-color: #edd4b3;
  padding: 100px 0;
  font-size: 40px;
  color: #433838;
  font-weight: 700;
  text-align: center;
}


.module05 .icon{
  font-size: 60px;

}
.module05 .text{
  line-height: 1;
  padding: 20px 0;
}
.module05 .odometer{
  font-size: 60px;
}
.module05 .plus{
  font-weight: 300;
}

/* Module06 */
.module06{
  height: 450px;
  background-image: url('../images/page-header-img.jpg');
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.module06cc{
  height: 450px;
  background-image: url('../images/wasserturm.jpg');
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}



.module06 h2{
  font-size: 60px;
  color: #ffffff;
  font-weight: 800;
  font-family: var(--font-two);
}


/* Module07 */
.module07{
  margin: 100px 0;
}
.module07 .left{
  background-color: #eed393;
  padding: 35px 25px;
  border: 1px solid #e9cba6;
}

.module07 .left .title{
  position: relative;
  font-size: 26px;
  font-weight: 700;
  color: #433838;
  font-family: var(--font-two);
  padding-bottom: 15px;
}


.module07 .left .title::before {
  position: absolute;
  bottom: 10px;
  left: 0px;
  width: 15px;
  height: 3px;
  background: #433838;
  content: "";
}
.module07 .left .title::after {
  position: absolute;
  bottom: 10px;
  left: 20px;
  width: 50px;
  height: 3px;
  background: #ba7313;
  content: "";
}

.module07 .left .menu{
  padding-top: 15px;
}
.module07 .left .menu ul{
  padding-left: 0;
  list-style: none;
}
.module07 .left .menu ul li{

  background-color: #ffffff;
  margin-top: 15px;
}
.module07 .left .menu ul li.active a{
  color: #b37313;
}
.module07 .left .menu ul li.active a::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background-color: #eed393;
  transition: all 700ms ease;
  transform: scaleY(1.0);
}

.module07 .left .menu ul li a{
  position: relative;
  display: block;
  padding: 15px;
  color: #272727;
  transition: all 500ms ease;
  font-weight: 500;
}
.module07 .left .menu ul li a:hover{
  color: #b37313;
  transition: all 500ms ease;

}

.module07 .left .menu ul li a::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background-color: #b37313;
  transition: all 700ms ease;
  transform: scaleY(0);

}
.module07 .left .menu ul li a:hover::before{
  transform: scaleY(1.0);

}


.module07 .left .menu ul li a span{
  position: absolute;
  right: 75px;
}

.module07 .left .menu ul li a i{
  position: absolute;
  right: 20px;
}

.module07 .left .tags ul li{
  display: inline-block;
  background-color: #d2b085;
  padding: 5px 10px;
  border-radius: 7px;
  margin: 5px;
  font-size: 15px;
}





.module07 .right img{
  width: 100%;
}

.module07 .right h1{
  font-size: 50px;
  color: #433838;
  padding-top: 25px;
  font-family: var(--font-two);
  font-weight: 700;
}
.module07 .right h1::after {
  position: absolute;
  bottom: 10px;
  left: 20px;
  width: 50px;
  height: 3px;
  background: #ba7313;
  content: "";
}



.module07 .right h3{
  font-size: 30px;
  color: #433838;
  font-family: var(--font-two);
  font-weight: 700;
  padding-top: 25px;
}
.module07 .right p{
  font-size: 18px;
  color: #817777;
  line-height: 1.8;
}

.module07 .right .details{
  position: relative;
}
.module07 .right .details .catagory{
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: #ba7313;
  color: #fff;
  padding: 3px 7px;
  font-size: 14px;
}
.module07 .right .details .con{
  padding: 17px 10px;
  background-color: #fde9d0;
  display: flex;
  font-size: 14px;
  font-weight: 600;
}
.module07 .right .details .con .author, .module07 .right .details .con .date{
  padding-right: 25px;
}
.module07 .right .details .con .author i, .module07 .right .details .con .date i{
  color: #ba7313;
  padding-right: 5px;
}

.module07 .right .comments{
  background-color: #f1eee9;
  padding: 25px 35px;
  margin-top: 50px;
}
.module07 .right .comments .detail{
  padding-bottom: 25px;
  margin: 25px 0 30px;
  border-bottom: 1px solid #bbbaba;
}
.module07 .right .comments .detail .name{
  font-size: 20px;
  font-weight: 700;
  color: #433838;
}

.module07 .right .comments .detail .date{
  color: #964e38;
  font-size: 17px;
  font-weight: 500;
  padding-top: 15px;
}
.module07 .right .comments .detail .comment{
  line-height: 1.8;
  color: #817777;
  padding-top: 15px;
}

/*Module08*/
.module08{
  
}

/*Module09*/
.module09{
  padding: 75px 0;
  text-align: center;
}

.module09 h2{
  color: #433838;
  padding: 25px 200px;
  font-size: 45px;
  font-weight: 700;
  font-family: var(--font-two);
}
.module09 p{
  color: #433838;
  font-weight: 400;
  font-size: 17px;
}
.module09 .info{
  padding-top: 45px;
}

.module09 .info .icon{
  position: relative;
  background: #a9804a;
  width: 100px;
  height: 100px;
  border-radius: 50%; /* Tam yuvarlak */
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.5s ease-in;
}


.module09 .info .icon:hover::before{
  transform: scale(1.0);
  opacity: 1;

}
.module09 .info .icon:before{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #333333;
  border-radius: 50%;
  transform: scale(1.5);
  opacity: 0;
  content: "";
  transition: all 0.7s ease ;
  transition-delay: 0.1s;
  z-index: 2;

}
.module09 .info .icon i{
  font-size: 35px;
  color: #fff;
  z-index: 3;
}

.module09 .info .content{
  padding-left: 35px;
}

.module09 .info .content .title{
  font-size: 25px;
  font-weight: 600;
  color: #433838;
  padding-bottom: 15px;
  font-family: var(--font-two);
}
.module09 .info .content .text{

}
.module09 .info .content .text a{
  color: #433838;
}
.module09 .info .content .text a:hover{
  color: #d9b974;
}




/*Module10*/
.module10{
  padding: 50px 0;
}
.module10 .left{
  padding-left: 0 !important;
  position: relative;
}
.module10 .left .box{
  position: absolute;
  right: -50px;
  bottom: 50px;
  background-color: #eed393;
  padding: 25px 30px;
  border-radius: 30px 0 30px 30px;
  width: 200px;
  color: #ffffff;
  
}

.module10 .left .box .number{
  font-size: 70px;
  font-weight: 700;
  line-height: 70px;

}
.module10 .left .box .text{
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-two);
}
.module10 .right{
  padding: 0 200px 0 90px;
}

.module10 .right h3{
  font-size: 70px;
  font-weight: 700;
  color: #433838;
  line-height: 1.0;
  font-family: var(--font-two);
  padding-top: 10px;
}
.module10 .right h4{
  margin: 35px 0px;
  color: #b98d54;
}
.module10 .right h6{
  font-size: 15px;
  color: #b98d54;
  position: relative;
}
.module10 .right h6::before{
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background-color: #433838;
  bottom: -5px;
}
.module10 .right h6::after{
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  bottom: -5px;
  background-color: #ba7313;
  left: 20px;
}
.module10 .right p{
  font-size: 17px;
  color: #817272;
  line-height: 1.6;
}


/*Genel*/
.accordion-item {
 border: 0;
 margin-top: 20px;
}
.accordion-header {
  font-family: var(--font-two);
}

.accordion-button:not(.collapsed) {
  color: #2e2e2e;
  background-color: #efe2d2;
  font-weight: 600;
  font-size: 20px;
}

.accordion-button.collapsed {
  font-size: 20px;
  font-weight: 600;
}

.accordion-button {
  background-color: #f1eee9;
}

.accordion-body {
  line-height: 1.9;
  font-size: 18px;
  color: #817777;
  
}

.accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
}

/* Bootstrap'in kendi varsayılan ikonunu tamamen kaldır */
.accordion-button:not(.collapsed)::after,.accordion-button::after {
  background-image: none;
}
.accordion-button::after {
  width: 35px;
  height: 35px;
  display: flex;
  background-color: #433838;
  border-radius: 35px;
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: transform 0.3sease-in-out;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.accordion-button[aria-expanded="true"]::after {
  content: "\f068"; /* Font Awesome "minus" ikonu */
  transform: rotate(180deg);
}
.bio-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.bio-section {
  width: 50vw; /* ekranın yarısı */
  min-height: 300px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: #eed393;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.bio-img {
  max-width: 360px; /* önceki 180px’in iki katı */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  border: 2px solid #66420c;
}

.bio-text {
  flex: 1;
}

/*Footer*/


.footer{
  
    background-color:#3f3534 ;
}
.footer .top{
    min-height: 100px;
    padding: 100px 0 50px;
}

.footer .top .content{
  color: #959595;
}

.footer .top .title{
  color: #ffffff;
  font-size: 20px;
  padding-bottom: 25px;
  font-family: var(--font-two);
  font-weight: 700;
}

.footer .top ul li{
  padding: 5px 0px;
}
.footer .top ul li a, .footer .top ul li span {
  color: #959595;
  font-size: 15px;
  padding: 0 5px;
  transition: all 500ms ease;
}
.footer .top ul li i{
  color: #a9804a;
}
.footer .top ul li a:hover{
  color: #faeddd;
  transition: all 500ms ease;
}


.footer .botton{
    min-height: 50px;
    background-color:#312828cc ;
    color: #fff;
    text-align: center;
    padding-top: 15px;
    font-size: 13px;
}
/*blog*/
/* Ana Container */
.content-bb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Accordion Stili */
.accordion-bb {
  --bs-accordion-bg-bb: #f8f9fa;
  --bs-accordion-border-color-bb: #e9ecef;
  margin-bottom: 2rem;
}

/* Accordion Başlıkları */
.accordion-button-bb {
  font-weight: 600;
  color: #2c3e50;
  background-color: var(--bs-accordion-btn-bg-bb, #ffffff);
  padding: 1.25rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.accordion-button-bb:not(.collapsed) {
  background-color: var(--bs-accordion-active-bg-bb, #f3f6ff);
  color: #4361ee;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
}

/* Accordion İçeriği */
.accordion-body-bb {
  padding: 1.5rem;
  background-color: #fff;
  border-left: 3px solid #4361ee;
  line-height: 1.7;
}

/* Özel Elementler */
.heading-bb {
  color: #4361ee;
  margin-top: 1rem;
  font-size: 1.2rem;
}

.list-bb {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.item-bb {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

.item-bb::before {
  content: "•";
  color: #4361ee;
  position: absolute;
  left: 0;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .accordion-button-bb {
      padding: 1rem;
      font-size: 1rem;
  }
  
  .accordion-body-bb {
      padding: 1.2rem;
  }
}
/* whatsapp */
.whatsapp-fixed {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column; /* Yataydan dikeye geçiş */
  align-items: center;    /* Ortala yatayda */
  background-color: white;
  padding: 10px 15px;
  border-radius: 30px 0 0 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  z-index: 1000;
  width: 150px;           /* Genişlik sabit */
}

.whatsapp-fixed img {
  width: 80px;             /* İkon biraz küçültüldü */
  height: 80px;
  margin-bottom: 10px;     /* Alttaki yazıya boşluk */
}

.whatsapp-text {
  font-size: 14px;
  color: #075e54;
  font-weight: bold;
  text-align: center;      /* Yazıyı ortala */
  white-space: normal;     /* Yazı satır atlayabilir */
}


