.bg-none {
  background-color: transparent !important;
}
.nocard {
  padding: 0 !important;
  background-color: transparent !important;
  box-shadow: none !important;
  margin: 0 !important;
}
* {
  box-sizing: border-box;
  font-family: "Quicksand";
  overflow-wrap: break-word;
}
.read-more i {
  transition: all 0.3s ease-in-out;
  margin-left: px;
}
.read-more:hover i {
  transform: translateX(4px);
}
body {
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}
.top {
  display: flex;
  justify-content: center;
  background-color: #f5f5f5;
  padding: 10px 0;
}
.top img {
  display: block;
  width: 84px;
}
.header {
  background-color: #63201a;
  width: 100%;
  padding: 0;
  margin: 0;
}
.nav-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}
.nav-group {
  display: flex;
}
.nav-link {
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  font-size: 17px;
  font-weight: 200;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #d4d4d4;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  color: white;
  padding: 10px;
}
.hamburger span {
  height: 2px;
  background: #fff;
  margin: 4px 0;
  width: 25px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .nav-body {
    flex-direction: column;
    align-items: flex-start;
  }
  .gallery {
    padding: 0 !important;
  }
  .details .detail {
    font-size: 14px !important;
  }
  .members {
    margin-top: 4px !important;
  }
  .members h1 {
    margin: 4px 0 !important;
  }
  .members .search {
    margin-bottom: 2px !important;
    padding: 10px !important;
  }
  .member .content {
    font-size: 14px !important;
  }
  .member .name {
    margin-bottom: 5px !important;
    display: block;
  }
  .nav-group {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
  }
  .nav-group.active {
    display: flex;
  }
  .nav-link {
    padding: 10px;
    background-color: #63201A;
  }
  .hamburger {
    display: flex;
    align-self: flex-end;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}
.main {
  display: flex;
  width: 1200px;
  max-width: 100%;
  margin: 10px auto;
}
.main .left {
  width: 50%;
  padding: 5px;
  margin-top: 10px !important;
}
.main .left .activities {
  display: flex;
  flex-direction: column;
  gap: 0px !important;
}
.main .left .activities .head {
  font-size: 25px;
  color: #203e7a;
  font-weight: bold;
  margin-bottom: 0px !important;
  padding-bottom: 0;
  padding-left: 0;
  margin-top: 10px !important;
}
.main .left .activities .activity {
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
  background-color: white;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  margin: 10px auto;
}
.main .left .activities .activity:first-child {
  margin-top: 0;
}
.main .left .activities .activity img {
  width: 100%;
  height: auto;
}
.main .left .activities .activity .activity-content {
  padding: 15px;
}
.main .left .activities .activity .activity-content .activity-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main .left .activities .activity .activity-content .activity-period {
  background-color: #402397;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  font-size: 12px;
}
.main .left .activities .activity .activity-content h2 {
  font-size: 18px;
  font-weight: 400;
  margin: 10px 0;
  color: #545454;
}
.main .left .activities .activity .activity-content p {
  font-size: 14px;
  color: #858585;
  margin: 10px 0;
}
.main .left .activities .activity .activity-content hr {
  border-top: 1px solid #efefef;
  margin: 10px 0;
}
.main .left .activities .activity .activity-content .read-more {
  display: inline-block;
  color: #858585;
  text-decoration: none;
  font-size: 14px;
}
.main .left .activities .activity .activity-content .read-more:hover {
  text-decoration: underline;
}
.main .right {
  padding: 5px;
  width: 50%;
}
.main .right .head {
  font-size: 25px;
  color: #203e7a;
  font-weight: bold;
  margin-bottom: 10px;
  padding-bottom: 0;
  padding-left: 0;
}
.main .right .announcements {
  display: flex;
  flex-direction: column;
}
.main .right .announcements .head {
  font-size: 25px;
  padding-bottom: 5px;
  color: #d6870d;
  margin-bottom: 0 !important;
  font-weight: bold;
  margin-top: 10px !important;
  margin-bottom: 5px;
}
.main .right .announcements .announcement {
  padding: 5px 15px;
  background-color: white;
  padding: 15px 20px;
  border-radius: 3px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  margin: 5px 0;
}
.main .right .announcements .announcement h2 {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  margin: 0;
  margin-bottom: 10px;
}
.main .right .announcements .announcement h2:hover {
  text-decoration: underline;
  cursor: pointer;
}
.main .right .announcements .announcement .details {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border: 1px solid #d6870d;
  border-radius: 3px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  margin-bottom: 5px;
}
.main .right .announcements .announcement .details span {
  color: #d6870d;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 600;
}
.main .right .allebens {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.main .right .allebens .head {
  font-size: 25px;
  color: #0088d6;
  font-weight: bold;
  padding: 0px;
  margin-top: 5px;
}
.main .right .allebens .alleben {
  padding: 10px;
  margin: 5px 0;
  background-color: #f6fcff;
  border-radius: 3px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
}
.main .right .allebens .alleben .content {
  display: flex;
  gap: 10px;
  padding: 0;
}
.main .right .allebens .alleben .content .left {
  width: 70%;
  padding: 0;
}
.main .right .allebens .alleben .content .left h2 {
  color: #545454;
  font-size: 16px;
  font-weight: 400;
  margin: 2px 0;
}
.main .right .allebens .alleben .content .left p {
  color: #858585;
  margin: 2px;
  font-size: 14px;
}
.main .right .allebens .alleben .content .right {
  width: 30%;
}
.main .right .allebens .alleben .content .right img {
  width: 100%;
}
.main .right .allebens .alleben hr {
  border-top: 1px solid #efefef;
  margin: 10px 0;
}
.main .right .allebens .alleben .read-more {
  display: inline-block;
  color: #858585;
  text-decoration: none;
  font-size: 14px;
}
.main .right .allebens .alleben .read-more:hover {
  text-decoration: underline;
}
.main .right .messages {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.main .right .messages .head {
  font-size: 25px;
  color: #8e714b;
  font-weight: bold;
  padding: 0px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.main .right .messages .message {
  padding: 10px;
  margin: 10px 0;
  background-color: white;
  border-radius: 3px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
}
.main .right .messages .message .content {
  display: flex;
  gap: 10px;
  padding: 0;
}
.main .right .messages .message .content .right {
  width: 70%;
  padding: 0;
}
.main .right .messages .message .content .right h2 {
  color: #545454;
  font-size: 20px;
  font-weight: 400;
  margin: 2px 0;
}
.main .right .messages .message .content .right p {
  color: #858585;
  margin: 2px;
  font-size: 14px;
}
.main .right .messages .message .content .left {
  width: 30%;
}
.main .right .messages .message .content .left img {
  width: 100%;
}
.main .right .messages .message hr {
  border-top: 1px solid #efefef;
  margin: 10px 0;
}
.main .right .messages .message .read-more {
  display: inline-block;
  color: #858585;
  text-decoration: none;
  font-size: 14px;
}
.main .right .messages .message .read-more:hover {
  text-decoration: underline;
}
.main .right .related {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.main .right .related .head {
  font-size: 25px;
  color: #8A9442;
  font-weight: bold;
  padding: 0px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.main .right .related .message {
  padding: 10px;
  margin: 10px 0;
  background-color: white;
  border-radius: 3px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
}
.main .right .related .message .content {
  display: flex;
  gap: 10px;
  padding: 0;
}
.main .right .related .message .content .right {
  width: 70%;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.main .right .related .message .content .right h2 {
  color: #8A9442;
  font-size: 16px;
  font-weight: bolder;
  margin: 2px 0;
}
.main .right .related .message .content .right a {
  margin: 0 auto;
  text-decoration: none;
  color: #858585;
  margin: 2px;
  font-size: 15px;
}
.main .right .related .message .content .right a:hover {
  text-decoration: underline;
}
.main .right .related .message .content .right a span {
  color: #FFB300;
}
.main .right .related .message .content .right button {
  background-color: #FFBC20;
  color: #fff;
  width: 106px;
  display: inline;
  height: 26px;
  cursor: pointer;
  text-align: center;
  align-items: center;
  justify-content: center;
  outline: none;
  border: none;
  margin-top: 12px;
}
.main .right .related .message .content .left {
  width: 30%;
}
.main .right .related .message .content .left img {
  width: 100%;
}
.main .right .related .message hr {
  border-top: 1px solid #efefef;
  margin: 10px 0;
}
.main .right .related .message .read-more {
  display: inline-block;
  color: #858585;
  text-decoration: none;
  font-size: 14px;
}
.main .right .related .message .read-more:hover {
  text-decoration: underline;
}
.main .right .articles {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
  margin-bottom: 5px;
}
.main .right .articles .head {
  font-size: 25px;
  color: #9a5b09;
  font-weight: bold;
  padding: 0px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.main .right .articles .article {
  padding: 10px;
  margin: 5px 0;
  background-color: #fefff6;
  border-radius: 3px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
}
.main .right .articles .article .content {
  display: flex;
  gap: 10px;
  padding: 0;
}
.main .right .articles .article .content .right {
  width: 70%;
  padding: 0;
}
.main .right .articles .article .content .right h2 {
  color: #545454;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}
.main .right .articles .article .content .right .writer {
  color: black;
  font-weight: 300;
  font-size: 0.8em;
  margin: 2px 0;
}
.main .right .articles .article .content .right p {
  color: #858585;
  margin: 2px;
  font-size: 14px;
}
.main .right .articles .article .content .left {
  width: 30%;
}
.main .right .articles .article .content .left img {
  width: 100%;
}
.main .right .articles .article hr {
  border-top: 1px solid #efefef;
  margin: 10px 0;
}
.main .right .articles .article .read-more {
  display: inline-block;
  color: #858585;
  text-decoration: none;
  font-size: 14px;
}
.main .right .articles .article .read-more:hover {
  text-decoration: underline;
}
.container {
  max-width: 100%;
  width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .nav-body {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-group {
    flex-direction: column;
    width: 100%;
  }
  .nav-group .nav-link {
    width: 100%;
    text-align: left;
  }
  .container {
    width: 100%;
    padding: 10px;
    margin: 0;
  }
  .main {
    flex-direction: column;
  }
  .main .left {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .main .left .activities {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .main .left .activities .head {
    font-size: larger;
    color: #203e7a;
    padding: 5px 15px;
  }
  .main .left .activities .activity {
    width: 100%;
    border-radius: 0;
  }
  .main .right {
    padding: 10px;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .main .right .head {
    font-size: larger;
    color: #203e7a;
    padding: 5px 15px;
  }
  .main .right .announcements {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .main .right .announcements .head {
    font-size: larger;
    color: #d6870d;
    padding: 5px 15px;
    padding-bottom: 0;
    margin-top: 15px;
    font-weight: bold;
  }
  .main .right .announcements .announcement {
    padding: 5px 15px;
    background-color: white;
    padding: 15px 20px;
  }
  .main .right .announcements .announcement h2 {
    font-size: 20px;
    font-weight: 400;
    color: #666666;
    margin: 0;
    margin-bottom: 10px;
  }
  .main .right .announcements .announcement .details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border: 2px solid #d6870d;
    border-radius: 3px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  }
  .main .right .announcements .announcement .details span {
    color: #d6870d;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 600;
  }
  footer {
    width: 100%;
    margin: 0;
    padding: 5px 0;
    background-color: wheat;
    background-color: #eef1f8;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  footer span {
    background-color: #757a80;
    color: white;
    padding: 10px 0px;
    text-align: center;
    width: 100%;
    margin: 0;
    margin-top: 20px;
    display: block;
  }
  footer span p {
    font-size: small;
    padding: 0;
    margin: 0;
  }
  footer .content {
    width: -moz-fit-content;
    /* Firefox ve Firefox for Android için */
    width: -webkit-fit-content;
    /* Webkit tabanlı tarayıcılar için (Safari, Chrome) */
    width: fit-content;
    /* Modern tarayıcılar için */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    box-sizing: border-box;
    gap: 15px;
    margin: 0 auto;
  }
  footer .content h2 {
    color: #757a80;
    font-size: large;
  }
  footer .content .footer-item {
    width: 342px;
    height: auto;
    background-color: white;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
    border-radius: 3px;
    padding: 5px 10px;
    margin-left: 10px !important;
  }
}
footer {
  width: 100%;
  margin: 0 auto;
  padding: 5px 0;
  background-color: wheat;
  background-color: #eef1f8;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}
footer .fc {
  width: 32% !important;
}
@media screen and (max-width: 1000px) {
  footer .fc {
    width: 100% !important;
  }
  footer .fc h2 {
    padding-left: 10px;
  }
}
footer div {
  margin: 0;
}
@media screen and (max-width: 1000px) {
  footer div {
    margin: 0 auto;
  }
}
footer span {
  background-color: #757a80;
  color: white;
  padding: 10px 0px;
  text-align: center;
  width: 100%;
  margin: 0;
  margin-top: 20px;
  display: block;
}
footer span p {
  font-size: small;
  padding: 0;
  margin: 0;
}
footer .content {
  width: -moz-fit-content;
  /* Firefox ve Firefox for Android için */
  width: -webkit-fit-content;
  /* Webkit tabanlı tarayıcılar için (Safari, Chrome) */
  width: 100%;
  max-width: 1200px;
  /* Modern tarayıcılar için */
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin: 0 auto;
}
footer .content h2 {
  color: #757a80;
  font-size: large;
  text-align: start;
}
footer .content .footer-item {
  width: calc(100% - 20px);
  height: auto;
  background-color: white;
  padding: 5px 10px;
  margin: 10px 0;
  justify-content: center;
  align-items: center;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  border-radius: 3px;
}
footer .content .footer-item p {
  display: block;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
  text-align: start;
  color: #595959;
}
footer .content .footer-item p:hover {
  text-decoration: underline;
  cursor: pointer;
}
a {
  text-decoration: none;
}
.banner {
  width: 100%;
  height: 164px;
  overflow: hidden;
  margin-bottom: 0px;
}
.banner img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.members {
  width: 1200px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  margin: 10px auto;
  gap: 10px;
}
.members h1 {
  font-size: 25px;
  margin: 6px 0;
  color: #747A81;
}
.members .search {
  width: 100%;
  background-color: #fff;
  padding: 14px 14px;
  margin-bottom: 0px;
  border-radius: 3px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
}
.members .search input {
  width: 100%;
  outline: none;
  padding: 10px;
  border: 1px solid #7777;
  border-radius: 5px;
  font-size: 20px;
}
.members .search input:focus {
  border-color: #777;
}
.members .member {
  display: flex;
  background-color: #fff;
  padding: 10px 10px;
  gap: 20px;
  color: #8f524d;
  border-radius: 3px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
}
.members .member img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
}
.members .member .details {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  gap: 0 !important;
}
.members .member .details .detail {
  margin-right: 10px;
}
.members .member .details .detail span {
  font-weight: bold;
  padding: 0;
}
.members .member .membership {
  font-weight: bold;
}
.members .member .name {
  font-size: 20px;
  font-weight: 600;
  color: #a21d12;
  margin-bottom: 5px;
  display: block;
}
.profile-card {
  width: 1078;
  max-width: 100%;
  height: auto;
  background: #fff;
  padding: 20px;
}
.profile-card .content {
  background-image: linear-gradient(rgba(127, 118, 117, 0.9), rgba(127, 118, 117, 0.9)), url(images/cardbg.png);
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  aspect-ratio: 52/12;
  justify-content: center;
  align-items: center;
  padding: 25px;
  width: 100%;
  color: white;
}
.profile-card .content img {
  border-radius: 50%;
  height: 230px !important;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.profile-card .content .name {
  font-size: 30px;
  font-weight: 600;
  margin: 10px auto;
  padding: 0;
}
.profile-card .content .details {
  display: flex;
  font-size: 16px;
  gap: 10px;
}
.profile-card .content .details ::after {
  content: " -";
  color: white;
  font-size: initial;
}
.profile-card .content .details span {
  font-weight: bold;
}
.contact-form {
  width: 100%;
  margin-top: 20px;
}
.contact-form .head {
  font-size: 25px;
  color: #a21d12;
  font-weight: bold;
  margin: 3px;
  width: 100%;
}
.contact-form .description {
  font-size: 16px;
  color: black;
  font-weight: lighter;
}
.contact-form form {
  background-color: white;
  padding: 25px;
  margin: 15px auto;
  margin-bottom: 50px;
}
.contact-form form button {
  width: 100%;
  padding: 10px;
  border-radius: 15px;
  background-color: #a21d12;
  outline: none;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
.contact-form form .success {
  background-color: #d4edda;
  display: block;
  color: #155724;
  padding: 10px;
  font-size: 16px;
  width: 100%;
  margin: 10px auto;
  border-radius: 15px;
  outline: none;
  border: 1px solid #c3e6cb;
  font-weight: lighter;
}
.contact-form form .error {
  background-color: #f8d7da;
  display: block;
  color: #721c24;
  padding: 10px;
  font-size: 16px;
  width: 100%;
  margin: 10px auto;
  border-radius: 15px;
  outline: none;
  border: 1px solid #f5c6cb;
  font-weight: lighter;
}
.input {
  padding: 10px;
  font-size: 16px;
  width: 100%;
  margin: 10px auto;
  border-radius: 15px;
  outline: none;
  border: 1px solid #777;
}
.gallery {
  width: 1200px;
  max-width: 100%;
  margin: auto;
  padding: 0 4px;
  margin-bottom: 15px;
}
.gallery .instahead {
  margin: 25px auto;
  padding-left: 0;
  color: #747a81;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px !important;
}
@media screen and (max-width: 1000px) {
  .gallery .instahead {
    margin: 10px auto;
    margin-top: 5px;
  }
}
.gallery .content {
  border-image: linear-gradient(to right, #FF9902, #FC0390) 30;
  border-width: 8px;
  border-style: solid;
  display: inline-flex;
  /* İçerikleri yatayda hizalar */
  flex-wrap: nowrap;
  /* Öğe sarılmasını engeller */
  padding: 0;
  margin: auto;
  overflow-x: hidden;
  /* Yatay kaydırma çubuğunu gizler */
  width: 100%;
  /* İçeriğin taşmaması için */
}
.gallery .content a {
  border: 1px solid red;
  overflow: hidden;
  display: inline-block;
  /* Öğeleri yan yana hizalar */
  flex: 0 0 auto;
  /* Öğelerin genişliğini korur */
  width: 125px;
  /* A etiketlerinin genişliği */
  height: 125px;
  /* A etiketlerinin yüksekliği */
  cursor: pointer;
  /* Pointer cursoru ekler */
  user-select: none;
  /* Kullanıcı seçimini engeller */
}
.gallery .content .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* İçeriğin tam genişliğini alır */
  height: 100%;
  /* İçeriğin tam yüksekliğini alır */
}
.gallery .content img {
  width: 125px;
  height: 125px;
  object-fit: cover;
  transform: scale(1.08);
  user-drag: none;
  /* Resimlerin sürüklenmesini engeller */
}
.period-head {
  width: 100%;
  padding: 20px !important;
  font-size: 25px;
  background-color: white;
  padding: 15px;
  border-radius: 3px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  margin: 0;
}
.period-head span {
  font-size: 25px;
  margin: 5px 0;
  color: #a21d12;
  font-weight: 900;
}
.period-head .content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.period-head .content h1 {
  color: #a21d12;
  font-size: 25px;
  font-weight: 400;
  width: fit-content;
}
.period-head .content button {
  margin-left: 10px;
  background-color: #e12b1a;
  color: #fff;
  border-radius: 5px;
  width: 131px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  height: 32px;
  text-align: center;
  outline: none;
  border: none;
}
.swiper-pagination-bullet {
  padding: 10px;
}
.swiper-pagination-bullet-active {
  background-color: white !important;
  padding: 10px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03) !important;
}
.managment-message {
  width: 100%;
  padding: 15px;
  border-radius: 3px;
  background-color: white;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  margin: 0;
  padding: 20px;
}
.managment-message h2 {
  font-size: 25px;
  margin: 5px 0;
  margin-bottom: 20px;
  color: #a21d12;
  font-weight: 900;
}
.managment-message .content {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  .managment-message .content {
    flex-direction: column;
  }
}
.managment-message .content img {
  object-fit: cover;
  width: 137px;
  height: 114px;
}
.managment-message button {
  background-color: #a21d12;
  color: #fff;
  border-radius: 5px;
  width: 131px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  margin-top: 5px;
  height: 32px;
  text-align: center;
  outline: none;
  border: none;
}
.directors {
  width: 100%;
  align-items: center;
  padding: 10px 20px !important;
  border-radius: 3px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  background-color: white;
  margin: 0;
}
.directors h2 {
  font-size: 25px;
  margin: 5px 0;
  margin-bottom: 20px;
  color: #a21d12;
  font-weight: 900;
}
.directors button {
  margin-top: 10px;
  margin-left: 10px;
  background-color: #a21d12;
  color: #fff;
  border-radius: 5px;
  width: 131px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  height: 32px;
  text-align: center;
  outline: none;
  border: none;
}
.audits {
  width: 100%;
  align-items: center;
  padding: 0 20px !important;
  padding-bottom: 20px !important;
  padding-top: 10px !important;
  border-radius: 3px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  background-color: white;
  margin: 0;
}
.audits .audit {
  width: 100%;
  align-items: center;
  padding: 0 15px;
  border-radius: 3px;
  background-color: white;
  margin: 20px auto;
}
.audits .audit h2 {
  font-size: 25px;
  margin: 5px 0;
  margin-bottom: 20px;
  color: #FF0000;
  font-weight: 900;
}
.audits .audit .items {
  justify-content: center;
  align-items: center;
  text-align: center;
}
.audits .audit .items a {
  text-decoration: none;
  color: #000;
}
.audits .audit .items .item {
  background-color: #fff8f2;
  width: 265px;
  height: 228px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  border-radius: 3px;
  overflow: hidden;
  margin: 20px;
  display: inline-block;
  position: relative;
}
.audits .audit .items .item .bg {
  width: 100%;
  height: 100px;
  object-fit: cover;
}
.audits .audit .items .item .profile {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  border: 5px solid #EFEFEF;
  object-fit: cover;
  left: 0;
  right: 0;
  top: 36px;
  width: 120px;
  height: 100px;
  text-align: center;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  border-radius: 50%;
}
.audits .audit .items .item .footer {
  top: 140px;
  position: absolute;
  text-align: center;
  justify-content: center;
  width: 100%;
  align-items: center;
  height: fit-content;
}
.audits .audit .items .item .footer h2 {
  font-size: 19px;
  color: #000;
  margin: 7px auto;
}
.audits .audit .items .item .footer p {
  font-size: 17px;
  color: #A21D12;
  margin: 4px auto;
}
.audits h2 {
  font-size: 25px;
  margin: 5px 0;
  margin-bottom: 20px;
  color: #FF0000;
  font-weight: 900;
}
.audits button {
  margin-top: 10px;
  margin-left: 10px;
  margin-bottom: 10px;
  background-color: #FF0000;
  color: #fff;
  border-radius: 5px;
  width: 131px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  height: 32px;
  text-align: center;
  outline: none;
  border: none;
}
.activity-detail .details {
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #d6870d;
  border-radius: 3px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  margin: 10px 0;
  gap: 15px;
}
.activity-detail .details span {
  color: #d6870d;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 600;
}
.activity img {
  width: 100%;
  object-fit: cover;
}
.image-stack {
  margin-left: 30px;
  gap: 25px;
}
.image-stack a {
  width: 86px;
  transition: all 0.3s ease;
  display: inline-block;
  margin-left: -25px;
  height: 86px;
}
.image-stack a:hover {
  transform: scale(1.08);
  transition: all 0.3s ease-in-out;
  z-index: 22222;
}
.image-stack a:hover + a {
  transform: translateX(30px);
  display: inline-block;
  z-index: -1 !important;
}
.image-stack a:first-child {
  margin-left: -25px;
}
.image-stack img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  /* Resmi konteynere sığdırmak için */
  border-radius: 50%;
  /* Yuvarlak resim yapmak için */
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  transition: all ease-in-out 300ms;
}
.managment {
  width: 100%;
  align-items: center;
  border-radius: 3px;
  background-color: white;
  margin: 0 auto;
  padding: 0;
}
.managment h2 {
  font-size: 25px;
  margin: 5px 0;
  margin-bottom: 20px;
  color: #a21d12;
  font-weight: 900;
}
.managment .items {
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 3px auto;
}
.managment .items a {
  text-decoration: none;
  color: #000;
}
.managment .items .item {
  background-color: #fff8f2;
  width: 225px;
  max-width: 100%;
  height: 228px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  border-radius: 3px;
  overflow: hidden;
  margin: 5px;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .managment .items .item {
    margin: 20px auto;
  }
}
.managment .items .item .bg {
  position: relative;
  width: 100%;
  height: 70px;
  object-fit: cover;
  opacity: 0.3;
}
.managment .items .item .profile {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  border: 5px solid #EFEFEF;
  object-fit: cover;
  left: 0;
  right: 0;
  top: 20px;
  width: 120px;
  height: auto;
  text-align: center;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
}
.managment .items .item .footer {
  top: 140px;
  position: absolute;
  text-align: center;
  justify-content: center;
  width: 100%;
  align-items: center;
  height: fit-content;
}
.managment .items .item .footer h2 {
  font-size: 16px;
  margin-top: 22px;
  margin-bottom: 4px;
  color: #000;
}
.managment .items .item .footer p {
  font-size: 17px;
  color: #A21D12;
  margin: 4px;
}
.activities-stack {
  width: 100%;
  align-items: center;
  padding: 20px !important;
  padding-top: 10px !important;
  border-radius: 3px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  background-color: white;
  margin: 0;
}
.activities-stack h2 {
  font-size: 25px;
  margin: 5px 0;
  margin-bottom: 20px;
  color: #12A238;
  font-weight: 900;
}
.activities-stack button {
  margin-top: 10px;
  background-color: #12A238;
  color: #fff;
  border-radius: 5px;
  width: 131px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  height: 32px;
  text-align: center;
  outline: none;
  border: none;
}
.archive.activities {
  width: 100%;
  justify-content: left !important;
  padding: 0;
  border-radius: 3px;
  background-color: white;
  margin: 0;
  box-sizing: border-box;
}
.archive.activities h2 {
  color: #12A238;
  font-size: 25px;
  margin-bottom: 5px !important;
}
.archive.activities .content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
}
.archive.activities .content .left {
  display: block;
  width: fit-content;
  max-width: 540px;
  min-width: 48%;
}
.archive.activities .content .left .activities-container {
  margin-top: 0 !important;
  border-top: 1px solid #D1E5CA;
}
.archive.activities .content .left .activities-container h3 {
  font-size: 16px;
  margin: 3px 0;
  margin-top: 8px;
  color: #12A238;
}
.archive.activities .content .left .activities-container .activity {
  margin-top: 15px;
  display: flex;
  gap: 20px;
}
.archive.activities .content .left .activities-container .activity img {
  object-fit: cover;
  width: 134px;
}
.archive.activities .content .left .activities-container .activity .content {
  display: block;
}
.archive.activities .content .left .activities-container .activity .content h4 {
  font-size: 16px;
  margin: 3px 0;
  margin-top: 0;
  color: #545454;
  font-weight: bolder;
}
.archive.activities .content .left .activities-container .activity .content a {
  text-decoration: none;
}
.archive.activities .content .left .activities-container .activity .content a:hover {
  text-decoration: underline gray;
}
.archive.activities .content .left .activities-container .activity .content p {
  margin-top: 8px;
  font-size: 16px;
  color: #858585;
}
.archive.activities .content .right {
  display: block;
  width: fit-content;
  max-width: 540px;
  min-width: 48%;
}
.archive.activities .content .right .projects-container {
  gap: 8px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #D1E5CA;
}
.archive.activities .content .right .projects-container h3 {
  font-size: 16px;
  color: #12A238;
  margin: 3px 0;
  margin-top: 8px;
  text-align: start;
}
.archive.activities .content .right .projects-container .project {
  background-color: #FEF8F8;
  gap: 10px;
  padding: 10px;
  display: flex;
}
.archive.activities .content .right .projects-container .project .other {
  padding: 0;
}
.archive.activities .content .right .projects-container .project img {
  width: 120px;
  object-fit: cover;
}
.archive.activities .content .right .projects-container .project h4 {
  font-size: 15px;
  font-weight: 600;
  color: #434242;
  margin: 0;
}
.archive.activities .content .right .projects-container .project h4::hover {
  text-decoration: underline;
}
.archive.activities .content .right .projects-container .project p {
  font-size: 14px;
  margin: 2px 0;
}
.archive.activities .content .right .projects-container .project a {
  text-decoration: none;
}
.archive.activities .content .right .projects-container .project a::hover {
  text-decoration: none;
}
.archive.activities .content .right .tavla-container {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #D1E5CA;
}
.archive.activities .content .right .tavla-container h3 {
  font-size: 16px;
  margin: 3px 0;
  margin-top: 8px;
  color: #12A238;
}
.archive.activities .content .right .tavla-container .tavla {
  background-color: #F8FEF9;
  padding: 0 10px;
}
.archive.activities .content .right .tavla-container .tavla .other {
  padding: 0;
}
.archive.activities .content .right .tavla-container .tavla h4 {
  font-size: 16px;
  font-weight: lighter;
  color: #858585;
  margin: 7px 0;
}
.archive.activities .content .right .managment-message-container {
  gap: 8px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #D1E5CA;
}
.archive.activities .content .right .managment-message-container h3 {
  font-size: 16px;
  color: #12A238;
  margin: 3px 0;
  margin-top: 8px;
  text-align: start;
}
.archive.activities .content .right .managment-message-container .tavla {
  background-color: #F8FEF9;
  gap: 10px;
  padding: 10px;
  display: flex;
}
.archive.activities .content .right .managment-message-container .tavla .other {
  padding: 0;
}
.archive.activities .content .right .managment-message-container .tavla img {
  width: 120px;
  object-fit: cover;
}
.archive.activities .content .right .managment-message-container .tavla h4 {
  font-size: 15px;
  font-weight: 600;
  color: #434242;
  margin: 0;
}
.archive.activities .content .right .managment-message-container .tavla h4::hover {
  text-decoration: underline;
}
.archive.activities .content .right .managment-message-container .tavla p {
  font-size: 14px;
  margin: 2px 0;
}
.archive.activities .content .right .managment-message-container .tavla a {
  text-decoration: none;
}
.archive.activities .content .right .managment-message-container .tavla a::hover {
  text-decoration: none;
}
.activity-detail {
  width: 1200px;
  max-width: 100%;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 0px;
}
.activity-detail .left {
  width: 800px;
  align-items: center;
  padding: 15px;
  border-radius: 3px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  background-color: white;
  max-width: 100%;
  height: fit-content;
}
.activity-detail .left h1 {
  font-size: 25px;
  margin: 5px 0;
  margin-bottom: 20px;
  color: #a21d12;
  font-weight: 900;
}
.activity-detail .left .primary-img {
  width: 100%;
  object-fit: cover;
  height: auto;
}
.activity-detail .left p {
  color: #666666;
  line-height: 130%;
}
.activity-detail .left strong {
  color: #858585;
  margin: 10px 0;
  display: block;
}
.activity-detail .left button {
  margin-top: 10px;
  margin-left: 10px;
  background-color: #a21d12;
  color: #fff;
  border-radius: 5px;
  width: 131px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  height: 32px;
  text-align: center;
  outline: none;
  border: none;
}
.activity-detail .right {
  width: 320px;
  padding: 0;
}
@media screen and (max-width: 1000px) {
  .activity-detail .right {
    width: 100%;
  }
}
.activity-detail .right h2 {
  background-color: #fff;
  border-radius: 3px;
  padding: 10px 20px;
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 10px;
  color: #A21D12;
}
.activity-item .activity-detail .right:first {
  margin-top: 20px;
}
.activity-detail .right .activity-item {
  margin-top: 10px;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
.activity-detail .right .activity-item img {
  width: 100%;
  height: 145px;
}
.activity-detail .right .activity-item a {
  text-decoration: none;
}
.activity-detail .right .activity-item a:hover {
  text-decoration: underline gray;
}
.activity-detail .right .activity-item h3 {
  padding: 0 15px;
  padding-bottom: 10px;
  margin-top: 15px;
  justify-content: baseline;
  font-size: 16px;
  color: #858585;
}
.about {
  width: 1200px;
  max-width: 100%;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.about .right {
  width: 800px;
  align-items: center;
  padding: 15px;
  border-radius: 3px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  background-color: white;
  max-width: 100%;
}
.about .right p {
  color: #666666;
  line-height: 130%;
}
.about .right strong {
  color: #606060;
  margin: 10px 0;
  display: block;
}
.about .right h1 {
  font-size: 25px;
  margin: 5px 0;
  margin-bottom: 20px;
  color: #a21d12;
  font-weight: 900;
}
.about .right .primary-img {
  width: 100%;
  object-fit: cover;
  height: auto;
}
.about .right .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about .right button {
  margin-top: 10px;
  margin-left: 10px;
  background-color: #a21d12;
  color: #fff;
  border-radius: 5px;
  width: 131px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  height: 32px;
  text-align: center;
  outline: none;
  border: none;
}
.about .left {
  width: 320px;
  padding: 0;
  margin-left: 20px;
}
.about .left label {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  padding: 10px 20px;
  font-size: 16px;
  margin-top: 0;
  color: #A21D12;
  width: 100%;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}
.about .left .item {
  padding: 10px 15px;
  margin: 5px auto;
  justify-content: baseline;
  font-size: 16px;
  font-weight: normal;
  color: #A21D12;
  text-decoration: none;
  display: block;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
.about .left .item img {
  width: 100%;
  height: 145px;
}
.about .left .item:hover {
  text-decoration: underline gray;
}
.news {
  width: 1200px;
  max-width: 100%;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.news .right {
  width: 800px;
  align-items: center;
  padding: 0;
  border-radius: 3px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  background-color: white;
  max-width: 100%;
}
.news .right p {
  color: #666666;
  line-height: 130%;
}
.news .right strong {
  color: #606060;
  margin: 10px 0;
  display: block;
}
.news .right h1 {
  font-size: 25px;
  margin: 5px 0;
  margin-bottom: 20px;
  color: #a21d12;
  font-weight: 900;
}
.news .right .primary-img {
  width: 100%;
  object-fit: cover;
  height: auto;
}
.news .right .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news .right button {
  margin-top: 10px;
  margin-left: 10px;
  background-color: #a21d12;
  color: #fff;
  border-radius: 5px;
  width: 131px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  height: 32px;
  text-align: center;
  outline: none;
  border: none;
}
.news .left {
  width: 320px;
  padding: 0;
  margin-left: 20px;
}
.news .left h1 {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  padding: 10px 20px;
  font-size: 16px;
  margin-top: 0;
  color: #A21D12;
}
.news .left .item {
  text-decoration: none;
  margin-top: 20px auto;
  display: block;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  margin-bottom: 5px;
}
.news .left .item img {
  width: 100%;
  height: 145px;
}
.news .left .item:hover {
  text-decoration: underline gray;
}
.news .left .item h3 {
  padding: 0 15px;
  margin: 10px auto;
  justify-content: baseline;
  font-size: 16px;
  font-weight: normal;
  color: #A21D12;
}
.archive {
  width: 1200px;
  max-width: 100%;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.archive .right {
  width: 800px;
  align-items: center;
  padding: 0;
  border-radius: 3px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.archive .left {
  width: 320px;
  padding: 0;
}
.archive .left h2 {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  padding: 10px 20px;
  font-size: 16px;
  margin-top: 0;
  color: #A21D12;
}
.archive .left .item {
  text-decoration: none;
  margin-top: 20px auto;
  display: block;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  margin-bottom: 5px;
}
.archive .left .item img {
  width: 100%;
  height: 145px;
}
.archive .left .item:hover {
  text-decoration: underline gray;
}
.archive .left .item h3 {
  padding: 0 15px;
  margin: 10px auto;
  justify-content: baseline;
  font-size: 16px;
  font-weight: normal;
  color: #A21D12;
}
.activity-info h2 {
  font-size: 20px !important;
}
.news-page {
  padding: 0;
}
.news-page h1 {
  font-size: 25px;
  color: #203E7A;
}
.news-page .content {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.news-page .content .activity {
  width: 100%;
  border-radius: 3px;
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 15px;
}
.news-page .content .activity img {
  width: 200px;
  height: 115px;
  object-fit: cover;
  object-position: center;
}
.news-page .content .activity .activity-info {
  width: 920px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.news-page .content .activity .activity-info h2 {
  font-size: 25px;
  color: #A21D12;
  margin: 0;
}
.news-page .content .activity .activity-info p {
  font-size: 16px;
  color: #666666;
  margin: 3px 0;
}
.news-page .content .activity .activity-info span {
  background-color: #FF0000;
  color: #ffff;
  width: fit-content;
  padding: 5px 10px;
}
.news-page .content .activity .activity-info a {
  text-decoration: none;
  color: #A21D12;
  font-size: 16px;
}
.news-page .content .activity .activity-info a:hover {
  text-decoration: underline gray;
}
.activities-page h1 {
  font-size: 25px;
  color: #203E7A;
  padding-left: 20px;
}
.activities-page .content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.activities-page .content .activity {
  width: 100%;
  padding: 12px 18px;
  background-color: white;
  border-radius: 3px;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
}
@media screen and (max-width: 1000px) {
  .activities-page .content .activity {
    flex-direction: column;
    justify-content: start;
    width: 100%;
    margin: 5px 0;
  }
  .activities-page .content .activity h2 {
    width: 100%;
    padding: 0;
    margin: 5px 0;
  }
}
.activities-page .content .activity img {
  width: 200px;
  height: 115px;
  object-fit: cover;
  object-position: center;
}
.activities-page .content .activity .activity-info {
  padding: 0 20px;
  width: 920px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 1000px) {
  .activities-page .content .activity .activity-info {
    padding: 0;
  }
}
.activities-page .content .activity .activity-info h2 {
  font-size: 25px;
  color: #A21D12;
  margin: 0;
}
.activities-page .content .activity .activity-info p {
  font-size: 16px;
  color: #666666;
  margin: 3px 0;
}
.activities-page .content .activity .activity-info a {
  text-decoration: none;
  color: #A21D12;
  font-size: 16px;
}
.press-page h1 {
  font-size: 25px;
  color: #203E7A;
}
.press-page .content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.press-page .content .activity {
  width: 100%;
  padding: 12px 18px;
  background-color: white;
  border-radius: 3px;
  display: flex;
  flex-wrap: nowrap;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
}
@media screen and (max-width: 1000px) {
  .press-page .content .activity {
    flex-direction: column;
    justify-content: start;
    width: 100%;
    margin: 5px 0;
  }
  .press-page .content .activity h2 {
    width: 100%;
    padding: 0;
    margin: 5px 0;
  }
}
.press-page .content .activity img {
  width: 200px;
  object-fit: cover;
  object-position: center;
}
.press-page .content .activity .activity-info {
  padding: 0 20px;
  width: 920px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 1000px) {
  .press-page .content .activity .activity-info {
    padding: 0;
  }
}
.press-page .content .activity .activity-info h2 {
  font-size: 25px;
  color: #A21D12;
  margin: 0;
}
.press-page .content .activity .activity-info span {
  background-color: #63201A;
  color: #ffff;
  width: fit-content;
  padding: 5px 10px;
}
.press-page .content .activity .activity-info p {
  font-size: 16px;
  color: #666666;
  margin: 3px 0;
}
.press-page .content .activity .activity-info a {
  text-decoration: none;
  color: #A21D12;
  font-size: 16px;
}
.announcements-page h1 {
  font-size: 25px;
  color: #203E7A;
}
.announcements-page .content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.announcements-page .content .announcement {
  width: 100%;
  padding: 12px 18px;
  background-color: white;
  border-radius: 3px;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
}
.announcements-page .content .announcement img {
  width: 200px;
  height: 115px;
  object-fit: cover;
  object-position: center;
}
.announcements-page .content .announcement-info {
  padding: 10px 0;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
}
.announcements-page .content .announcement-info span {
  background-color: #FFF700;
  color: #000;
  font-size: 16px;
  padding: 4px 6px;
  font-weight: 300;
}
.announcements-page .content h2 {
  font-size: 25px;
  color: #A21D12;
  margin: 0;
}
.announcements-page .content p {
  font-size: 16px;
  color: #666666;
  width: 100%;
  box-sizing: border-box;
  margin: 3px 0;
}
.announcements-page .content a {
  text-decoration: none;
  margin-top: 10px;
  color: #A21D12;
  font-size: 16px;
}
.navi-wrapper {
  display: flex;
  flex-direction: row;
  padding: 20px;
  gap: 5px;
}
.navi-wrapper .navi {
  padding: 0;
  margin: 0;
  color: white;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 35px;
  padding: 5px auto;
  aspect-ratio: 1/1;
  border-radius: 5px;
  text-decoration: none;
  background-color: #63201a;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
}
.navi-wrapper .navi-active {
  padding: 0;
  background-color: #a21d12;
  margin: 0;
  color: white;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 35px;
  padding: 5px auto;
  aspect-ratio: 1/1;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
}
.related-page {
  width: 1200px;
  max-width: 100%;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.related-page .head {
  font-size: 25px;
  font-weight: 700;
  color: #8A9442;
  width: 100%;
}
.related-page .contact-card {
  background-color: white;
  border-radius: 3px;
  display: flex;
  flex-wrap: nowrap;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
  padding: 20px;
  gap: 25px;
  width: 100%;
}
.related-page .contact-card img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 1000px) {
  .related-page .contact-card img {
    display: none;
  }
}
.related-page .contact-card form {
  width: 100% !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.related-page .contact-card form .head {
  margin: 0;
  font-size: 16px;
  color: #8A9442;
  margin-bottom: 10px;
}
.related-page .contact-card form input,
.related-page .contact-card form textarea {
  border: 1px solid #FFBC20;
  padding: 10px;
  width: 100%;
  border-radius: 15px;
  resize: vertical;
  max-width: 100%;
  outline: none;
}
.related-page .contact-card form input::placeholder,
.related-page .contact-card form textarea::placeholder {
  color: #FFBC20;
  font-size: 15px;
}
.related-page .contact-card form label {
  font-size: 15px;
  border: 1px solid #FFBC20;
  padding: 10px;
  width: 100%;
  border-radius: 15px;
  outline: none;
  color: #FFBC20;
}
.related-page .contact-card form label::placeholder {
  color: #FFBC20;
}
.related-page .contact-card form input[type="file"] {
  display: none;
}
.related-page .contact-card form button {
  padding: 10px;
  width: 100%;
  color: #fff;
  background-color: #FFBC20;
  outline: none;
  border: none;
  font-weight: 600;
  border-radius: 15px;
  cursor: pointer;
  margin: 10px 0;
  font-size: 15px;
}
.related-page .contact-card form .message {
  background-color: #D1E7DD;
  padding: 10px;
  width: 100%;
  border-radius: 15px;
  color: #0F5133;
}
.related-page .contact-card form .message span {
  font-weight: 600;
}
.periods {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  flex: auto / auto auto auto auto auto;
}
.periods .period {
  font-size: 16px;
  text-decoration: none;
  color: #A21D12;
  display: block;
}
.periods .period:hover {
  text-decoration: underline;
}
.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
.contact .head {
  color: #A21D12;
  font-size: 25px;
}
.contact h2 {
  color: #A21D12;
  font-size: 25px;
}
.contact .left {
  width: 560px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.contact .left hr {
  border: none;
  border-bottom: 1px solid #c7c7c7;
  width: 100%;
  margin-top: 20px;
}
.contact .left .contact-info {
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
}
.contact .left .contact-info span {
  width: 40px !important;
  height: 40px !important;
  background-color: #A21D12;
  color: #fff;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.contact .left .contact-info span i {
  display: block;
}
.contact .left .contact-info a {
  max-width: 80%;
  text-decoration: none;
  color: #292929;
}
.contact .left .other .contact-info {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact .left .other .contact-info span {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #A21D12;
  color: #fff;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.contact .left .other .contact-info span i {
  display: block;
}
.contact .right {
  width: 605px;
  max-width: 100%;
}
.contact .right form {
  max-width: 100%;
  width: 605px;
  padding: 25px;
  margin-top: 16.75px;
  border-radius: 20px;
  background-color: #fff;
  display: flex;
  gap: 15px;
  flex-direction: column;
}
.contact .right form .head {
  font-size: 25px;
  color: #A21D12;
  margin: 0;
  margin-bottom: 10px;
}
.contact .right form input,
.contact .right form textarea {
  border: 1px solid #A21D12;
  padding: 10px;
  width: 100%;
  border-radius: 10px;
  outline: none;
  resize: vertical;
}
.contact .right form input::placeholder,
.contact .right form textarea::placeholder {
  color: #A21D12;
}
.contact .right form button {
  background-color: #FFBC20;
  padding: 10px;
  margin: 20px 0;
  text-align: center;
  font-weight: 600;
  content: 'Gönder';
  outline: none;
  border: none;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
}
.slider {
  position: relative;
  width: 100%;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  -webkit-backdrop-filter: opacity(20%);
  /* Use for Safari 9+, Edge 17+ (not a mistake) and iOS Safari 9.2+ */
  backdrop-filter: opacity(20%);
  flex-wrap: wrap;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  margin-bottom: 25px;
}
.slider button {
  background-color: #a21d12;
  color: #fff;
  border-radius: 5px;
  width: 131px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  height: 32px;
  text-align: center;
  outline: none;
  border: none;
}
.slider .white-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.9;
}
@media screen and (max-width: 1000px) {
  .slider {
    height: fit-content;
  }
  .slider .swiper-slide .content {
    margin: auto;
    padding: 20px;
    height: fit-content !important;
    flex-direction: row-reverse;
    height: fit-content;
    justify-content: center;
  }
}
.slider .swiper {
  width: 1400px;
  overflow: hidden;
}
.slider .swiper-slide {
  padding-top: 20px;
  padding-bottom: 20px;
  max-width: 100%;
}
.slider .swiper-slide .content {
  margin: auto auto;
  height: 450px;
  width: 1200px;
  max-width: 100%;
  display: flex;
  overflow: visible;
  gap: 30px;
  flex-wrap: wrap;
}
.slider .swiper-slide .content .left {
  width: 530px;
  max-width: 100%;
}
.slider .swiper-slide .content .left span {
  color: #63201A;
  font-size: 35px;
  font-weight: 900;
  margin-bottom: 35px;
}
.slider .swiper-slide .content .left p {
  color: #63201A;
  font-size: 20px;
  margin-bottom: 20px;
}
.slider .swiper-slide .content .left a {
  margin-top: 20px;
  padding: 10px 16px;
  background-color: #63201A;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
}
.slider .swiper-slide .content .right {
  width: 620px;
  max-width: 100%;
  justify-content: center;
  display: flex;
}
.slider .swiper-slide .content .right img {
  max-width: 100%;
  max-height: 380px;
  border: 10px solid white;
  object-fit: cover;
  margin: 0 auto;
  transform: rotate(-2deg);
}
@media screen and (min-width: 1000px) {
  .container .activity-detail {
    padding-top: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
  .activity-detail .left {
    padding: 5px !important;
  }
  .about {
    margin: 0px !important;
    width: 100% !important;
  }
  .about .left {
    width: 100% !important;
    margin-left: 0px !important;
  }
  .press-page .content .activity img {
    width: 100% !important;
    height: auto !important;
  }
  .news .left {
    margin: 0;
    width: 100%;
  }
  .news .left img {
    width: 100% !important;
    height: auto !important;
  }
  .activity img {
    max-width: 100% !important;
    height: auto !important;
  }
  .left img {
    max-width: 95% !important;
    object-fit: cover !important;
  }
  .head,
  .instahead {
    font-size: 20px !important;
    margin-bottom: 10px !important;
  }
  .activity-info h2 {
    font-size: 20px !important;
    margin: 10px 0;
  }
  .slider .swiper-slide .left span {
    font-size: 26px !important;
  }
  .slider .swiper-slide .left p {
    font-size: 15px !important;
  }
  p {
    font-size: 14px !important;
  }
  h2 {
    font-size: 17px !important;
  }
  .main .right .announcement .details {
    flex-direction: column;
    width: fit-content;
  }
  .main .right .announcement .details .time,
  .main .right .announcement .details .location,
  .main .right .announcement .details .date {
    font-size: 0.6rem !important;
  }
  .contact .left {
    padding: 20px;
  }
  .details {
    flex-direction: column;
    width: fit-content;
    gap: 5px !important;
  }
}
p {
  color: #666666;
}
p img {
  width: 100% !important;
  height: auto !important;
  object-fit: cover;
}
.left p,
.left iframe {
  margin-top: 7px;
  max-width: 100% !important;
  margin-bottom: 0;
}
.left p a,
.left iframe a {
  overflow-wrap: break-word;
}
strong {
  color: #505050;
}
.inner-head {
  color: #a21d12;
}
.grayscale {
  background-color: transparent;
}
.grayscale .member {
  filter: grayscale(100%);
  margin: 10px 0;
  -webkit-filter: grayscale(1);
}
.kaybettiklerimiz {
  display: flex;
  gap: 20px;
}
.kaybettiklerimiz h2 {
  margin-bottom: 5px;
}
@media screen and (max-width: 1000px) {
  .kaybettiklerimiz h2 {
    font-size: 24px !important;
  }
}
.kaybettiklerimiz img {
  width: 25px;
  height: 25px;
  margin: 20px 0;
  margin-top: 25px;
  margin-bottom: 5px;
}
.header .nav-group .nav-link h1 {
  padding: 0;
  font-size: 17px;
  margin: 0;
  font-weight: 200;
}
