.header-top .flex-left {
  padding-left: 20px;
  margin-left: 0 !important;
}
.header-top-left a:hover {
  color: rgb(159, 28, 33) !important;
  transition: color 0.3s ease;
}
.header-tagline {
  font-size: 25px;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #9f1c21, #263c85);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.header-bottom {
  background: linear-gradient(135deg, #9f1c21, #263c85) !important;
}
.search-form input[type="search"] {
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, #9f1c21, #263c85) 1;
  border-radius: 0;
  background: #fff;
  width: 250px;
}

.btn-gradient-custom {
  background: linear-gradient(135deg, #9f1c21, #263c85) !important;
  border: none !important;
}
.btn-gradient-custom:hover {
  background: linear-gradient(135deg, #263c85, #9f1c21) !important;
}

.box-news,
.box-form {
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 20px;
  background: #fff;
  margin-bottom: 30px;
  background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #9f1c21, #263c85);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.box-title {
  font-size: 18px;
  color: #9f1c21 !important;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  font-weight: 700;
}
.box-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.box-list li {
  margin-bottom: 15px !important;
  padding: 0 !important;
}
.box-list li:last-child {
  margin-bottom: 0 !important;
}
.box-list a {
  display: flex;
  gap: 12px;
  text-decoration: none;
  align-items: center;
  padding: 0 !important;
  margin: 0 !important;
}
.box-thumb {
  flex: 0 0 100px;
}
.box-thumb img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin: 0 !important;
}
.box-text {
  font-size: 16px;
  line-height: 22px;
  color: #232323;
  font-weight: 600;
  flex: 1;
  margin: 0 !important;
  padding: 0 !important;
  transition: 0.3s;
}
.box-list a:hover .box-text {
  color: #9f1c21;
}
.box-form .form-title {
  font-size: 18px;
  color: #9f1c21 !important;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.container12.sec32 {
  max-width: 1170px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 15px !important;
}
.container12.sec32 .wrap {
  width: 100% !important;
}
.container12.sec32 .d_flex {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  flex-wrap: wrap !important;
  gap: 30px !important;
}
.sec32_col1 {
  flex: 0 0 calc(100% - 330px) !important;
  max-width: calc(100% - 330px) !important;
  width: 100% !important;
}
.sec32_col2 {
  flex: 0 0 300px !important;
  max-width: 300px !important;
  width: 100% !important;
}
@media (max-width: 850px) {
  .sec32_col1, .sec32_col2 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

.entry-post-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.entry-post-info span {
  position: relative;
  padding-left: 12px;
  margin-left: 12px;
}
.entry-post-info span:first-child {
  padding-left: 0;
  margin-left: 0;
}
.entry-post-info span:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: #ccc;
}

.tm-student-achievers {
  width: 100%;
  padding: 30px 0;
  overflow: hidden;
}
.tm-student-achievers__rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  width: 100%;
}
.tm-student-achievers__marquee {
  width: 100%;
  overflow: hidden;
}
.tm-student-achievers__track {
  display: flex;
  width: max-content;
}
.tm-student-achievers__track--left {
  animation: marquee-left 50s linear infinite;
}
.tm-student-achievers__track--right {
  animation: marquee-right 50s linear infinite;
}
.tm-student-achievers__group {
  display: flex;
  gap: 24px;
  padding-right: 24px;
}
.tm-student-achievers__card {
  flex: 0 0 auto;
  width: 240px;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.tm-student-achievers__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes marquee-left {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes marquee-right {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}