body {
    font-family: "OpenSans", sans-serif;
    font-size: 1rem;
}

.bold-text {
    font-size: 3rem;
    margin: 0;
    font-family: "Oswald", sans-serif;
}

.banner-top {
    padding: 10px 10px;
    max-width: 1400px;
    /* height: 10%; */
    margin-top: 5px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
}

.banner-top-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    height: 5vh;
}

.menu-right {
    margin: 0;
    text-align: right;
    font-size: 1rem;
    color: black;
    font-weight: lighter;
}

textarea {
  padding: 10px;
}

.banner-top-bottom {
    width: 90%;
    height: 100%;
    padding: 30px;
    position: relative;
    margin: 0 auto; /* Slaytın ortalanması için */
    /* overflow: hidden; */ /* Resimlerin taşmasını engellemek için */
}

.content-child {
    margin: 5px auto;
    text-align: center;
}

.banner2 {
    background-color: #f5f0e1;
    /* height: 80vh; */
    max-height: 200vh;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}


.container {
    text-align: center;
  }
  .item {
    display: inline-block;
    cursor: pointer;
    vertical-align: middle;
    width: 250px;
    background-color: orange;
    padding: 20px;
    margin: 10px;
    text-align: left;
    height: 100px;
    font-weight: bold;
    color: white;
  }

  a {
    color: inherit; /* Mevcut metin rengini kullan */
    text-decoration: none; /* Alt çizgiyi kaldır */
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: #ffb400; /* Mevcut metin rengini kullan */
    text-decoration: none; /* Alt çizgiyi kaldır */
  }

  .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    position: relative;
  }

  .form-group label {
    font-weight: 1000;
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    padding-bottom: 5px;
  }

  .form-group textarea::placeholder{
    opacity: 0.33;
  }

  textarea {
    border: none;
    padding: 10px;
  }

  .form-group input[type="text"],
  .form-group input[type="email"] {
    height: 40px;
    padding: 5px;
    font-size: 1rem;
    text-align: left;
    padding-bottom: 10px;
  }

  .form-group input::placeholder{
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
  }

  .form-group input[type="text"]::placeholder,
  .form-group input[type="email"]::placeholder {
    text-align: left;
    opacity: 0.33;
    white-space: normal;
    padding: 10px;
    font-family: "OpenSans", sans-serif;
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .form-group input[type="file"] {
    display: none;
  }

  .form-group .custom-file-input {
    position: relative;
    width: 100%;
    height: 40px;
    padding: 5px;
    font-size: 1rem;
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    opacity: 1;
    border-radius: 4px;
    text-align: left;
    cursor: pointer;
  }

  .form-group .custom-file-input {
    display: inline-block;
    width: 30px;
    height: 30px;
    padding: 5px;
    background-image: url('img/Uploadicon.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border: none;
    cursor: pointer;
  }

  .form-group .custom-file-label {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 5px;
    font-size: 1rem;
  }

  .form-group .file-name {
    font-size: 1rem;
    margin-top: 5px;
  }

.footer {
    background-color: black;
    color: white;
    padding: 40px;
  }
  
  .footer-content {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
  }
  
  .footer-left {
    flex-grow: 1;
  }
  
  .footer-right {
    margin-left: 20px;
  }