.st-honors-section {
    background:
        radial-gradient(circle at top left, rgba(193, 32, 38, 0.08) 0%, transparent 26%),
        linear-gradient(180deg, #0d1e35 0%, #112845 100%);
    position: relative;
    overflow: hidden;
}

.st-honors-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 72%);
    pointer-events: none;
}

.st-honors-shell {
    position: relative;
    z-index: 2;
}

.st-honors-head {
    color: #fff;
}

.st-honors-subtitle {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #d9b46b;
}

.st-honors-title {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.st-honors-text {
    max-width: 720px;
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255,255,255,0.78);
}

.st-honors-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.st-honors-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.st-honors-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.st-honors-nav {
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    backdrop-filter: blur(10px);
}

.st-honors-nav:hover {
    background: #d9b46b;
    border-color: #d9b46b;
    color: #0d1e35;
    transform: translateY(-3px);
}

.st-honors-card {
    margin: 8px;
}

.st-honors-card-inner {
    position: relative;
    display: block;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
    transition: all .4s ease;
    background: #132a45;
}

.st-honors-card-inner::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.12);
    z-index: 2;
    pointer-events: none;
}

.st-honors-card-inner:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.st-honors-image,
.st-honors-image img {
    width: 100%;
    height: 100%;
}

.st-honors-image img {
    object-fit: cover;
    display: block;
    transition: transform .7s ease;
}

.st-honors-card-inner:hover .st-honors-image img {
    transform: scale(1.08);
}

.st-honors-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9, 20, 36, 0.10) 0%, rgba(9, 20, 36, 0.42) 40%, rgba(9, 20, 36, 0.92) 100%);
}

.st-honors-medal {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 3;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f1d8a2 0%, #d9b46b 100%);
    color: #0d1e35;
    font-size: 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.st-honors-number {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    font-size: 82px;
    line-height: .9;
    font-weight: 900;
    color: rgba(255,255,255,0.14);
    pointer-events: none;
}

.st-honors-content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 3;
    padding: 22px 22px 20px;
    border-radius: 22px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(14px);
    transition: all .35s ease;
}

.st-honors-card-inner:hover .st-honors-content {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.st-honors-label {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(217, 180, 107, 0.16);
    color: #f1d8a2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
}

.st-honors-content h3 {
    margin: 0 0 16px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
    color: #fff;
}

.st-honors-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    transition: all .3s ease;
}

.st-honors-card-inner:hover .st-honors-link {
    color: #f1d8a2;
}

@media (max-width: 1199.98px) {
    .st-honors-title {
        font-size: 36px;
    }

    .st-honors-card-inner {
        height: 460px;
    }

    .st-honors-number {
        font-size: 66px;
    }
}

@media (max-width: 991.98px) {
    .st-honors-title {
        font-size: 30px;
    }

    .st-honors-actions {
        justify-content: flex-start;
    }

    .st-honors-card-inner {
        height: 430px;
        border-radius: 24px;
    }

    .st-honors-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
        padding: 18px;
        border-radius: 18px;
    }

    .st-honors-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .st-honors-title {
        font-size: 24px;
    }

    .st-honors-text {
        font-size: 14px;
        line-height: 1.75;
    }

    .st-honors-nav {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 16px;
    }

    .st-honors-card-inner {
        height: 380px;
        border-radius: 20px;
    }

    .st-honors-card-inner::before {
        inset: 10px;
        border-radius: 16px;
    }

    .st-honors-medal {
        top: 16px;
        left: 16px;
        width: 46px;
        height: 46px;
        font-size: 17px;
    }

    .st-honors-number {
        top: 16px;
        right: 14px;
        font-size: 52px;
    }

    .st-honors-content {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 16px;
        border-radius: 16px;
    }

    .st-honors-content h3 {
        font-size: 20px;
    }
}













.counter-area1::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    background-color: #ffffff;
    bottom: 0;
    right: 0;
    left: 0;
}















.faq-edu-section {
  position: relative;
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(45, 107, 255, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(0, 184, 148, 0.08), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #eef5fb 100%);
  overflow: hidden;
}

.faq-edu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 60, 114, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 60, 114, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.faq-edu-wrapper {
  position: relative;
  z-index: 2;
}

.faq-edu-side {
  position: relative;
  height: 100%;
  min-height: 560px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f3f8f 0%, #1a57b8 50%, #2f7de1 100%);
  box-shadow: 0 30px 70px rgba(15, 63, 143, 0.22);
}

.faq-edu-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 16, 40, 0.10), rgba(5, 16, 40, 0.55)),
    url('<?php echo BASE_URL . $sss_Bilgi->img_path; ?>') center center / cover no-repeat;
}

.faq-edu-side::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -60px;
  bottom: -60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.faq-edu-side-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  color: #fff;
}

.faq-edu-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.faq-edu-side-title {
  font-size: 34px;
  line-height: 1.22;
  font-weight: 800;
  margin: 18px 0 14px;
  color: #fff;
}

.faq-edu-side-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  max-width: 460px;
  margin: 0;
}

.faq-edu-mini-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.faq-edu-mini-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.faq-edu-mini-card strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.faq-edu-mini-card span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.faq-edu-content {
  padding-left: 22px;
}

.faq-edu-head {
  margin-bottom: 28px;
}

.faq-edu-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #1f5fbf;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 16px;
}

.faq-edu-title {
  font-size: 40px;
  line-height: 1.18;
  font-weight: 800;
  color: #11284a;
  margin: 0 0 14px;
}

.faq-edu-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #5d6d84;
  max-width: 760px;
  margin: 0;
}

