@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Sedan+SC&display=swap');
:root{
    --color-1:#00469c;
    --text-color:#f0f0f0;
    --accent-color:#0f1016;
}
* {
    margin:0px;
    padding:0px;
}
nav {
    height: 60px;
    background-color: var(--color-1);
    display: flex;
    justify-content: space-between; /* Logoyu sola, menüyü sağa çeker */
    align-items: center;
    padding: 0 20px; /* Kenarlardan biraz içeri alır */
}

.links-container {
    height:100%;
    width:100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:flex-end;
}
nav a{
    height:100%;
    padding:0 30px;
    display:flex;
    align-items:center;
    text-decoration:none;
    color:var(--text-color);
    font-family:Montserrat;
    font-size:15px;
}
nav a:hover{
    background-color:var(--accent-color);
    transition-property:background-color;
    transition-duration:0.65s;
}
nav .home-link{
    width:150px;
    margin-left:30px;
}
nav .hamburger{
    fill:var(--text-color);
    width:115px;
    height:35px;
    overflow:hidden;
}
#sidebar-active{
    display:none;
    margin:0px;
}
.open-sidebar-button, .close-sidebar-button{
    display: none;
}
@media(max-width:800px){
    .links-container{
        flex-direction: column;
        align-items:flex-start;
        justify-content:flex-start;
        position:fixed;
        top:0px;
        right:-100%; /* Menü kapalıyken sağdan tamamen dışarıda */
        z-index:9999;
        width:300px;
        background-color:var(--color-1);
        box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
        transition: 0.65s ease-out;
    }
    nav a{
        box-sizing:border-box;
        height:auto;
        width:100%;
        padding:20px 30px;
        justify-content:flex-start;
    }
    .open-sidebar-button, .close-sidebar-button{
        padding:20px;
        display:inline-block;
        overflow:hidden;
    }
    #sidebar-active:checked ~ .links-container{
        right: 0px; /* Menü açıkken sağdan tamamen içeride */
        overflow:hidden;
    }
    #sidebar-active:checked ~ #overlay{
        box-sizing:border-box;
        height:100%;
        width:100%;
        position: absolute ;
        top:0px;
        right:0px;
        z-index:9px;
        overflow:hidden;
    }
    nav .hamburger{
    fill:var(--text-color);
    width:115px;
    height:35px;
    }
}
body{
    background-color: #fff;
    width:100%;
}
footer {
    font-family:Montserrat;
    background-color: #00469c;
    color: #fff;
    padding:20px;
    text-align: center;
}
.social-media a{
    margin: 0 10px;
    color: #fff;
    font-size: 24px;
}
.social-media{
    border-bottom:2px solid white;
    margin-bottom:10px;
}
.links{
    margin-top: 10px;
}
.links a{
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}
.fa-instagram{
    width:40px;
    height:40px;
    margin-bottom:10px;
}
.fa-twitter{
    width:40px;
    height:40px;
    margin-bottom:10px;
}
.fa-youtube{
    width:40px;
    height:40px;
    margin-bottom:10px;
}
.fa-facebook{
    width:40px;
    height:40px;
    margin-bottom:10px;
}
.fa-linkedin{
    width:40px;
    height:40px;
    margin-bottom:10px;
}
.p{
    margin:0px 20px 20px 20px;
    padding:auto;
    text-align:left;
    font-family:montserrat;
    border:1px solid black;
}
.price-tag2{
    background-color: #333;
    background-image: url("https://www.transparenttextures.com/patterns/60-lines.png");
    color: white;
    font-size:15px; /* Yazı boyutunu ayarlayın */
    padding: 10px 20px;
    width:430px;
    border:1px solid black;
}
.price-tag3{
    background-color: #808080;
    background-image: url("https://www.transparenttextures.com/patterns/60-lines.png");
    color: white;
    padding: 10px 20px;
    width:430px;
    border:1px solid black;
}
h4{
    padding-top:10px;
}
.form{
  width: 350px;
  margin: 0 auto;
  font-family:Montserrat;
}
label{
  display: block;
  margin-bottom: 5px;
  font-family:Montserrat;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea{
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid black;
  border-radius: 4px;
}
textarea{
  resize: vertical;
  border: 1px solid black;
  border-radius: 4px;
}
.btn-dark{
  width:350px;
  padding: 12px 20px;
  cursor: pointer;
}
.textarea{
    width:100%;
    height:200px;
    border:1px solid black;
    border-radius:4px;
}
.sss{
    width:1480px auto;
    margin-left:50px;
    margin-right:50px;
    font-family:montserrat;
}
.button{
  background-color:#00469c;
  color:white;
  width:280px;
  height:40px;
  border:1px;
  border-radius:5px;
  cursor:pointer;
  font-family:montserrat;
}
.button:hover{
    background-color:#111;
    transition-property:background-color;
    transition-duration:0.5s;
}
.button1{
  background-color:#00469c;
  color:white;
  width:350px;
  height:40px;
  border:1px;
  border-radius:5px;
  cursor:pointer;
  font-family:montserrat;
}
.button1:hover{
    background-color:#111;
    transition-property:background-color;
    transition-duration:0.5s;
}
#showcase { 
    background:url('img/cod.jpg');
    background-position: center;
    background-size: cover;
    height: 40vh;
    width: 100%;
    position: relative;
    z-index:1;
}

