*{
    margin: 0;
    padding: 0;
}

.container{
    background: url(arka\ plan.jpg);
    background-size: cover;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
    .container {
        background: url(arka\ plan.jpg); /* Mobil arka plan resmi */
        height: auto;
        width: 900px;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .container {
        height: auto;
        width: 1470px;
    }
}

.container .navbar{
    background: url(arka\ plan\ üst.jpg);
    width: 100%;
    height: 90px;
    position: fixed;
    z-index: 1000; /* Diğer öğelerin üzerinde olacak bir değer belirleyin */
}
@media screen and (min-width: 320px) and (max-width: 480px) { /* Mobil ekranlar için */
    .container .navbar {
        position: fixed;
        height: auto;
        z-index: 1000;
    }
}
.arkaplan1{
    background: url(arkaplan1.jpg);
    width: 100%;
    height: 760px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
    .arkaplan1 {
        height: 320px; /* Mobil cihazlarda daha küçük bir yükseklik */
        
    }
}
.navbar .logo{
    display: inline-block;
    margin-left: 90px;
    margin-top: 30px;
}
@media screen and (min-width: 320px) and (max-width: 480px) { /* Mobil ekranlar için */
    .navbar .logo {
        display: block; /* Blok öğe olarak görüntüle */
        margin: 10px 160px; /* Otomatik hizalama */
        max-width: 80%; /* Maksimum genişlik */
    }
}
.kmlogo3 img{
    width: 50px;
    position: absolute;

    left: 30px;
    top: 20px;
    z-index: 1200; /* Diğer öğelerin üzerinde olacak bir değer belirleyin */
}
@media screen and (min-width: 320px) and (max-width: 480px) { /* Mobil ekranlar için */
    .kmlogo3 img {
        width: 120px; /* Mobil cihazlarda logo resminin genişliği */
        left: 10px; /* Yeni pozisyon */
        top: 10px; /* Yeni pozisyon */
    }
}
.navbar .logo a{
    text-decoration: none;
    font-size: 30px;
    font-family: sans-serif;
    color: #ff7f00;
}
@media screen and (min-width: 320px) and (max-width: 480px) { /* Mobil ekranlar için */
    .navbar .logo a {
        font-size: 60px; /* Mobil cihazlarda metin boyutunu değiştir */
        color: #ff7f00; /* Mobil cihazlarda metin rengini değiştir */
        font-family: sans-serif;
    }
}

.navbar ul{
   float: right;
   margin-right: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) { /* Mobil ekranlar için */
    .navbar ul {
        float: none; /* Önceki float değerini kaldır */
        margin: 0; /* Önceki sağ boşluğu kaldır */
        margin-right: -550px;
    }
}
.navbar ul li{
    list-style: none;
    display:inline-block;
    margin: 0 8px;
    line-height: 80px;
}
@media screen and (min-width: 320px) and (max-width: 480px) { /* Mobil ekranlar için */
    .navbar ul li {
        display: block; /* Blok öğe olarak görüntüle */
        margin: 15px auto; /* Otomatik kenar boşluğu */
        text-align: center; /* Merkezi hizalama */
        line-height: normal; /* Normal satır yüksekliği */
    }
}

.navbar ul li a{
    color: chocolate;
    text-decoration: none;
    font-size: 20px;
    padding: 6px 13px;
    font-family: sans-serif;
    transition: 7s;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
    .navbar ul li a {
        font-size: 30px; /* Mobil cihazlarda daha küçük bir yazı tipi */
        padding: 6px 10px; /* Mobil cihazlarda daha küçük bir dolgu */
        font-family: sans-serif;
        transition: 7s;
    }
}
.navbar ul li a.active,
.navbar ul li a:hover{
    background-color: paleturquoise;
    border-radius: 5px;
}
.container .center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-family: sans-serif;
    user-select: none;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
    .navbar ul li a.active,
    .navbar ul li a:hover {
        background-color: paleturquoise; /* Mobilde arka plan rengini kaldır */
        border-radius: 5; /* Mobilde kenar yuvarlatmayı kaldır */
    }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
    .container .center {
        position: static; /* Mobilde pozisyonu statik yap */
        margin-top: 250px;
    }
}
.center h1 {
    color: black;
    font-size: 70px;
    font-weight: bold;
    width: 900px;
    text-align: center;
    margin: 0 auto; /* Yazıyı yatayda ortalamak için */
}