.faq-edu-list .accordion-item {
  border: 0;
  background: transparent;
  margin-bottom: 16px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(16, 55, 115, 0.08);
}

.faq-edu-list .accordion-header {
  margin: 0;
}

.faq-edu-list .accordion-button {
  position: relative;
  padding: 24px 78px 24px 88px;
  background: #fff;
  color: #11284a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  box-shadow: none;
  border: 1px solid #e6eef8;
  border-radius: 22px !important;
}

.faq-edu-list .accordion-button:not(.collapsed) {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  color: #0f3f8f;
  border-color: #d5e6ff;
  box-shadow: none;
}

.faq-edu-list .accordion-button:focus {
  box-shadow: none;
  border-color: #d5e6ff;
}

.faq-edu-list .accordion-button::after {
  position: absolute;
  right: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #edf4ff;
  background-position: center;
  background-size: 16px;
  transition: all 0.3s ease;
}

.faq-edu-list .accordion-button:not(.collapsed)::after {
  background-color: #1f5fbf;
  filter: brightness(0) invert(1);
  transform: rotate(-180deg);
}

.faq-question-no {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1f5fbf 0%, #4e8df4 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(31, 95, 191, 0.22);
}

.faq-edu-list .accordion-collapse {
  border-top: 0;
}

.faq-edu-list .accordion-body-wrap {
  background: #fff;
  border: 1px solid #e6eef8;
  border-top: 0;
  border-radius: 0 0 22px 22px;
  padding: 0 24px 24px 24px;
}

.faq-edu-list .accordion-body {
  position: relative;
  padding: 22px 22px 0 64px;
  font-size: 15px;
  line-height: 1.9;
  color: #596b84;
  border-top: 1px dashed #dbe8f8;
}

.faq-edu-list .accordion-body::before {
  content: "\f19d";
  font-family: "FontAwesome";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #eef5ff;
  color: #1f5fbf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.faq-edu-note {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e7eef8;
  color: #607086;
  font-size: 14px;
  line-height: 1.7;
  box-shadow: 0 10px 30px rgba(16, 55, 115, 0.06);
}

.faq-edu-note i {
  color: #1f5fbf;
  margin-right: 8px;
}

@media (max-width: 991.98px) {
  .faq-edu-section {
    padding: 70px 0;
  }

  .faq-edu-side {
    min-height: 420px;
    margin-bottom: 28px;
  }

  .faq-edu-content {
    padding-left: 0;
  }

  .faq-edu-title {
    font-size: 32px;
  }
}

@media (max-width: 767.98px) {
  .faq-edu-side-inner {
    padding: 24px;
  }

  .faq-edu-side-title {
    font-size: 28px;
  }

  .faq-edu-mini-cards {
    grid-template-columns: 1fr 1fr;
  }

  .faq-edu-list .accordion-button {
    padding: 20px 68px 20px 76px;
    font-size: 16px;
  }

  .faq-question-no {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 13px;
    left: 18px;
  }

  .faq-edu-list .accordion-body-wrap {
    padding: 0 18px 20px 18px;
  }

  .faq-edu-list .accordion-body {
    padding: 20px 14px 0 52px;
    font-size: 14px;
  }

  .faq-edu-title {
    font-size: 28px;
  }
}

@media (max-width: 575.98px) {
  .faq-edu-section {
    padding: 55px 0;
  }

  .faq-edu-mini-cards {
    grid-template-columns: 1fr;
  }

  .faq-edu-list .accordion-button {
    padding: 18px 62px 18px 68px;
    font-size: 15px;
    line-height: 1.45;
  }

  .faq-edu-list .accordion-button::after {
    width: 36px;
    height: 36px;
    right: 16px;
    background-size: 14px;
  }

  .faq-question-no {
    width: 38px;
    height: 38px;
    left: 16px;
    font-size: 12px;
    border-radius: 12px;
  }

  .faq-edu-desc {
    font-size: 15px;
  }
}
















.edu-newsroom-section {
  position: relative;
  padding: 100px 0;
  background:
    linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
  overflow: hidden;
}

.edu-newsroom-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.edu-newsroom-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(50, 116, 218, 0.10) 0%, rgba(50, 116, 218, 0) 70%);
  pointer-events: none;
}

.edu-newsroom-head {
  position: relative;
  z-index: 2;
  margin-bottom: 34px;
}

.edu-newsroom-head .sec-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #e6f0ff;
  color: #245cb0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.edu-newsroom-head .sec-title {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  color: #10284a;
  margin: 0 0 12px;
}

.edu-newsroom-desc {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.8;
  color: #62738b;
  margin: 0;
}

/* Öne çıkan haber */
.edu-news-hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-radius: 34px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e7eef8;
  box-shadow: 0 28px 70px rgba(16, 40, 74, 0.10);
  margin-bottom: 34px;
}

.edu-news-hero-content {
  position: relative;
  padding: 42px 38px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.edu-news-hero-content::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(36, 92, 176, 0) 0%, rgba(36, 92, 176, 0.16) 30%, rgba(36, 92, 176, 0) 100%);
}

.edu-news-hero-inner {
  position: relative;
  padding-left: 28px;
}

.edu-news-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  background: #eef5ff;
  color: #245cb0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 16px;
}

.edu-news-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #62738b;
  margin-bottom: 16px;
}

.edu-news-hero-meta i {
  margin-right: 6px;
  color: #245cb0;
}

.edu-news-hero-title {
  font-size: 34px;
  line-height: 1.18;
  font-weight: 800;
  color: #10284a;
  margin: 0 0 14px;
}

.edu-news-hero-title a {
  color: #10284a;
  text-decoration: none;
}

.edu-news-hero-title a:hover {
  color: #245cb0;
}