#showcase .content {
    font-family:Montserrat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    font-size: 15px;
    background: rgba(9, 9, 9, 0.5);
    padding: 20px;
    width: 80%;
    border-radius: 10px;
}


#showcase h1 {
    position: absolute;
    top: 50%;
    margin: 0;
    color: #fff;
    left: 50%;
    transform: translate(-50%, -50%);
}


@media (min-width: 576px) { 
    #showcase {
        height: 50vh;
    }

    #showcase .content {
        font-size: 15px;
    }
}

@media (min-width: 768px) {
    #showcase {
        height: 60vh;
    }
    #showcase .content {
        font-size: 15px;
    }
}

@media (min-width: 992px) { 
    #showcase {
        height: 70vh;
    }
    #showcase .content {
        font-size: 15px;
    }
 }
#web{
    font-size:30px;
    text-align:center;
    font-family:Montserrat;
}
.logo2{
    float:left;
    width:70px;
    margin-right:10px;
}
.table{
    width:auto;
    display: flex;
    justify-content:space-around;
    flex-wrap: wrap;
}
.table1{
    width:auto;
    border-radius: 15px ; 
    border: 2px solid rgba(9, 9, 9, 0.5);
    margin:40px;
}
.table2{
    padding:20px;
    width:700px;
    text-align:left;
    list-style-type:none;
    font-family:Montserrat;

}
.table2 h3{
    font-size:27px;
    margin-top:-15px;
}
.table3{
    width:100%;
    display: flex;
    justify-content:space-evenly ;
    flex-wrap: wrap;
    padding:-120px;
}
.table4{
    border-radius: 15px ; 
    border: 2px solid rgba(9, 9, 9, 0.5);
    padding:0px;
    margin:30px;
}
.table5{
    padding:20px;
    width:100%;
    text-align:left;
    list-style-type:none;
    font-family:Montserrat;
    border-radius: 10px;
    box-shadow: 0px 7px 15px 0px rgba(100, 100, 111, 0.7);
    transition: box-shadow .6s;
}
.table5 img{
    padding:-10px;
    width:280px;
    border:2px solid white;
    border-radius:15px;
}
.table5:hover {
    box-shadow: 15px 15px 15px 15px rgba(111, 111, 111, 0.7);
}
.table5 h3{
    font-size:27px;
    margin-top:-15px;
}
@media (max-width:1080px){
    .price-tag {
    background-color: #8b0000;
    background-image: url("https://www.transparenttextures.com/patterns/60-lines.png");
    color: white;
    font-size: 20px; /* Yazı boyutunu ayarlayın */
    padding: 10px 20px;
    width:100%;
    border:1px solid black;
    }
    .price-tag2{
    background-color: #333;
    background-image: url("https://www.transparenttextures.com/patterns/60-lines.png");
    color: white;
    font-size:15px; /* Yazı boyutunu ayarlayın */
    padding: 10px 10px;
    width:100%;
    border:1px solid black;
    }
    .price-tag3{
    background-color: #808080;
    background-image: url("https://www.transparenttextures.com/patterns/60-lines.png");
    color: white;
    padding: 10px 10px;
    width:100%;
    border:1px solid black;
    }
    .textarea{
    width:100%;
    height:200px;
    border:1px solid black;
    border-radius:4px;
    }
    .sss{
    width:auto;
    height:auto;
    font-family:montserrat;
    }
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid black;
    border-radius: 4px;
    
    form{
    width: 350px;
    margin: 0 auto;
    }
    .btn-dark{
    width:350px;
    font-family:montserrat;
    }
    .button{
    background-color:darkred;
    color:white;
    width:270px;
    height:40px;
    border:1px;
    border-radius:5px;
    cursor:pointer;
    font-family:montserrat;
    }
    .fa-instagram{
    width:30px;
    height:30px;
    margin-bottom:10px;
    }
    .fa-twitter{
    width:30px;
    height:30px;
    margin-bottom:10px;
    }
    .fa-youtube{
    width:30px;
    height:30px;
    margin-bottom:10px;
    }
    .fa-facebook{
    width:30px;
    height:30px;
    margin-bottom:10px;
    }
    .fa-linkedin{
    width:30px;
    height:30px;
    margin-bottom:10px;
    }
    .logo1{
    width:150px;
    }
    .logo2{
    float:left;
    width:auto;
    padding-right:50px;
    padding:5px;
    }
}
.table {
  width: 100%; /* Ekran genişliğinin tamamını kaplar */
  display: flex;
  flex-wrap: wrap; /* Küçük ekranlarda elemanların alt alta gelmesini sağlar */
  padding: 10px; /* İç boşluk eklenerek kenarlardan ayrılır */
}