@media screen and (min-width: 320px) and (max-width: 480px) {
    .center h1 {
        font-size: 80px;
        width: 90%;
        margin-left: 55%; /* Yazıyı sağa kaydırmak için */
        margin-top: 30px;
    }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
    .center h1 {
        margin-left: 40%;
        margin-top: -200px;
    }
}

.center h2 {
    color: rgb(13, 13, 13);
    font-size: 50px;
    font-weight: bold;
    width: 900px;
    margin-top: 10px;
    text-align: center;
    margin: 0 auto; /* Yazıyı yatayda ortalamak için */
}

@media screen and (min-width: 320px) and (max-width: 480px) {
    .center h2 {
        font-size: 50px;
        width: 90%;
        margin-left: 55%; /* Yazıyı sağa kaydırmak için */
    }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
    .center h2 {
        margin-left: 40%;
    }
}
.center .buttons{
    margin: 55px 290px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
    .center .buttons {
        margin: 30px 160px;
        display: none;
    }
}
.sahteins a{
    height: 70px;
    width: 150px;
    font-size: 20px;
    font-weight: bold;
    color: black;
    background: paleturquoise;
    cursor: pointer;
    outline: none;
    border-radius: 20px;
    transition: .7s ease;
    position: relative;
    top: -1767px;
    left: 42.2%;
}
.sahteface a{
    height: 70px;
    width: 150px;
    font-size: 20px;
    font-weight: bold;
    color: black;
    background: paleturquoise;
    cursor: pointer;
    outline: none;
    border-radius: 20px;
    transition: .7s ease;
    position: relative;
    top: -1790px;
    left: 50.5%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
    .sahteins a,
    .sahteface a {
        top: -1985px;
        left: unset;
        margin: 10px 370px;
        display: block;
        text-align: center;
        padding-top: 15px;
    }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
    .sahteins a {
        top: -1916px;
        left: 40.75%;
    }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
    .sahteface a {
        top: -1938px;
        left: 51.75%;
    }
}
.sahteins a:hover{
    border: solid 1px rgba(30, 0, 255, 0.561);
    background: rgb(5, 137, 189);
    border-width: 20px;
    border-left-width: 5px;
    border-right-width: 0px;
}
.sahteface a:hover{
    border: solid 1px rgba(30, 0, 255, 0.561);
    background: rgb(5, 137, 189);
    border-width: 20px;
    border-left-width: 3px;
    border-right-width: 8px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
    .sahteins a:hover,
    .sahteface a:hover {
        border-width: 10px;
        border-left-width: 3px;
        border-right-width: 3px;
    }
}
.buttons button{
    height: 70px;
    width: 150px;
    font-size: 20px;
    font-weight: bold;
    color: black;
    background: paleturquoise;
    border: solid 1px rgba(30, 0, 255, 0.561);
    cursor: pointer;
    outline: none;
    border-radius: 20px;
    transition: .7s;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
    .buttons button {
        width: 100%;
        margin-bottom: 10px;
    }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
    .buttons button {
        position: relative;
        left: 113%;
        top: 150px;
    }
}
.buttons button:hover{
    background: rgb(5, 137, 189);
}
@media screen and (min-width: 320px) and (max-width: 480px) {
    .buttons button:hover {
        background: paleturquoise; /* veya istediğiniz diğer bir renk */
    }
}
.kmlogo img{
    width: 400px;
    position: absolute;
    height: 300px;

    left: 5%;
    top: 33.5%;
    border: 10px solid black;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
    .kmlogo img {
        width: 200px;
        height: 200px;
        left: 190px;
        right: unset;
        top: 800px;
    }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
    .kmlogo img {
        width: 300px;
        height: 200px;
        left: 30%;
        margin-top: 70px;
    }
}
.kmlogo2 img{
    width: 400px;
    position: absolute;
    height: 300px;

    right: 5%;
    top: 33.5%;
    border: 10px solid black;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
    .kmlogo2 img {
        width: 200px;
        height: 200px;
        right: -320px;
        left: unset;
        top: 800px;
    }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
    .kmlogo2 img {
        width: 300px;
        height: 200px;
        left: 120%;
        margin-top: 70px;
    }
}
.ilkgeçiş img{
    width: 100%;
    height: 70px;
    position: relative;
    top: 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
    .ilkgeçiş img {
        width: 900px;
        margin-top: 500px;
    }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
    .ilkgeçiş img {
        width: 1470px;
    }
}