.edu-news-hero-text {
  font-size: 15px;
  line-height: 1.9;
  color: #64758d;
  margin: 0 0 24px;
  max-width: 90%;
}

.edu-news-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.edu-news-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 16px;
  background: #1f5fbf;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 14px 30px rgba(31, 95, 191, 0.20);
}

.edu-news-hero-btn:hover {
  background: #174b96;
  color: #fff;
  transform: translateY(-2px);
}

.edu-news-hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 16px;
  background: #eef5ff;
  color: #245cb0;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.edu-news-hero-link:hover {
  background: #dfeeff;
  color: #1c4c93;
}

.edu-news-hero-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #dfe8f4;
}

.edu-news-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.edu-news-hero:hover .edu-news-hero-media img {
  transform: scale(1.05);
}

.edu-news-hero-badges {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.edu-news-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 700;
  color: #13325e;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}

/* Alt bölüm */
.edu-news-lab {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
}

.edu-news-panel {
  position: sticky;
  top: 30px;
  padding: 28px 24px;
  border-radius: 28px;
  background: linear-gradient(145deg, #10346a 0%, #1a57b8 100%);
  color: #fff;
  box-shadow: 0 24px 60px rgba(16, 52, 106, 0.18);
  overflow: hidden;
}

.edu-news-panel::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.edu-news-panel>* {
  position: relative;
  z-index: 2;
}

.edu-news-panel-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 16px;
}

.edu-news-panel-title {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}

.edu-news-panel-text {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.84);
  margin: 0 0 20px;
}

.edu-news-panel-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.edu-news-panel-stat {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.edu-news-panel-stat strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 6px;
  color: #fff;
}

.edu-news-panel-stat span {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.edu-news-panel-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 15px;
  background: #fff;
  color: #12325d;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.edu-news-panel-link:hover {
  background: #edf4ff;
  color: #12325d;
  transform: translateY(-2px);
}

/* Akış */
.edu-news-track {
  position: relative;
  padding-left: 26px;
}

.edu-news-track::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, #d6e4f7 0%, #b9d1f5 100%);
}

.edu-news-item {
  position: relative;
  padding-left: 34px;
  margin-bottom: 22px;
}

.edu-news-item:last-child {
  margin-bottom: 0;
}

.edu-news-item-dot {
  position: absolute;
  left: -1px;
  top: 26px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f5fbf 0%, #4d8af2 100%);
  border: 5px solid #eef5fb;
  box-shadow: 0 10px 22px rgba(31, 95, 191, 0.18);
}

.edu-news-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e5edf8;
  box-shadow: 0 16px 40px rgba(16, 40, 74, 0.07);
  transition: all 0.35s ease;
}

.edu-news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(16, 40, 74, 0.11);
  border-color: #d7e5f6;
}

.edu-news-thumb {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #edf3fb;
  min-height: 130px;
}

.edu-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.edu-news-card:hover .edu-news-thumb img {
  transform: scale(1.05);
}

.edu-news-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.edu-news-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.edu-news-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: #edf5ff;
  color: #245cb0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.edu-news-date {
  font-size: 13px;
  font-weight: 600;
  color: #6a7c94;
}

.edu-news-title {
  font-size: 23px;
  line-height: 1.32;
  font-weight: 800;
  margin: 0 0 10px;
}

.edu-news-title a {
  color: #10284a;
  text-decoration: none;
}

.edu-news-title a:hover {
  color: #245cb0;
}

.edu-news-text {
  font-size: 14px;
  line-height: 1.8;
  color: #677993;
  margin: 0 0 12px;
}

.edu-news-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #245cb0;
  text-decoration: none;
}

.edu-news-more:hover {
  color: #153d79;
}

@media (max-width: 1199.98px) {
  .edu-news-lab {
    grid-template-columns: 280px 1fr;
  }
}

@media (max-width: 991.98px) {
  .edu-newsroom-section {
    padding: 70px 0;
  }

  .edu-newsroom-head .sec-title {
    font-size: 34px;
  }

  .edu-news-hero {
    grid-template-columns: 1fr;
  }

  .edu-news-hero-media {
    min-height: 320px;
    order: -1;
  }

  .edu-news-lab {
    grid-template-columns: 1fr;
  }

  .edu-news-panel {
    position: relative;
    top: 0;
  }
}

@media (max-width: 767.98px) {
  .edu-news-hero-content {
    padding: 28px 22px;
  }

  .edu-news-hero-content::before {
    left: 22px;
  }

  .edu-news-hero-inner {
    padding-left: 22px;
  }

  .edu-news-hero-title {
    font-size: 28px;
  }

  .edu-news-hero-text {
    max-width: 100%;
  }

  .edu-news-card {
    grid-template-columns: 1fr;
  }

  .edu-news-thumb {
    min-height: 210px;
  }

  .edu-news-title {
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {
  .edu-newsroom-section {
    padding: 55px 0;
  }

  .edu-newsroom-head .sec-title {
    font-size: 28px;
  }

  .edu-news-hero,
  .edu-news-panel {
    border-radius: 24px;
  }

  .edu-news-hero-actions {
    flex-direction: column;
  }

  .edu-news-hero-btn,
  .edu-news-hero-link,
  .edu-news-panel-link {
    width: 100%;
  }

  .edu-news-track {
    padding-left: 18px;
  }

  .edu-news-item {
    padding-left: 26px;
  }

  .edu-news-item-dot {
    width: 24px;
    height: 24px;
    left: 1px;
  }
}




  
  







.st-edu-story-section {
    background:
        radial-gradient(circle at top left, rgba(193, 32, 38, 0.06) 0%, transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.st-edu-story-head {
    margin-bottom: 34px;
}

.st-edu-story-subtitle {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #c12026;
}

.st-edu-story-title {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 800;
    color: #0f2747;
    margin: 0;
    max-width: 100%;
}

.st-edu-story-text {
    margin: 0;
    color: #032145;
    font-size: 15px;
    line-height: 1.85;
    max-width: 100%;
    margin-left: auto;
    margin-top: 20px;
}

.st-edu-story-card {
    position: relative;
    height: 520px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(12, 30, 56, 0.12);
    transform: translateY(0);
    transition: transform .45s ease, box-shadow .45s ease;
}

.st-edu-story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(12, 30, 56, 0.18);
}

.st-edu-story-image,
.st-edu-story-image img {
    width: 100%;
    height: 100%;
}

.st-edu-story-image img {
    object-fit: cover;
    display: block;
    transition: transform .7s ease;
}

.st-edu-story-card:hover .st-edu-story-image img {
    transform: scale(1.08);
}

.st-edu-story-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8,20,38,0.12) 0%, rgba(8,20,38,0.38) 42%, rgba(8,20,38,0.88) 100%);
}