.table1 {
  width: 100%; /* Başlangıçta tam genişlik, daha sonra ayarlanacak */
  border-radius: 15px;
  border: 2px solid rgba(9, 9, 9, 0.5);
  margin: 15px; /* Margin'i azaltarak küçük ekranlarda daha iyi görünüm sağlar */
  box-sizing: border-box; /* padding ve border'ın genişliğe dahil edilmesini sağlar */
}

.table2 {
  padding: 20px;
  width: 100%; /* Başlangıçta tam genişlik, daha sonra ayarlanacak */
  text-align: left;
  list-style-type: none;
  font-family: Montserrat;
  box-sizing: border-box; /* padding'in genişliğe dahil edilmesini sağlar */
}

.table2 h3 {
  font-size: 24px; /* Küçük ekranlarda font boyutunu küçült */
  margin-top: -10px; /* Margin'i ayarla */
}

/* Orta ve büyük ekranlar için düzenlemeler */
@media (min-width: 1200px) {
  .table1 {
    width: calc(50% - 30px); /* İki sütun halinde göster, margin'leri çıkar */
  }

  .table2 {
    width: 100%; /* Orta ve büyük ekranlarda tam genişlik */
  }

  .table2 h3 {
    font-size: 27px; /* Orijinal font boyutuna geri dön */
    margin-top: -15px; /* Orijinal margin ayarına geri dön */
  }
}

/* Daha büyük ekranlar için düzenlemeler */
@media (min-width: 1200px) {
  .table1 {
    width: calc(33.33% - 30px); /* Üç sütun halinde göster, margin'leri çıkar */
  }
}
.table3{
  width: 380px; /* Ekran genişliğinin tamamını kaplar */
  display: flex;
  flex-wrap: wrap; /* Küçük ekranlarda elemanların alt alta gelmesini sağlar */
  margin:auto;
  padding: 10px; /* İç boşluk eklenerek kenarlardan ayrılır */
}

.table4{
  width: auto; /* Başlangıçta tam genişlik, daha sonra ayarlanacak */
  border-radius: 15px;
  border: 2px solid rgba(9, 9, 9, 0.5);
  margin: 15px; /* Margin'i azaltarak küçük ekranlarda daha iyi görünüm sağlar */
  box-sizing: border-box; /* padding ve border'ın genişliğe dahil edilmesini sağlar */
}

.table5{
  padding: 20px;
  width: 100%; /* Başlangıçta tam genişlik, daha sonra ayarlanacak */
  text-align: left;
  list-style-type: none;
  font-family: Montserrat;
  box-sizing: border-box; /* padding'in genişliğe dahil edilmesini sağlar */
}
.table5 h3 {
  font-size: 24px; /* Küçük ekranlarda font boyutunu küçült */
  margin-top: -10px; /* Margin'i ayarla */
}

/* Orta ve büyük ekranlar için düzenlemeler */
@media (min-width: 1200px) {
  .table4 {
    width: calc(50% - 30px); /* İki sütun halinde göster, margin'leri çıkar */
  }

  .table5 {
    width: 100%; /* Orta ve büyük ekranlarda tam genişlik */
  }

  .table5 h3 {
    font-size: 27px; /* Orijinal font boyutuna geri dön */
    margin-top: -15px; /* Orijinal margin ayarına geri dön */
  }
}

/* Daha büyük ekranlar için düzenlemeler */
@media (min-width: 1200px) {
  .table4 {
    width: calc(33.33% - 30px); /* Üç sütun halinde göster, margin'leri çıkar */
  }
}