.ikincigeçiş img{
    width: 100%;
    height: 70px;
    position: relative;
    top: -50px;
}

@media screen and (min-width: 320px) and (max-width: 480px) {
    .ikincigeçiş img {
        width: 900px;
        top: -200px;
    }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
    .ikincigeçiş img {
        width: 1470px;
    }
}

.songeçiş img{
    width: 100%;
    height: 70px;
    position: absolute;
    margin-top: 1200px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
    .songeçiş img{
    top: 3100px;
    width: 900px;
    z-index: 900;
    }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
    .songeçiş img{
        width: 1470px;
    }
}
.arkaplan2{
    background: url(arkaplan2.jpg);
    width: 100%;
    height: 1450px;
    position: relative;
    top: -5px;    
}
@media screen and (min-width: 320px) and (max-width: 480px){
    .arkaplan2 {
        background: url(arkaplan2.jpg);
        height: 1700px;
        width: 900px;
    }
}
@media screen and (min-width: 481px) and (max-width: 768px){
    .arkaplan2 {
        height: 1600px;
    }
}
.arkaplan3{
    background: url(arkaplan3.png);
    width: 100%;
    height: 1250px;
    position: relative;
    top: -55px;
}
.arkaplan4 img{
    width: 100%;
    height: 160px;
    position: absolute;
    margin-top: 3716px;
}
@media screen and (min-width: 320px) and (max-width: 480px){
    .arkaplan4 img {
        width: 900px;
    }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
    .arkaplan4 img {
        width: 1470px;
    }
}
.comunate{
    position: absolute;
    top: 1300px;
    left: 50%;
    transform: translate(-50%,-50%);
    font-family: sans-serif;
    user-select: none;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
    .comunate {
        margin-top: 470px;
    }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
    .comunate {
        margin-left: 47%;
    }
}
.comunate h1{
    color: black;
    font-size: 70px;
    font-weight: bold;
    width: auto;
    text-align: center;
    margin-top: 600px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
    .comunate h1 {
        font-size: 40px;
        width: 90%;
        margin-top: 900px;
        margin-left: 65%;
        
    }
}
.comunate h4{
    color: darkred;
    font-size: 50px;
    font-weight: bold;
    width: auto;
    margin-top: 50px;
    text-align: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
    .comunate h4 {
        font-size: 40px;
        width: 90%;
        margin-left: 65%;
        
    }
}
.comunate h2{
    color: darkred;
    font-size: 50px;
    font-weight: bold;
    width: auto;
    margin-top: 20px;
    text-align: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
    .comunate h2 {
        font-size: 40px;
        width: 90%;
        margin-left: 65%;
        
    }
}
.comunate h3{
    color: rgb(13, 13, 13);
    font-size: 40px;
    font-weight: bold;
    width: auto;
    margin-top: 10px;
    text-align: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
    .comunate h3 {
        font-size: 30px;
        width: 100%;
        margin-left: 60%;
        
    }
}
.hakkımızdaimg img{
    width: 400px;
    position: absolute;
    left: 3.5%;
    top: 1100px;
    border: 10px solid black;
}
.hakkımızdaimg2 img{
    width: 400px;
    position: absolute;
    right: 3.5%;
    top: 1100px;
    border: 10px solid black;
}
@media screen and (min-width: 320px) and (max-width: 480px){
    .hakkımızdaimg {
        display: none;
    }
}
@media screen and (min-width: 481px) and (max-width: 768px){
    .hakkımızdaimg {
        position: relative;
        top: -2500px;
    }
}
@media screen and (min-width: 320px) and (max-width: 480px){
    .hakkımızdaimg2 {
        display: none;
    }
}
@media screen and (min-width: 481px) and (max-width: 768px){
    .hakkımızdaimg2 {
        position: relative;
        top: -2500px;
    }
}
.projebaşlık h1{
    color: black;
    font-size: 70px;
    font-weight: bold;
    width: auto;
    margin-left: 3%;
    text-align: center;
    position: relative;
    top: -1260px;
}
@media screen and (min-width: 320px) and (max-width: 480px){
    .projebaşlık h1{
        font-size: 50px;
        text-align: center;
        margin-top: -130px;
    }
}