.st-edu-story-number {
    position: absolute;
    top: 26px;
    right: 22px;
    z-index: 2;
    font-size: 96px;
    line-height: .9;
    font-weight: 900;
    color: rgba(255,255,255,.16);
    pointer-events: none;
}

.st-edu-story-content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    color: #fff;
}

.st-edu-story-badge {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
}

.st-edu-story-content h3 {
    font-size: 34px;
    line-height: 1.08;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.st-edu-story-content p {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255,255,255,.88);
    margin-bottom: 18px;
}

.st-edu-story-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 16px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: all .3s ease;
}

.st-edu-story-link:hover {
    background: #fff;
    color: #0f2747;
}

@media (max-width: 1199.98px) {
    .st-edu-story-title {
        font-size: 36px;
    }

    .st-edu-story-card {
        height: 480px;
    }

    .st-edu-story-number {
        font-size: 74px;
    }

    .st-edu-story-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 991.98px) {
    .st-edu-story-title {
        font-size: 30px;
    }

    .st-edu-story-text {
        max-width: none;
        margin-left: 0;
    }

    .st-edu-story-card {
        height: 440px;
        border-radius: 24px;
    }

    .st-edu-story-number {
        font-size: 62px;
    }

    .st-edu-story-content h3 {
        font-size: 24px;
    }

    .st-edu-story-content {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }
}

@media (max-width: 767.98px) {
    .st-edu-story-title {
        font-size: 24px;
    }

    .st-edu-story-card {
        height: 400px;
        border-radius: 20px;
    }

    .st-edu-story-content {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .st-edu-story-number {
        top: 18px;
        right: 16px;
        font-size: 52px;
    }

    .st-edu-story-content h3 {
        font-size: 22px;
    }

    .st-edu-story-content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .st-edu-story-link {
        min-height: 46px;
        border-radius: 14px;
    }
}






.st-news-ticker-section {
    background: #ffffff;
}

.st-news-ticker {
    display: flex;
    align-items: center;
    gap: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(15, 39, 71, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(12, 30, 56, 0.06);
    min-height: 68px;
}

.st-news-ticker-label {
    flex: 0 0 auto;
    min-width: 230px;
    height: 68px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0f2747 0%, #173a63 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    position: relative;
    z-index: 2;
}

.st-news-live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff4d4f;
    box-shadow: 0 0 0 6px rgba(255, 77, 79, 0.18);
    animation: stNewsPulse 1.8s infinite;
}

@keyframes stNewsPulse {
    0%   { transform: scale(1); opacity: 1; }
    50%  { transform: scale(1.15); opacity: .8; }
    100% { transform: scale(1); opacity: 1; }
}

.st-news-ticker-track-wrap {
    position: relative;
    flex: 1 1 auto;
    overflow: hidden;
    height: 68px;
    display: flex;
    align-items: center;
    background: transparent;
}

.st-news-ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: stTickerMove 42s linear infinite;
    will-change: transform;
}

.st-news-ticker:hover .st-news-ticker-track {
    animation-play-state: paused;
}

@keyframes stTickerMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.st-news-item {
    flex: 0 0 auto;
    position: relative;
    padding: 0 22px;
}

.st-news-item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c12026;
    transform: translateY(-50%);
    opacity: .45;
}

.st-news-item a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #20364f;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    transition: all .25s ease;
}

.st-news-item a i {
    color: #c12026;
    font-size: 14px;
    transition: transform .25s ease;
}

.st-news-item a:hover {
    color: #c12026;
}

.st-news-item a:hover i {
    transform: translateX(3px);
}

.st-news-ticker-track-wrap::before,
.st-news-ticker-track-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.st-news-ticker-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
}

.st-news-ticker-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
}

@media (max-width: 991.98px) {
    .st-news-ticker {
        min-height: auto;
        flex-direction: column;
        align-items: stretch;
    }

    .st-news-ticker-label {
        min-width: 100%;
        width: 100%;
        height: 54px;
        justify-content: center;
        padding: 0 18px;
    }

    .st-news-ticker-track-wrap {
        height: 56px;
    }

    .st-news-item {
        padding: 0 18px;
    }

    .st-news-item a {
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .st-news-ticker {
        border-radius: 14px;
    }

    .st-news-ticker-label {
        height: 50px;
        font-size: 14px;
    }

    .st-news-ticker-track-wrap {
        height: 52px;
    }

    .st-news-item {
        padding: 0 14px;
    }

    .st-news-item a {
        font-size: 13px;
    }
}









.st-campus-section {
    background: #f8fafc;
}

.st-campus-intro {
    max-width: 720px;
    color: #607080;
    font-size: 16px;
    line-height: 1.8;
    margin-top: 12px;
    margin-bottom: 0;
}

.st-campus-card {
    height: 100%;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(15, 39, 71, 0.08);
    box-shadow: 0 16px 40px rgba(12, 30, 56, 0.06);
    transition: .3s ease;
}

.st-campus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(12, 30, 56, 0.12);
}