a{color:black;}
a:link{text-decoration:none;}

.comunatee{
    position: relative;
    margin-top: 0px;
    text-align: center;
    font-family: sans-serif;
    user-select: none;
}
@media screen and (min-width: 320px) and (max-width: 480px){
    .comunatee{
        top: -100px;
        margin-left: 25%;
    }
}
.comunatee h1{
    color: black;
    font-size: 70px;
    font-weight: bold;
    margin-top: 20px;
    width: 500px;
    left: 25%;
    position: relative;
}
@media screen and (min-width: 320px) and (max-width: 480px){
    .comunatee h1{
        font-size: 40px;
        left: -7%;
    }
}
.comunatee h4{
    color: black;
    font-size: 50px;
    font-weight: bold;
    width: 1200px;
    left: 18.5%;
    position: relative;
    margin-top: 90px;
}
@media screen and (min-width: 320px) and (max-width: 480px){
    .comunatee h4{
        font-size: 30px;
        width: 90%;
        margin-left: -30%;

    }
}
.address{
    color: darkred;
    font-size: 40px;
    font-weight: bold;
    width: 500px;
    margin-top: 10px;
    text-decoration: none;
    padding: 6px 13px;
    font-family: sans-serif;
    transition: .7s;
    position: relative;
    left: 36.2%;
}
@media screen and (min-width: 320px) and (max-width: 480px){
    .address{
        position: static;
        margin-left: -5%;
    }
}
a{color:black;}

.comunatee h2{
    color: rgb(13, 13, 13);
    font-size: 50px;
    font-weight: bold;
    width: 500px;
    margin-top: 50px;
    position: relative;
    left: 37%;
}
@media screen and (min-width: 320px) and (max-width: 480px){
    .comunatee h2{
        left: -7%;
    }
}
.comunatee h3{
    color: rgb(13, 13, 13);
    font-size: 50px;
    font-weight: bold;
    width: 500px;
    margin-top: 10px;
    position: relative;
    top: 85px;
    left: 36%;
}
@media screen and (min-width: 320px) and (max-width: 480px){
    .comunatee h3{
        top: 50px;
        left: -4%;
        font-size: 30px;
    }
}
.çerçeve{
    border: 7px ridge red;
    height: 140px;
    width: 420px;
    position: relative;
    margin-left: 38%;
    margin-top: -60px;  
}
@media screen and (min-width: 320px) and (max-width:480px){
    .çerçeve{
        height: 100px;
        width: 250px;
        margin-left: 35%;
        margin-top: -150px;
    }
}
.gps img{
    width: 50px;
    height: 50px;
    position: relative;
    top: 280px;
    left: 39%;
}
@media screen and (min-width: 320px) and (max-width: 480px){
    .gps img{
        top: 140px;
        left: 25%;
    }
}
.wp img{
    width: 130px;
    height: 130px;
    position: relative;
    top: -150px;
    margin-left: 70.5%;
}
@media screen and (min-width: 320px) and (max-width: 480px){
    .wp img{
        width: 90px;
        height: 90px;
        top: -105px;
        margin-left: 67%;
    }
}

.wp a{
    background-color: #25d366; /* WhatsApp rengi */
    color: black; /* Beyaz metin */
    padding: 10px 20px; /* Dolgu */
    border-radius: 5px; /* Köşe yuvarlama */
    text-decoration: none; /* Altı çizgiyi kaldırma */
    font-weight: bold; /* Kalın metin */
    position: absolute;
    margin-left: -16%;
    margin-top: -40px;
}
@media screen and (min-width: 320px) and (max-width:480px){
    .wp a{
        margin-left: -37%;
        margin-top: -5px;
        padding: 6px 15px;
    }
}

.telefon img{
    width: 130px;
    height: 130px;
    position: relative;
    top: -280px;
    margin-left: 29%;
}
@media screen and (max-width: 768px){
    .telefon img{
        width: 90px;
        height: 90px;
        margin-left: 22%;
        top: -200px;
    }
}
.ilksıra{
    position: absolute;
    top: 2650px;
    left: 6%;
    display: inline-flex;
}
@media screen and (min-width: 320px) and (max-width: 450px) {
    .ilksıra {
        display: block;
        top: 3300px;
        left: 200px;
    }
}
@media screen and (min-width : 550px) and (max-width: 1000px) {
    .ilksıra {
        top: 2750px;
    }
}
.ilksıra .çerçeve1{
    border: 10px ridge black;
    width: 260px;
    height: 250px;
}
.ilksıra .çerçeve1 a img{
    width: 260px;
    height: 200px;
}
.ilksıra .çerçeve1 a h1{
    font-size: 25px;
    margin-top: 7px;
    margin-left: 7%;
    font-family: Arial, Helvetica, sans-serif;
}
.ilksıra .çerçeve2, .çerçeve3, .çerçeve4, .çerçeve5 a h1{
    font-family: Arial, Helvetica, sans-serif;
}
.ikincisıra .çerçeve1, .çerçeve2, .çerçeve3, .çerçeve4, .çerçeve5 a h1 {
    font-family: Arial, Helvetica, sans-serif;
}
@media (max-width: 450px) {
    .ilksıra .çerçeve1{
        border: 10px ridge black;
        width: 130px;
        height: 125px;
    }
    .ilksıra .çerçeve1 a img{
        width: 130px;
        height: 100px;
    }
    .ilksıra .çerçeve1 a h1{
        font-size: 12.5px;
        margin-top: 7px;
        margin-left: 7%;
    }
}
@media screen and (min-width: 550px) and (max-width: 1000px) {
    .ilksıra .çerçeve1{
        border: 15px ridge black;
        width: 170px;
        height: 165px;
    }
    .ilksıra .çerçeve1 a img{
        width: 170px;
        height: 140px;
    }
    .ilksıra .çerçeve1 a h1{
        font-size: 12.5px;
        margin-top: 7px;
        margin-left: 7%;
    }
}
.ilksıra .çerçeve2{
    border: 10px ridge black;
    width: 260px;
    height: 250px;
    margin-left: 5%;
}
.ilksıra .çerçeve2 a img{
    width: 260px;
    height: 200px;
}
.ilksıra .çerçeve2 a h1{
    font-size: 20px;
    margin-top: 9px;
    margin-left: 1%;
    font-weight: bold;
}
@media (max-width: 768px) {
    .ilksıra .çerçeve2{
        border: 10px ridge black;
        width: 130px;
        height: 125px;
        margin-left: 0%;
        margin-top: 30px;
    }
    .ilksıra .çerçeve2 a img{
        width: 130px;
        height: 100px;
    }
    .ilksıra .çerçeve2 a h1{
        font-size: 10px;
        margin-top: 9px;
        margin-left: 1%;
        font-weight: bold;
    }
}
.ilksıra .çerçeve3{
    border: 10px ridge black;
    width: 260px;
    height: 250px;
    margin-left: 5%;
}
.ilksıra .çerçeve3 a img{
    width: 260px;
    height: 200px;
}
.ilksıra .çerçeve3 a h1{
    font-size: 20px;
    margin-top: 9px;
    margin-left: 2%;
    font-weight: bold;
}
@media (max-width: 768px) {
    .ilksıra .çerçeve3{
        border: 10px ridge black;
        width: 130px;
        height: 125px;
        margin-left: 0%;
        margin-top: 30px;
    }
    .ilksıra .çerçeve3 a img{
        width: 130px;
        height: 100px;
    }
    .ilksıra .çerçeve3 a h1{
        font-size: 10px;
        margin-top: 9px;
        margin-left: 2%;
        font-weight: bold;
    }
}
.ilksıra .çerçeve4{
    border: 10px ridge black;
    width: 260px;
    height: 250px;
    margin-left: 5%;
}
.ilksıra .çerçeve4 a img{
    width: 260px;
    height: 200px;
}
.ilksıra .çerçeve4 a h1{
    font-size: 20px;
    margin-top: 9px;
    margin-left: 14%;
    font-weight: bold;
}
@media (max-width: 768px) {
    .ilksıra .çerçeve4{
        border: 10px ridge black;
        width: 130px;
        height: 125px;
        margin-left: 0%;
        margin-top: 30px;
    }
    .ilksıra .çerçeve4 a img{
        width: 130px;
        height: 100px;
    }
    .ilksıra .çerçeve4 a h1{
        font-size: 10px;
        margin-top: 9px;
        margin-left: 14%;
        font-weight: bold;
    }
}
.ilksıra .çerçeve5{
    border: 10px ridge black;
    width: 260px;
    height: 250px;
    margin-left: 5%;
}
.ilksıra .çerçeve5 a img{
    width: 260px;
    height: 200px;
}
.ilksıra .çerçeve5 a h1{
    font-size: 20px;
    margin-top: 0px;
    margin-left: 10%;
    font-weight: bold;
}
@media (max-width: 768px) {
    .ilksıra .çerçeve5{
        border: 10px ridge black;
        width: 130px;
        height: 125px;
        margin-left: 0%;
        margin-top: 30px;
    }
    .ilksıra .çerçeve5 a img{
        width: 130px;
        height: 100px;
    }
    .ilksıra .çerçeve5 a h1{
        font-size: 10px;
        margin-top: 0px;
        margin-left: 10%;
        font-weight: bold;
    }
}