.st-campus-image {
    height: 230px;
    overflow: hidden;
}

.st-campus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.st-campus-card:hover .st-campus-image img {
    transform: scale(1.06);
}

.st-campus-body {
    padding: 24px;
}

.st-campus-badge {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(193, 32, 38, 0.08);
    color: #c12026;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
}

.st-campus-body h3 {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 12px;
}

.st-campus-body h3 a {
    color: #0f2747;
    text-decoration: none;
}

.st-campus-body p {
    color: #667788;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.st-campus-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.st-campus-meta span {
    color: #30485f;
    font-size: 14px;
    font-weight: 600;
}

.st-campus-meta i {
    color: #c12026;
    margin-right: 8px;
}

.st-campus-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c12026;
    font-weight: 700;
    text-decoration: none;
}

.st-campus-link:hover {
    color: #0f2747;
}




.st-about-search {
    background: #ffffff;
}

.st-about-search-wrap {
    background: #fff;
    border-radius: 28px;
    padding: 34px;
    border: 1px solid rgba(15, 39, 71, 0.08);
    box-shadow: 0 20px 60px rgba(13, 33, 60, 0.08);
    overflow: hidden;
    position: relative;
}

.st-about-search-wrap::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(9 41 122 / 11%) 0%, rgba(193, 32, 38, 0) 70%);
}

.st-about-visual {
    position: relative;
    padding-right: 18px;
}

.st-about-badge {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(15, 39, 71, 0.92);
    color: #fff;
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.16);
}

.st-about-badge-number {
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}

.st-about-badge-text {
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.92;
}

.st-about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(9, 25, 47, 0.10);
}

.st-about-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.st-about-floating-card {
    position: absolute;
    right: 0;
    bottom: 22px;
    max-width: 260px;
    background: #fff;
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 18px 40px rgba(12, 30, 56, 0.14);
    border: 1px solid rgba(15, 39, 71, 0.08);
}

.st-about-floating-card h4 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #0f2747;
    font-weight: 700;
}

.st-about-floating-card p {
    margin: 0;
    font-size: 14px;
    color: #617385;
    line-height: 1.6;
}

.st-about-content {
    position: relative;
    z-index: 2;
}

.st-about-subtitle {
    display: inline-block;
    margin-bottom: 12px;
    color: #c12026;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.st-about-title {
    font-size: 40px;
    line-height: 1.18;
    font-weight: 800;
    color: #0f2747;
    margin-bottom: 18px;
}

.st-about-text {
    font-size: 15px;
    line-height: 1.85;
    color: #637487;
    margin-bottom: 14px;
}

.st-about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 28px;
}

.st-btn-light {
    background: #f1f4f8;
    color: #0f2747;
    border: 1px solid rgba(15, 39, 71, 0.08);
}

.st-inline-search {
    background: #f8fafc;
    border: 1px solid #e5ecf4;
    border-radius: 22px;
    padding: 24px;
}

.st-inline-search-head {
    margin-bottom: 18px;
}

.st-inline-search-head h3 {
    margin: 0 0 6px;
    font-size: 24px;
    color: #0f2747;
    font-weight: 700;
}

.st-inline-search-head p {
    margin: 0;
    color: #708091;
    font-size: 14px;
}

.st-input-icon {
    position: relative;
}

.st-input-icon i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: #7c8b99;
    z-index: 2;
}

.st-input-icon .form-control {
    padding-left: 44px;
}

.st-inline-search .form-control,
.st-inline-search .form-select {
    height: 58px;
    border-radius: 16px;
    border: 1px solid #dce5ef;
    box-shadow: none;
    font-size: 15px;
}

.st-inline-search-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.st-search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.st-search-tags span {
    font-size: 13px;
    font-weight: 700;
    color: #6e7d8c;
}

.st-search-tags a {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #dfe7f0;
    color: #173a63;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all .25s ease;
}

.st-search-tags a:hover {
    background: #c12026;
    border-color: #c12026;
    color: #fff;
}

@media (max-width: 991.98px) {
    .st-about-search-wrap {
        padding: 22px;
        border-radius: 22px;
    }

    .st-about-title {
        font-size: 30px;
    }

    .st-about-visual {
        padding-right: 0;
    }

    .st-about-floating-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 16px;
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .st-about-title {
        font-size: 26px;
    }

    .st-inline-search {
        padding: 18px;
        border-radius: 18px;
    }

    .st-about-badge {
        left: 12px;
        top: 12px;
        padding: 14px 16px;
    }

    .st-about-badge-number {
        font-size: 24px;
    }
}






.accordion-header {
  margin-bottom: 0;
  background: #fff;
}
.accordion-body {
  padding: 1rem 1.25rem;
  background: #fcfcfc;
}

.feature-linkler{
  background-color: #ffecec;
}

.card-linkler{}
.card-linkler img{}
.card-linkler h5{
  font-size: 20px;
}
.card-linkler a{
  padding: 5px 0;
  font-size: 12px;
}

.testi-thumb3 {
  background-size: 70%;
}

.vs-blog .blog-img__item, .blog-style1 .blog-img__item, .blog-style2 .blog-img__item, .blog-style3 .blog-img__item, .blog-style4 .blog-img__item {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  transition: 0.5s;
  background-size: cover;
  margin: 0 auto;
  right: 0;
}

.vs-blog.blog-style4 {
  display: flex;
  border-radius: 20px;
  padding: 15px;
  gap: 30px;
}

.breaking-news{
  margin-bottom: 30px;
}
.breaking-news .breaking-news-title{
  width: 160px;
  background-color: #09297a;
}
.breaking-news .breaking-news-title span{

}
.breaking-news .breaking-news-title span i{
  margin-left: 15px;
}
.breaking-news .breaking-news-scroll a{
  text-decoration: none;
  position: relative;
  margin-right: 10px;
  color: #000;
  font-weight: bold;
  border-right: 1px solid;
  padding: 0 10px 0 0;
}
/*
.breaking-news .news-scroll a:before{
  content: '';
  height: 15px;
  width: 5px;
  background-color: rgb(207,23,23);
  position: absolute;
  position: absolute;
  right: -16px;
  top: 1px;
}
*/


@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.ticker-heading {
  position: absolute;
  background: #09297a;
  display: block;
  left: 0;
  top: 0;
  height: 40px;
  padding: 7px 40px;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.ticker-wrap .ticker__item:before {
  content: "";
  height: 11px;
  width: 11px;
  display: inline-block;
  background-color: #1074bc;
  border-radius: 100%;
  position: relative;
  margin-right: 15px;
}
.ticker-heading:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 11px solid #09297a;
  position: absolute;
  margin-left: 40px;
  top: 30%;
}
.ticker-wrap {
  position: relative;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  height: 2.5rem;
  background-color: #f9f9f9;
  padding-left: 100%;
}
.ticker-wrap .ticker:hover {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -ms-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}
.ticker-wrap .ticker {
  display: inline-block;
  height: 2.5rem;
  line-height: 2.5rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: ticker;
  animation-name: ticker;
  -webkit-animation-duration: 30s;
  animation-duration: 30s;
}
.ticker-wrap .ticker__item {
  display: inline-block;
  padding: 0 2rem;
  font-size: 0.875rem;
  color: #454545;
}



.duyuru-items{
  background: #fff;
  border: 1px dashed;
  padding: 15px 15px;
  border-radius: 10px;
  height: 140px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;
}
.duyuru-items .duyuru-item{
  font-size: 22px;
}
.duyuru-items .duyuru-item a{}

.basari-items{
  background: #fff;
  border: 1px dashed;
  padding: 15px 15px;
  border-radius: 10px;
  height: 200px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;
}
.basari-items .basari-icon{
}
.basari-items .basari-icon i{
  font-size: 42px;
  color: #9d161b;
}
.basari-items .basari-item{
  font-size: 22px;
}
.basari-items .basari-item a{}


.team-style1 .team-content {
  padding-bottom: 0px;
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
  text-align: center;
  height: 100px;
  overflow: hidden;
}

.vs-navbar {
  background-color: #ce1d25;
  padding: 0 20px;
  border-radius: 10px;
  margin-bottom: -35px;
}

.header-logo img {
  width: 300px;
}

.main-menu ul li, .menu-style2 ul li, .menu-style3 ul li {
  padding: 20px 0;
}

.menu-style2 > ul > li:hover > a {
  color: #fff;
  border-bottom: 1px dashed;
}
.menu-style2 > ul > li > a {
  padding-right: 0px;
  margin-right: 0px;
  padding: 0px 15px 0px 15px;
}
.menu-style2 > ul > li:first-child a{
  padding: 0px 15px 0px 0px;
}

.header-info_link {
  color: var(--title-color);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.sideMenuToggler i{
  color: #fff;
  font-size: 26px;
}

.vs-btn > i {
  margin-left: 0;
}

.header-top.v2 .header-social a:hover,
.header-top.v2 .header-links a:hover,
.header-top.v2 .header-links a:hover i{
    color: var(--smoke-color);
}

.header-text-adres a{
  color: #fff;
}

.card-opacity1{
  background: #09297a8f;
}

.div-linkler1 .feature-icon i{
  color: #fff;
  font-size: 30px;
}
.div-linkler1 .feature-style2:hover .feature-icon i{
  color: var(--theme-color-red);
}
.div-linkler1 .feature-title{
  color: var(--theme-color);
}


.search-box-open{
  position: relative;
  margin-right: 35px;
}
.search-box-open::after{
  content: '';
  width: 1px;
  height: 30px;
  background: #fff;
  position: absolute;
  right: -18px;
  top: -5px;
}
#search-box {
  visibility: hidden;
  position: absolute;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999999;
}
#search-box .container {
  display: table;
  width: 100%;
  height: 100%;
}
#search-box .container .close {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 32px;
  height: 32px;
  opacity: 0.9;
}
#search-box .container .close:hover {
  opacity: 1;
}
#search-box .container .close:before,
#search-box .container .close:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: white;
}
#search-box .container .close:before {
  transform: rotate(45deg);
}
#search-box .container .close:after {
  transform: rotate(-45deg);
}
#search-box .container .search-main {
  display: table-cell;
  vertical-align: middle;
}
#search-box .container .search-main .search-inner {
  width: 80%;
  margin: 0 auto;
}
#search-box .container .search-main form {
  position: relative;
}
#search-box .container .search-main input {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 12px 74px 12px 0;
  font-size: 72px;
  height: 84px;
  border-bottom: 2px solid white;
  display: block;
  color: white;
  margin-bottom: 0;
  width: 100%;
  transform: scale3d(0, 1, 1);
  transform-origin: 0% 50%;
  transition: transform 3s;
}
#search-box .container .search-main input:focus {
  outline: none;
}
#search-box .container .search-main button {
  border: 0;
  left: auto;
  outline: none;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0.3em;
  bottom: 0.3em;
  background: transparent;
  font-size: 43px;
}
#search-box .container .search-main .search-info {
  display: block;
  color: white;
  text-align: right;
  float: right;
  margin-top: 4px;
}
#search-box.-open {
  background: rgba(0, 0, 0, 0.8);
  visibility: visible;
  animation: fadein 0.8s;
}
#search-box.-open .container .search-main input {
  transform: scale3d(1, 1, 1);
  transition-duration: 1s;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.sidebar-socials{
  list-style: none;
  padding: 0;
}
.sidebar-socials li{
  margin-bottom: 15px;
}
.sidebar-socials li a{
  display: block;
  padding: 5px 10px 5px 0px;
  border-bottom: 1px dashed;
}
.sidebar-socials li a i{
  background: #09297a;
  color: #fff;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
}
.sidebar-socials li a strong{}
.sidebar-socials li a span{}