.ikincisıra{
    position: absolute;
    top: 3100px;
    left: 6%;
    display: inline-flex;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
    .ikincisıra {
        display: block;
        top: 3300px;
        left: 540px;
    }
}
.ikincisıra .çerçeve1{
    border: 10px ridge black;
    width: 260px;
    height: 250px;
}
.ikincisıra .çerçeve1 a img{
    width: 260px;
    height: 200px;
}
.ikincisıra .çerçeve1 a h1{
    font-size: 16px;
    margin-top: 7px;
    margin-left: 0%;
    font-family: serif;
}
@media (max-width: 768px) {
    .ikincisıra .çerçeve1{
        border: 10px ridge black;
        width: 130px;
        height: 125px;
    }
    .ikincisıra .çerçeve1 a img{
        width: 130px;
        height: 100px;
    }
    .ikincisıra .çerçeve1 a h1{
        font-size: 8px;
        margin-top: 2px;
        margin-left: 0%;
        font-family: serif;
    }
}
.ikincisıra .çerçeve2{
    border: 10px ridge black;
    width: 260px;
    height: 250px;
    margin-left: 5%;
}
.ikincisıra .çerçeve2 a img{
    width: 260px;
    height: 200px;
}
.ikincisıra .çerçeve2 a h1{
    font-size: 20px;
    margin-top: 9px;
    margin-left: 1%;
    font-weight: bold;
}
@media (max-width: 768px) {
    .ikincisıra .çerçeve2{
        border: 10px ridge black;
        width: 130px;
        height: 125px;
        margin-left: 0%;
        margin-top: 30px;
    }
    .ikincisıra .çerçeve2 a img{
        width: 130px;
        height: 100px;
    }
    .ikincisıra .çerçeve2 a h1{
        font-size: 10px;
        margin-top: 9px;
        margin-left: 1%;
        font-weight: bold;
    }
}
.ikincisıra .çerçeve3{
    border: 10px ridge black;
    width: 260px;
    height: 250px;
    margin-left: 5%;
}
.ikincisıra .çerçeve3 a img{
    width: 260px;
    height: 200px;
}
.ikincisıra .çerçeve3 a h1{
    font-size: 17px;
    margin-top: 5px;
    margin-left: 2%;
    font-weight: bold;
}
@media (max-width: 768px) {
    .ikincisıra .çerçeve3{
        border: 10px ridge black;
        width: 130px;
        height: 125px;
        margin-left: 0%;
        margin-top: 30px;
    }
    .ikincisıra .çerçeve3 a img{
        width: 130px;
        height: 100px;
    }
    .ikincisıra .çerçeve3 a h1{
        font-size: 8.5px;
        margin-top: 5px;
        margin-left: 2%;
        font-weight: bold;
    }
}
.ikincisıra .çerçeve4{
    border: 10px ridge black;
    width: 260px;
    height: 250px;
    margin-left: 5%;
}
.ikincisıra .çerçeve4 a img{
    width: 260px;
    height: 200px;
}
.ikincisıra .çerçeve4 a h1{
    font-size: 14px;
    margin-top: 0px;
    margin-left: 5%;
    font-weight: bold;
}
@media (max-width: 768px) {
    .ikincisıra .çerçeve4{
        border: 10px ridge black;
        width: 130px;
        height: 125px;
        margin-left: 0%;
        margin-top: 30px;
    }
    .ikincisıra .çerçeve4 a img{
        width: 130px;
        height: 100px;
    }
    .ikincisıra .çerçeve4 a h1{
        font-size: 7px;
        margin-top: 0px;
        margin-left: 5%;
        font-weight: bold;
    }
}
.ikincisıra .çerçeve5{
    border: 10px ridge black;
    width: 260px;
    height: 250px;
    margin-left: 5%;
}
.ikincisıra .çerçeve5 a img{
    width: 260px;
    height: 200px;
}
.ikincisıra .çerçeve5 a h1{
    font-size: 15px;
    margin-top: 5px;
    margin-left: 2%;
    font-weight: bold;
}
@media (max-width: 768px) {
    .ikincisıra .çerçeve5{
        border: 10px ridge black;
        width: 130px;
        height: 125px;
        margin-left: 0%;
        margin-top: 30px;
    }
    .ikincisıra .çerçeve5 a img{
        width: 130px;
        height: 100px;
    }
    .ikincisıra .çerçeve5 a h1{
        font-size: 8.5px;
        margin-top: 0px;
        margin-left: 10%;
        font-weight: bold;
    }
}

.whatsapp {
    position: fixed;
    bottom: 40px;
    right: 40px;
}

.whatsapp img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.whatsapp img:hover {
    transform: scale(1.1);
}