.contact-links{}
.contact-links ul{}
.contact-links ul li{
  margin-bottom: 20px;
}
.contact-links ul li a{}
.contact-links ul li a .icon{
  display: inline-block;
  background: red;
  border-radius: 50%;
  color: #fff;
  line-height: 30px;
  font-size: 15px;
  width: 30px;
  height: 30px;
  text-align: center;
}
.contact-links ul li a .name{
  display: inline-block;
  color: #fff;
}
.contact-links ul li a .desc{
  display: inline-block;
  color: #fff;
  font-weight: bold;
}

.modal.lightbox img{
  margin: 0 !important;
  width: 100% !important;
}
.modal.lightbox .ratio.ratio-16x9{
  background-color: #00000000 !important;
}
.modal.lightbox .carousel-control-next, .carousel-control-prev {
  position: absolute;
  top: -100px;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2%;
  height: 100px !important;
  color: #fff;
  text-align: center;
  opacity: .5;
  transition: opacity .15s ease;
}
.modal.lightbox .carousel-control-next-icon {
  background-image: url('../img/icon_next.png');
}
.modal.lightbox .carousel-control-prev-icon {
  background-image: url('../img/icon_prev.png');
}
.modal.lightbox .modal-xl {
  max-width: 70%;
}


.goog-logo-link,
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.goog-te-gadget{
  font-size: 0 !important
}
#google_translate_element{
  /*
    position: absolute;
    top: -5px;
    right: -110px;
  */
  height: 35px;
      position: absolute;
    top: 8px;
}
#google_translate_element a{
    display: none !important;
}
.goog-te-combo{
  border: 1px solid;
  padding: 5px 0 5px 0;
  width: 100px;
}
.widget_breton_core_switcher{
  display: none;
}

.langs-select{
  float: right;
  margin-left: 20px;
  height: 30px;
  line-height: 27px;
}
.skiptranslate{
  display: none;
}
.lang_actives .boxed_wrapper{
  margin-top: -40px;
}
.lang_actives.lang_en .main-menu .navigation > li{
  margin: 0px 5px;
}
.lang_actives.lang_en .main-menu .navigation > li > a{
  font-size: 13px;
  font-weight: bold;
}


/* LIGHTBOX */
.magnific-img img {
    width: 100%;
    height: auto;
}
.mfp-bottom-bar,*{
   font-family: 'Abel', sans-serif;
}
.magnific-img {
    display: inline-block;
    width: 32.3%;
}
a.image-popup-vertical-fit {
    cursor: -webkit-zoom-in;
}
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.98;
}
.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}
.mfp-arrow-left:before {
    border-right: none !important;
}
.mfp-arrow-right:before {
    border-left: none !important;
}
button.mfp-arrow, .mfp-counter {
    opacity: 0 !important;
    transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}
.mfp-container:hover button.mfp-arrow, .mfp-container:hover .mfp-counter{
	opacity: 1 !important;
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }
.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }
.mfp-align-top .mfp-container:before {
  display: none; }
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }
.mfp-ajax-cur {
  cursor: progress; }
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }
.mfp-auto-cursor .mfp-content {
  cursor: auto; }
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }
.mfp-loading.mfp-figure {
  display: none; }
.mfp-hide {
  display: none !important; }
.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }
.mfp-s-ready .mfp-preloader {
  display: none; }
.mfp-s-error .mfp-content {
  display: none; }
button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }
button::-moz-focus-inner {
  padding: 0;
  border: 0; }
.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }
.mfp-close-btn-in .mfp-close {
  color: #333; }
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }
.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }
.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }
.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }
/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }
/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }
.mfp-image-holder .mfp-content {
  max-width: 100%; }
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }


/* Button Animate */
.custom-btn {
  color: #fff;
  font-weight: bold;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
}
.btn-animate1 {
  border: none;
  background: rgb(195 0 0);
  background: linear-gradient(0deg, rgb(195 0 0) 0%, rgb(255 0 0) 100%);
  color: #fff;
  overflow: hidden;
}
.btn-animate1:hover {
  text-decoration: none;
  color: #fff;
}
.btn-animate1:before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: shiny-btn1 3s ease-in-out infinite;
}
.btn-animate1:hover{
  opacity: .7;
}
.btn-animate1:active{
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.3),
              -4px -4px 6px 0 rgba(116, 125, 136, .2),
    inset -4px -4px 6px 0 rgba(255,255,255,.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}
@-webkit-keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.trwpwhatsappballon {
    font-size: 14px;
    border-radius: 12px;
    border: 1px solid #fff;
    max-width: 250px;
    display: none;
}
.trwpwhatsapptitle {
    background-color: #22c15e;
    color: white;
    padding: 14px;
    border-radius: 12px 12px 0px 0px;
    text-align: center;
}
.trwpwhatsappmessage {
    padding: 16px 12px;
    background-color: white;
}
.trwpwhatsappinput {
    position: relative;
    background-color: white;
    border-radius: 0px 0px 12px 12px;
}
.trwpwhatsappinput input {
    width: 206px;
    border-radius: 10px;
    margin: 1px 1px 0px 10px;
    padding:10px;
    font-family: "Raleway", Arial, sans-serif;
    font-weight: 300;
    font-size: 13px;
    background-color: #efefef;
    border: 1px solid #d4d4d4;
}
.trwpwhatsappbutton {
    background-color: #22c15e;
    border-radius: 20px;
    padding: 8px 15px;
    cursor: pointer;
    color: #fff;
    max-width: 220px;
    margin-top: 10px;
    margin-bottom: 10px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.trwpwhatsappall {
    position: fixed;
    z-index: 9999999999999999999;
    bottom: 50px;
    right: 10px;
    font-family: "Raleway", Arial, sans-serif;
    font-weight: 300;
    font-size: 15px;
}
.trwpwhatsappsendbutton {
    color: #22c15e;
    cursor:pointer;
}
.trwpwhatsappsendbutton i{
    position: absolute;
    right: 10px;
}
.trwpwhatsappall button {border: none;}
.trwpwhatsappall button i {
    float: right;
    position: absolute;
    z-index: 999999999999;
    right: 10px;
    bottom: 15px;
    font-size: 18px !important;
    color: #000;
}
.trwpwhatsappall .kapat {
    position: absolute;
    right: 8px;
    top: 6px;
    font-size: 13px;
    border: 1px solid #fff;
    border-radius: 99px;
    padding: 2px 5px 2px 5px;
    color: white;
    font-size: 10px;
    cursor: pointer;
}



.btn_whatsapp {
    position: fixed;
    bottom: 20px;
    width: 60px;
    right: 90px;
}

.mobilGoster{
  display: none;
}



@media (max-width: 768px){
  .mobilGizle{
    display: none !important;
  }
  .mobilGoster{
    display: inline-block;
  }
  .mobilPadding0{
    padding-top: 0;
  }
  .mobilPadding5{
    padding: 5px 0 5px 0;
  }

  #slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
    background-color: #fff;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 100% 93%, 60% 93%, 50% 100%, 40% 93%, 0 93%);
  }

  .header-logo img {
    width: 200px;
  }

  .header-links a {
    display: block;
    padding-left: 0px;
    margin-left: 10px;
  }
  .header-links a::before {
    width: 0;
  }

  .vs-btn.vs-btn-custom1 {
    padding: 10px 10px;
    font-size: 12px;
    display: block;
    margin-bottom: 5px;
  }
  .vs-btn.vs-btn-custom1 i{
    margin-right: 5px;
  }

  .vs-menu-toggle {
    width: 40px;
    height: 40px;
    padding: 0;
    font-size: 18px;
    border-radius: 5px;
    float: right;
  }

  .vs-btn-mobile_i1 {
    color: var(--white-color);
    font-size: 15px;
    margin-right: 5px;
    margin-top: 5px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color);
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
  }

  .feature-style1, .feature-style2 {
    padding: 40px 15px 33px 15px;
  }
  .team-style1 .team-img {
    width: auto;
    height: auto;
  }


}

@media (min-width: 768px) and (max-width: 990px) {
  .mobilGoster{
    display: inline-block;
  }
  .vs-btn.vs-btn-custom1{
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 18px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .vs-btn.vs-btn-custom1 i{
    margin-right: 5px;
  }

  .vs-btn-mobile_i1 {
    color: var(--white-color);
    font-size: 15px;
    margin-right: 5px;
    margin-top: 5px;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color);
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
  }
}

@media (min-width: 990px) and (max-width: 1200px) {
  .header-search-div{
    display: none !important;
  }

  .header-middle-mobile .vs-btn {
    font-size: 12px;
    padding: 16px 12px;
  }

  .header-middle-mobile .header-info_icon {
    font-size: 18px;
    margin-right: 10px;
    width: 40px;
    height: 40px;
  }
  .header-middle-mobile .header-info_link {
    color: var(--title-color);
    font-size: 16px;
    font-weight: 700;
    margin: 0;
  }
  .header-middle-mobile .header-info {
    margin-left: 20px;
    padding-left: 20px;
  }
  .header-middle-mobile .header-info2 {
    margin-right: 20px;
  }

}

@media (min-width: 1200px) and (max-width: 1300px) {
  .menu-style2 > ul > li > a {
    padding-right: 0px;
    margin-right: 0px;
    padding: 20px 10px 20px 10px;
    font-size: 15px;
  }



}

@media (min-width: 990px) and (max-width: 1400px) {
  .inspiro-slider {
    height: 500px !important;
  }

}

/* 320 - 480 */
@media only screen and (min-device-width : 990px) and (max-device-width : 1200px) {
  .main-menu a {
    font-size: 13px;
  }

}

/* 320 - 480 */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
  .mobilGizle{
    display: none !important;
  }

}
/* 475 - 768 */
@media only screen and (min-device-width : 475px) and (max-device-width : 768px) {
  .mobilGizle{
    display: none !important;
  }



}
/* 765 - 990 */
@media only screen and (min-device-width : 765px) and (max-device-width : 990px) {


}
/* 990 - 1300 */
@media only screen and (min-device-width : 990px) and (max-device-width : 1300px) {

}
