:root {
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --color: #c7232f;
  --color2: #161d27;
  --color2-dark: #0f131a;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
  background-color: #fff;
  transition: 0.35s;
}

body.darkmode {
  color: #fff;
  background-color: var(--color2-dark);
}

main {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: none;
  outline: none;
  background: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

@-webkit-keyframes slideRight {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }

  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

@keyframes slideRight {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }

  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

.section {
  margin: 0 auto;
  padding: 6rem 0 2rem;
}

.uyfuf_tri a.brand img {
  width: 240px;
}

.uyfuf_tri {
  width: 390px;
}

.uyfugfgf_tri {
  width: 44%;
}

.uyfuy_tri {
  padding: 10px;
}

.uyfugfgf_tri img {
  height: 165px;
  object-fit: contain;
  background: #fff;
  border: 2px solid #dd2608;
}

.uyfugf_tri {
  width: 22%;
}

.uyfugfgf_tri img {
  /* height: 140px; */
}

.top_header_tri .menu .menu__inner .menu__item:hover>.menu__link {
  color: #dd2608;
  background: #fff;
  border-radius: 0;
}

.top_header_tri .submenu .submenu__list li a {
  font-size: 15px;
}

.top_header_tri .submenu .submenu__inner {
  width: 22%;
}

header .container {
  max-width: 1300px;
  /* max-width: 75rem; */
  height: auto;
  margin-inline: auto;
  padding-inline: 1.5rem;
  padding: 0rem 1rem;
}

header ul.menu__inner {
  margin: 0;
}

.centered {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 1rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 100;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: var(--shadow-medium);
  transition: ease all .4s;
}

header.header.header_tri.fixed-header {
  box-shadow: 0 0 8px 0 rgb(0 0 0 / 19%);
  top: -31px;
}

.darkmode .header {
  background-color: var(--color2);
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  /* height: 65px; */
  margin: 10px auto 0;
}

.navbar .navbar__left {
  display: flex;
  align-items: center;
  flex: 0 0 24%;
}

@media (max-width: 766px) {
  .navbar .navbar__left {
    flex: 0 0 auto;
  }
}

.navbar .navbar__center {
  display: flex;
}

@media (max-width: 766px) {
  .navbar .navbar__center {
    flex: 0 0 100%;
    order: 3;
    align-items: center;
  }
}

.navbar .navbar__right {
  display: flex;
  flex: 0 0 17%;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
}

@media (max-width: 766px) {
  .navbar .navbar__right {
    flex: 0 0 auto;
    align-items: center;
  }
}

.brand {
  display: flex;
  align-items: center;
  order: 1;
}

.brand svg {
  width: 60px;
  height: 60px;
}

@media (max-width: 766px) {
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 350px;
    max-width: 85%;
    height: 100%;
    z-index: 100;
    overflow: hidden;
    background-color: #fff;
    transform: translate(-100%);
    transition: all 0.4s ease-in-out;
  }

  .menu.is-active {
    transform: translate(0%);
  }

  .darkmode .menu {
    background-color: var(--color2);
  }
}

.menu .menu__header {
  display: none;
  box-shadow: var(--shadow-medium);
}

@media (max-width: 766px) {
  .menu .menu__header {
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 4rem;
    z-index: 110;
    visibility: hidden;
    background: transparent;
  }

  .menu .menu__header.is-active {
    visibility: visible;
    background-color: #fff;
  }

  .menu .menu__header.is-active>.menu__arrow {
    display: flex;
  }

  .darkmode .menu .menu__header.is-active {
    background-color: var(--color2);
  }
}

@media (max-width: 766px) {
  .menu .menu__header .menu__arrow {
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 3rem;
  }

  .menu .menu__header .menu__arrow:hover i {
    color: var(--color);
  }

  .menu .menu__header .menu__arrow>i {
    font-size: 1.5rem;
    color: #000;
    transition: all 0.25s ease;
  }

  .darkmode .menu .menu__header .menu__arrow>i {
    color: #fff;
  }
}

@media (max-width: 766px) {
  .menu .menu__header .menu__title {
    cursor: pointer;
    font-weight: 500;
    text-transform: capitalize;
    color: #000;
    transition: all 0.25s ease;
  }

  .menu .menu__header .menu__title:hover {
    color: var(--color);
  }

  .darkmode .menu .menu__header .menu__title {
    color: #fff;
  }
}

@media (max-width: 766px) {
  .menu .menu__inner {
    height: 100%;
    margin-top: -3rem;
    overflow-y: auto;
    overflow-x: hidden;
  }
}

.menu .menu__inner .menu__item {
  position: static;
  display: inline-block;
  padding-right: 20px;
  padding: 0;
}

.menu .menu__inner .menu__item:last-child {
  padding-right: 0;
}

.menu .menu__inner .menu__item:hover>.menu__link {
  color: #fff;
  background: #dd2608;
}

.darkmode .menu .menu__inner .menu__item:hover>.menu__link {
  color: var(--color);
}

@media (max-width: 766px) {
  .menu .menu__inner .menu__item {
    display: block;
    padding: 0;
  }
}

@media (min-width: 767px) {
  .menu .menu__inner .menu__item:hover>.menu__link i {
    transform: rotate(-90deg);
  }
}

@media (min-width: 767px) {
  .menu .menu__inner .menu__item.menu__dropdown:hover>.submenu {
    opacity: 1;
    visibility: visible;
    top: 100%;
  }
}

.menu .menu__inner .menu__item .menu__link {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  text-transform: capitalize;
  transition: all 0.25s ease;
  border-radius: 8px 8px 0 0;
  padding: 20px 8px 28px;
  text-decoration: none !important;
}

@media (max-width: 766px) {
  .menu .menu__inner .menu__item .menu__link {
    justify-content: space-between;
    padding: 20px;
  }
}

.menu .menu__inner .menu__item .menu__link>i {
  margin-left: 5px;
  font-size: 1.35rem;
  transform: rotate(90deg);
  transition: 0.35s;
}

@media (max-width: 766px) {
  .menu .menu__inner .menu__item .menu__link>i {
    margin-left: 10px;
    transform: rotate(0deg);
  }
}

.darkmode .menu .menu__inner .menu__item .menu__link {
  color: #fff;
}

.submenu {
  position: absolute;
  z-index: 100;
  top: 110%;
  left: 64%;
  width: 100%;
  height: auto;
  padding: 13px 10px 20px;
  border-radius: 0.25rem;
  border-top: 2px solid #dd2608;
  background-color: #fff;
  box-shadow: var(--shadow-medium);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease-in-out;
  transform: translateX(-50%);
}

.darkmode .submenu {
  border-top: 2px solid var(--color);
  background-color: var(--color2);
}

@media (max-width: 766px) {
  .submenu {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: auto;
    margin: 0;
    padding: 100px 15px 0 15px;
    border-radius: 0;
    border-top: 0;
    box-shadow: none;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    transform: translateX(0%);
  }

  .submenu.is-active {
    display: block;
  }
}

@media (min-width: 767px) {
  .submenu {
    -webkit-animation: none !important;
    animation: none !important;
  }
}

@media (min-width: 767px) {
  .submenu.megamenu__normal {
    left: 65%;
    max-width: 250px;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
}

@media (min-width: 767px) {

  .submenu.megamenu__text,
  .submenu.megamenu__image {
    display: flex;
    flex-wrap: wrap;
    max-width: 95%;
    height: auto;
    margin: 0 auto;
  }
}

@media (min-width: 975px) {

  .submenu.megamenu__text,
  .submenu.megamenu__image {
    max-width: 880px;
  }
}

.submenu.megamenu__image .submenu__inner a {
  display: flex;
  flex-flow: column;
  align-items: center;
}

@media (max-width: 766px) {
  .submenu.megamenu__image .submenu__inner a {
    flex-flow: row;
    align-items: center;
    padding-bottom: 20px;
  }
}

.submenu.megamenu__image .submenu__inner a img {
  display: block;
  width: 100%;
  height: 150px;
  margin-bottom: 15px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 766px) {
  .submenu.megamenu__image .submenu__inner a img {
    width: 30%;
    height: 80px;
    margin-bottom: 0;
    margin-right: 15px;
  }
}

.submenu .submenu__inner {
  width: 25%;
  padding: 0 15px;
}

@media (max-width: 766px) {
  .submenu .submenu__inner {
    width: 100%;
    padding: 0;
  }
}

.submenu .submenu__inner .submenu__title {
  font-size: 16px;
  font-weight: 500;
  color: var(--color);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.darkmode .submenu .submenu__inner .submenu__title {
  color: var(--color);
}

@media (max-width: 766px) {
  .submenu .submenu__list {
    margin-bottom: 20px;
  }
}

.submenu .submenu__list li {
  display: block;
  line-height: 1;
  margin: 0 auto;
  border-right: 1px solid #dddddd69;
}

.submenu .submenu__list li a {
  display: inline-block;
  padding: 7px 0;
  line-height: 1.4;
  text-transform: capitalize;
  color: #000;
  transition: all 0.25s ease-in-out;
  font-size: 14px;
}

.submenu .submenu__list li a:hover {
  color: #dd2608;
  font-size: 15px;
}

@media (max-width: 766px) {
  .submenu .submenu__list li a {
    display: block;
  }
}

.darkmode .submenu .submenu__list li a {
  color: #fff;
}

.darkmode .submenu .submenu__list li a:hover {
  color: var(--color);
}

.switch {
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: 10px;
}

.switch .switch__light,
.switch .switch__dark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in;
}

.switch .switch__light {
  font-size: 20px;
  visibility: visible;
  color: #000;
}

.darkmode .switch .switch__light {
  font-size: 0;
  visibility: hidden;
}

.switch .switch__dark {
  font-size: 0;
  visibility: hidden;
  color: #fff;
}

.darkmode .switch .switch__dark {
  font-size: 20px;
  visibility: visible;
}

.overlay {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.45s ease-in-out;
  pointer-events: none;
}

@media (max-width: 766px) {
  .overlay {
    cursor: url("../cPh9Zm5.png"), zoom-out;
    pointer-events: visible;
  }

  .overlay.is-active {
    opacity: 1;
    visibility: visible;
  }
}

.burger {
  position: relative;
  display: none;
  cursor: pointer;
  width: 25px;
  height: 15px;
  margin-right: 15px;
  opacity: 0;
  visibility: hidden;
  background: transparent;
}

@media (max-width: 766px) {
  .burger {
    display: block;
    opacity: 1;
    visibility: visible;
  }

}

.burger .burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  opacity: 1;
  border-radius: 15px;
  background: #000;
}

.darkmode .burger .burger-line {
  background: #fff;
}

.burger .burger-line:nth-child(1) {
  top: 0px;
}

.burger .burger-line:nth-child(2) {
  top: 8px;
  width: 70%;
}

.burger .burger-line:nth-child(3) {
  top: 16px;
}



.top_header_tri {
  background: #dd2608;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.top_header_tri .container {
  /* max-width: 1170px; */
  width: 1300px;
}

section.top_header_tri .navbar__center {
  display: flex;
  align-items: center;
  justify-content: end;
}

.top_header_tri .menu ul.menu__inner a.menu__link {
  font-weight: 500;
  color: #fff;
  display: inline-block;
  padding: 5px 8px;
  font-size: 13px;
  position: relative;
}

.top_header_tri .menu ul.menu__inner a.menu__link:before {
  content: '';
  border-left: 1px solid #ffffff8a;
  position: absolute;
  right: 0;
  top: 8px;
  height: 50%;
}

.top_header_tri .menu ul.menu__inner a.menu__link {
  position: relative;
}

.top_header_tri .menu ul.menu__inner a.menu__link:last-child:before {
  border-left: 0px solid #ffffff8a;
}

.top_header_tri .menu ul.menu__inner .blink_new {
  border-radius: 0;
  -webkit-animation: blink 800ms step-end infinite;
  animation: blink 800ms step-end infinite;
}

@-webkit-keyframes blink {
  50% {
    background-color: #dd2608;
  }
}

@keyframes blink {
  50% {
    background-color: #ff9934;
    color: #ffffff;
  }
}


.top_header_tri .menu ul.menu__inner .blink_login {
  border-radius: 0;
  -webkit-animation: blink_login 800ms step-end infinite;
  animation: blink_login 800ms step-end infinite;
}

@-webkit-keyframes blink_login {
  50% {
    background-color: #dd2608;
  }
}

@keyframes blink_login {
  65% {
    background-color: #928b22;
    color: #ffffff;
  }
}


.menu .menu__inner .menu__item a.menu__link.fhtghbg_tri {
  background: #dd2608;
  color: #fff;
  border-radius: 4px;
  padding: 5px 14px 7px;
  /* text-transform: uppercase; */
  font-size: 13px;
  font-weight: 600;
}

section.top_header_tri .submenu.megamenu__text {
  border-bottom: 3px solid #dd2608;
  width: 100%;
  transition: all 0.35s ease-in-out;
  transform: translateX(0%);
  max-width: 100%;
  left: 0;
  background: #ffffff;
  padding: 20px 100px 40px;
  border-top: 0;
}

/*======== header ==========*/


/*====== footer =========*/

/*---------------footer------------------*/


section.banner_section_tri .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 40px;
  z-index: 10;
}

section.banner_section_tri .owl-nav button.owl-prev,
section.banner_section_tri .owl-nav button.owl-next {
  pointer-events: auto;
  background: #fff !important;
  color: #000 !important;
  width: 50px;
  /* Match sizing */
  height: 50px;
  border-radius: 3px !important;
  /* Match square-ish look */
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border: none;
  outline: none;
  opacity: 0.8;
  /* Slight transparency for banner overlap, or remove if strict match needed */
}

/* Hover Effect */
section.banner_section_tri .owl-nav button.owl-prev:hover,
section.banner_section_tri .owl-nav button.owl-next:hover {
  background: #fff !important;
  color: #ce1111 !important;
  /* Red hover like link color */
  opacity: 1;
}

section.banner_section_tri .owl-nav button span {
  font-size: 66px !important;
  /* Huge arrow size like Kindergarten */
  line-height: 0.5;
  /* Adjust vertical center for such big font */
  position: relative;
  top: -5px;
  /* Fine tune centering */
  padding-bottom: 0;
}

/*section.banner_section_tri .iughk_tri{
margin-top: -60px;
}*/


.tydy_tri {
  background: #000;
}

.footer-area {
  position: relative;
  z-index: 1;
  padding-top: 50px;
  background-image: url(../images/footer_bg.png);
  background-blend-mode: overlay;
  background-color: #000000c4;
  background-color: #000000a8;
  width: 100%;
  padding: 40px 0px 0;
  background-size: 100%;
  background-position: center;
}

.footer-area .single-footer-widget {
  margin-bottom: 30px;
}

.footer-area .single-footer-widget p {
  color: #e4e4e4 !important;
  margin-top: 15px;
  line-height: 25px;
}

.footer-area .single-footer-widget {
  margin-bottom: 30px;
  color: #e4e4e4
}

.footer-area .single-footer-widget h3 {
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #ffffff6e;
  color: white;
  font-size: 20px;
  width: 200px;
}

.footer-area .single-footer-widget ul {
  padding-left: 17px;
  list-style-type: none;
  margin: 0;
}

.footer-area .single-footer-widget ul li {
  position: relative;
  margin-bottom: 8px;
  line-height: 1.8;
  color: #e4e4e4 !important;
  font-size: 15px;
}

.footer-area .single-footer-widget ul li::before {
  background-color: #dd2608;
}

.footer-area .single-footer-widget ul li::before {
  height: 7px;
  width: 7px;
  content: '';
  left: -17px;
  top: 10px;
  position: absolute;
}

.footer-area .single-footer-widget p,
.footer-area .single-footer-widget ul li,
.single-footer-widget .footer-contact-info li a,
.footer-area .single-footer-widget ul li a {
  color: #e4e4e4 !important;
  font-size: 14px;
}

.footer-bottom-area {
  margin-top: 0px;
  /* border-top: 1px solid #ffffff5c; */
  padding-top: 10px;
  padding-bottom: 10px;
}

.footer-bottom-area p {
  color: #ededed;
  font-size: 12px;
  margin: 0;
}

.footer-bottom-area p a {
  color: #fe4a55;
}

.footer-bottom-area ul {
  text-align: right;
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.footer-bottom-area ul li {
  color: #ededed;
  position: relative;
  display: inline-block;
  margin-right: 20px;
  font-size: 12px;
}

.footer-bottom-area ul li::before {
  content: '';
  position: absolute;
  right: -12px;
  top: 5.5px;
  width: 1px;
  height: 14px;
  background-color: #ededed;
}

.footer-bottom-area ul li:last-child {
  margin-right: 0;
}

.footer-bottom-area ul li a {
  color: #fff;
}

.footer-bottom-area ul li:last-child::before {
  display: none;
}

/*.lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    margin: auto;
    width: 100%;
    z-index: -1;
}*/

.lines .line:nth-child(1) {
  margin-left: -25%;
}

/*.lines .line {
        position: absolute;
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: rgba(255, 255, 255, 0.1);
        overflow: hidden;
    }*/

.lines .line:nth-child(1)::after {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.lines .line::after {
  content: "";
  display: block;
  position: absolute;
  height: 15vh;
  width: 100%;
  top: -50%;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(75%, var(--whiteColor)), to(var(--whiteColor)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--whiteColor) 75%, var(--whiteColor) 100%);
  -webkit-animation: run 7s 0s infinite;
  animation: run 7s 0s infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
  animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

.lines .line:nth-child(3)::after {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.single-footer-widget .footer-contact-info {
  padding-left: 0 !important;
  margin-bottom: 0 !important;
  list-style-type: none !important;
}

.footer-area .single-footer-widget .footer-contact-info li::before {
  display: none;
}

.footer-area .single-footer-widget .social-link li::before {
  display: none;
}

.single-footer-widget .social-link {
  padding-left: 0 !important;
  list-style-type: none;
  margin-top: 20px !important;
  margin-bottom: 0 !important;
}

.single-footer-widget .social-link li {
  display: inline-block;
  margin-right: 3px;
  color: #ffffff;
  padding: 4px 3px;
  border: 1px solid #ffffff;
  border-radius: 02px;
  height: 32px;
  width: 32px;
  text-align: center;
}

.single-footer-widget .social-link li a {
  width: 24px;
  height: 24px;
  text-align: center;
  color: var(--whiteColor);
  /*background-color: #1e1d2f;*/
  font-size: 18px;
  position: relative;
  border-radius: 2px;
}

.single-footer-widget .social-link li a i {
  position: absolute;
  left: 0;
  top: 42%;
  right: 0;
  -webkit-transform: translateY(-48%);
  transform: translateY(-52%);
  font-size: 16px;
}

.single-footer-widget .footer-contact-info li i {
  position: absolute;
  left: 0;
  top: 6px;
}

.single-footer-widget .footer-contact-info li {
  margin-bottom: 13px;
  color: #ededed;
  position: relative;
  padding-left: 22px;
}

.single-footer-widget .logo h2 {
  color: white;
  font-weight: bold;
  font-family: var(--fontFamily);
}


/*====== end footer =========*/
.yfuy_tri {
  position: absolute;
  bottom: 0;
  /* top: 0; */
  width: 100%;
  margin: auto;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.uyfvb_tri {
  color: #fff;
  position: relative;
  text-align: center;
  background: #00000096;
  padding: 18px 100px 30px;
}

.ytdty_tri {
  font-size: 35px;
  text-shadow: 0 3px 4px #000;
  font-weight: 600;
}

.sxxyjyx_tri {
  text-shadow: 0 3px 4px #000;
  font-size: 18px;
  margin-top: 4px;
  color: #ffbc7a;
}

.yfuy_tri:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 86%;
  /* background: #00000054; */
  /* background: linear-gradient(#ffffff00, #00000094); */
}

.ytdty_tri {
  width: 100%;
  text-align: center;
}

section.top_header_tri .submenu.megamenu__text {
  top: 29px !important;

}

section.banner_section_tri button.owl-prev {
  position: absolute;
  left: 0;
}

section.banner_section_tri button.owl-next {
  position: absolute;
  right: 0;
}

.banner_section_tri .owl-dot {
  height: 25px;
  margin: 4px;
}

.banner_section_tri .owl-theme .owl-dots .owl-dot.active span,
.banner_section_tri .owl-theme .owl-dots .owl-dot:hover span {
  background: rgb(255 255 255);
  /* transform: translate3d(0px, -50%, 0px) scale(0.6); */
}

.banner_section_tri .owl-theme .owl-dots .owl-dot span {
  /* border: 1px solid rgb(154, 154, 154); */
  margin: 5px;
}

.banner_section_tri .owl-theme .owl-dots .owl-dot span {
  /* width: 10px; */
  /* height: 10px; */
  /* margin: 5px 7px; */
  background: rgb(204 204 204 / 75%);
  /* display: block; */
  /* -webkit-backface-visibility: visible; */
  /* transition: opacity .2s ease; */
  border-radius: 0;
  display: inline-block;
  height: 3px;
  margin: 0;
  /* transform: translate3d(0px, -50%, 0px) scale(0.3); */
  /* transform-origin: 50% 50% 0px; */
  /* transition: all 250ms ease-out 0s; */
  width: 56px;
}

section.banner_section_tri {
  position: relative;
  margin-top: 105px;
}

section.banner_section_tri .owl-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  z-index: 7;
  right: 0;
}

/*======= about ======*/

section.ufyufu_tri {
  /*background-image: url(../images/abouut_bg.png);*/
  padding: 70px 0 50px;
  background-repeat: no-repeat;
  background-position: left;
  position: relative;
}

.aboutImgBox {
  position: relative;
  z-index: 1;
}

.aboutImgBox::before,
.aboutImgBox::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  border: 2px solid #dd2608;
  transition: all 0.25s ease-out;
}

.aboutImgBox:hover::before {
  top: 15px;
  left: 15px;
  /* left: 0px; */
}

.aboutImgBox:hover::after {
  bottom: 15px;
  right: 15px;
}

.aboutImgBox::before {
  background-color: #dd2608;
  top: -15px;
  left: -18px;
}

.aboutImgBox::after {
  bottom: -15px;
  right: -15px;
  /* right: 0px; */
}

.about a.viewall {
  margin-bottom: 25px;
  background-color: #282727;
  color: #fff;
  padding: 8px 25px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
}

.about a.viewall:hover {
  background-color: #dd2608;
}

.about-title {
  padding-left: 35px;
}

h2.tguyguy_tri {
  font-size: 20px;
  color: #dd2608;
}

span.guyguy_tri {
  font-size: 40px;
  color: #000;
  display: block;
}


.uygjbvuyhv_tri {
  font-size: 15px;
  line-height: 27px;
  color: #000;
}

img.ftfty_tri {
  position: absolute;
  top: 0;
}


/*-----messages--------*/
.bg-beige {
  background-color: #f1f1f1;
}

.heading {
  color: #2d3d8c;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
  z-index: 99;
  padding-left: 13px;
}

.heading:before {
  position: absolute;
  width: 75px;
  height: 75px;
  background: #fff;
  border-radius: 50%;
  content: '';
  left: -7px !important;
  top: -17px !important;
  z-index: -1;
}

.heading:after {
  position: absolute;
  width: 60px;
  height: 2px;
  background: #2d3d8c;
  content: '';
  /*right: -70px;*/
  top: 26px;
}

ul.tabs {
  margin: 0;
  padding: 0px;
  list-style: none;
  background: #ff9934;
  width: 510px;
  border-radius: 30px;
  padding: 2px 0px 0px 1px;
  height: 47px;
  position: absolute;
  left: 22px;
  margin-top: 19px;
  z-index: 1;
  box-shadow: 0 0 10px #999;
}

ul.tabs li {
  background: none;
  color: #fff;
  display: inline-block;
  padding: 11px 10px;
  cursor: pointer;
  width: 32.6%;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

ul.tabs li.current {
  background: #fff;
  border-radius: 30px;
  color: #ff9934;
  /* width: 40.3%; */
  text-align: center;
}

.tab-content {
  display: none;
  padding: 15px;
}

.tab-content.current {
  display: inherit;
}

.dir-message {
  width: 100%;
  background: #fff5eb;
  padding: 9% 8% 7% 6%;
  margin: 30px 0px 0;
  font-style: italic;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
  border-top: 2px solid #ff9934;
  border-left: 2px solid #ff9934;
  border-bottom: 2px solid #ff9934;
}

.dir-message .content {
  height: 160px;
  overflow: hidden;
  text-align: justify;
  font-size: 15px;
  line-height: 27px;
  color: #000;
}

.read-more a {
  color: #dd2608;
  font-style: normal;
  text-align: right;
  font-weight: 600;
  font-size: 14px;
}

.dir-name {
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
}

.dir-img img {
  height: auto;
  width: 100%;
  box-shadow: 0 0 10px #999;
}

.text-right {
  text-align: right
}

/*========= counter ========*/
.yguyguy_tri {
  background: url(../images/banner/Students.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  overflow: hidden;
  position: relative;
  background-attachment: fixed;
  padding: 50px 0;
}

.yguyguy_tri::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, .7);
  z-index: 0;
}

.uyguyhgyh_tri {
  position: relative;
  color: #fff;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* gap: 90px; */
}

.uyguyhgyh_tri .huiguy_tri {
  width: 25%;
  text-align: center;
  /* z-index: 9; */
  /* width: 200px; */
  /* height: 200px; */
  position: relative;
}

.uyguyhgyh_tri .counter {
  font-size: 38px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 45px;
}

.uyguyhgyh_tri .huiguy_tri h3 {
  color: #ff9934;
  font-size: 16px;
}

.uyguyhgyh_tri img.counter-box-img {
  width: 50px;
  height: 50px;
  display: block;
  margin: 0 auto 12px;
  -webkit-filter: invert(100%);
  filter: invert(100%);
}

.bg-webSecondaryLight {
  background-color: #ff9934;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  display: none;
}

.animate-spin-slow {
  animation: spin 30s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.ygyu_tri {
  /* background-color: #fffffff0; */
  /* border-radius: 40px; */
  /* height: 100%; */
  /* width: 100%; */
  /* position: absolute; */
  /* left: 0px; */
  /* top: 0px; */
  /* justify-content: center; */
  /* display: flex; */
  /* flex-direction: column; */
}

/*========= end counter ========*/

/*======= Messages ======*/

.iygyugu_tri {
  position: relative;
}

h2.heading-blue {
  color: #000;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

span.hfuihi_tri {
  color: #dd2608;
}

section.hghgh_tri {
  background-color: #ffffff;
  /* background-color: #F6F6F6; */
  /* background-image: url(../images/counter-bg-new.png); */
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 40px 0px 55px 0px;
}







/*========= photo ========*/
.gallery-wrap {
  background-color: #F6F6F6;
  background-image: url(../images/counter-bg-new.png);
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 40px 0px 55px 0px;
}

.title h1 {
  font-size: 50px;
  color: #ffffff;
  margin: 0;
  font-weight: bold;
  margin-bottom: 18px;
  line-height: 50px;
}

.gallery_left p {
  font-size: 14px;
  line-height: 22px;
  color: #ddd;
  margin-bottom: 34px;
  /* padding-right: 30px; */
}

section.activities_tr_section .image-holder {
  text-align: left;
  margin-bottom: 10px;
  border: 1px solid #e7e7e7;
  padding: 5px;
  background: white;
}

.gallery-row {
  position: relative;
  z-index: 99;
}

a.events img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 200px;
  width: 100%;
}

.image-holder {}

.event-desc-wrap a {
  color: black;
}

.event-desc-wrap a h3 {
  font-size: 14px;
  text-shadow: 0 3px 4px #000;
}

.event-subdesc {
  /* display: flex; */
  /* align-items: center; */
}

.event-subdesc span {
  /* flex-grow: 1; */
  /* word-break: break-word; */
  /* font-size: 13px; */
  /* color: #000000!important; */
  /* font-weight: 600!important; */
  /* margin-left: 5px!important; */
}

.event-desc-wrap {
  position: relative;
  /* padding: 10px 5px; */
}

.aftervhover h3 {
  width: 100%;
  /* background-color: #043a5be0; */
  font-size: 15px;
  position: absolute;
  color: #ffffff;
  text-transform: capitalize;
  position: relative;
  /* top: auto; */
  /* bottom: 33px; */
  right: 0;
  left: 0;
  margin: 0 auto;
  text-align: left;
  opacity: 9;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 10px 0;
}

.image-holder:hover .aftervhover h3 {
  opacity: 1;
}

.event-subdesc p {
  color: black !important;
  font-size: 12px !important;
  font-weight: 600;
}

a.events img:hover {
  opacity: 0.8;
  outline: #fff solid 2px;
  outline-offset: -10px;
}

a.events img {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.image-holder {
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 2px;
  box-shadow: 0px 7px 8px 0 rgb(0 0 0 / 19%);
}

.event-desc-wrap a span {
  color: #ffffff;
  font-size: 12px;
}

.aftervhover {
  position: absolute;
  /* top: -55px; */
  bottom: 0;
  width: 100%;
  left: 0;
  background-image: linear-gradient(#ffffff00, black);
  padding: 0px 10px;
}

span.date_tri {
  text-shadow: 0 3px 4px #000;
  font-weight: 500;
  background: #ff9934;
  padding: 2px 8px 3px;
}

.gallery_box {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 35px;
  padding-right: 5px;
  position: relative;
  z-index: 1;
}

.yfu_tri {
  position: relative;
}

.yfu_tri:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  width: 103%;
  height: 76%;
  background: #dd2608;
  /* box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22); */
}

.yfu_tri:after {
  content: "";
  position: absolute;
  left: -12px;
  top: 58px;
  width: 103%;
  height: 76%;
  border: 2px solid #dd2608;
  /* z-index: -1; */
  transition: all 0.25s ease-out;
}

.yfu_tri:hover::after {
  left: 13px;
  top: 34px;
}




/*============ ==============*/

.pbmit-element-static-box-style-1 .pbmit-element-posts-wrapper {
  flex-direction: row;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  margin: 0 !important;
}

.pbmit-element-static-box-style-1 .pbmit-ele-static-box {
  width: 19.2%;
  position: relative;
  z-index: 1;
  transition: 0.7s;
  padding: 0 !important;
  margin-bottom: 30px;
}

.pbmit-element-static-box-style-1 .pbmit-ele-static-box.pbmit-active {
  margin-right: 19.2% !important;
  transition: 0.9s;
}

.elementor-section:not(.elementor-section-full_width) .pbmit-element-column-three.pbmit-element-static-box-style-1 .pbmit-ele-static-box {
  width: 24%;
}

.elementor-section:not(.elementor-section-full_width) .pbmit-element-column-three.pbmit-element-static-box-style-1 .pbmit-ele-static-box.pbmit-active {
  margin-right: 24% !important;
}

.pbmit-element-static-box-style-1 .pbmit-ele-static-box .pbmit-bg-imgbox {
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0px;
  transition: 0.7s;
  height: 100%;
  width: auto;
  border-radius: 10px;
}

.pbmit-element-static-box-style-1 .pbmit-active .pbmit-post-inner .pbmit-bg-imgbox {
  border-radius: 10px 0 0 10px;
}

.pbmit-element-static-box-style-1 .pbmit-ele-static-box .pbmit-contentbox {
  position: relative;
  padding: 100px 80px;
  width: auto;
  z-index: 1;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: 0.3s;
  background-color: var(--pbmit-white-color);


}

.elementor-section:not(.elementor-section-full_width) .pbmit-element-column-three.pbmit-element-static-box-style-1 .pbmit-ele-static-box .pbmit-contentbox {
  padding: 80px 60px;
}

.pbmit-element-static-box-style-1 .pbmit-ele-static-box.pbmit-active .pbmit-contentbox {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
  border-radius: 0 10px 10px 0;
  display: block !important;
}

.pbmit-static-box-style-1 .pbmit-img {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.pbmit-static-box-style-1 .pbmit-bg-imgbox .pbminfotech-box-title {
  text-align: center;
  position: relative;
  top: 50%;
  left: 50%;
  font-size: 30px;
  line-height: 30px;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 50px;
  margin: 0;
  color: var(--pbmit-white-color);
  background-color: rgba(102, 33, 186, 0.9);
  -khtml-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: all 0.5s cubic-bezier(.645, .045, .355, 1);
  -o-transition: all 0.5s cubic-bezier(.645, .045, .355, 1);
  transition: all 0.5s cubic-bezier(.645, .045, .355, 1);
}

.pbmit-static-box-style-1.pbmit-active .pbmit-bg-imgbox .pbminfotech-box-title {
  opacity: 0;
  visibility: hidden;
}

.pbmit-static-box-style-1 .pbmit-bg-imgbox .pbminfotech-box-title a {
  color: var(--pbmit-white-color);
}

.pbmit-static-box-style-1 .pbmit-bg-imgbox .pbminfotech-box-title .pbminfotech-box-title {
  font-size: 22px;
  line-height: 32px;
}

.pbmit-static-box-style-1 .pbmit-contentbox-inner .pbminfotech-box-title h4,
.pbmit-static-box-style-1 .pbmit-bg-imgbox .pbminfotech-box-title .pbminfotech-box-title h4 {
  font-size: 24px;
  line-height: 34px;
  color: var(--pbmit-global-color);
}

.pbmit-static-box-style-1 .pbminfotech-static-box-number {
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  margin-bottom: 40px;
  color: var(--pbmit-global-color);
  font-family: var(--pbmit-heading-typography-font-family);
}

.pbmit-static-box-style-1 .pbmit-contentbox-inner .pbminfotech-box-title {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.pbmit-static-box-style-1 .pbmit-contentbox-inner .pbminfotech-static-box-desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.pbmit-static-box-style-1 .pbmit-ihbox-icon .pbmit-icon-type-icon {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 80px;
  line-height: 80px;
  color: rgba(102, 33, 186, 0.5);
}

.pbmit-static-box-style-1 .pbmit-ihbox-icon .pbmit-icon-type-svg img {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 60px;
  height: 60px;
}

.pbmit-element-static-box-style-1 {
  overflow-x: hidden;
}




/*============ =============*/

.marquee {
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 2px solid #000; */
  height: 28px;
  /* width: 455px; */
  /* border-radius: 22px; */
  /* box-shadow: 4px 4px 0 #000; */
  overflow: hidden;
  /* background: white; */
  white-space: nowrap;
}

.marquee--inner {
  display: block;
  width: 200%;
  position: absolute;
  animation: marquee 20s linear infinite;
  color: #000;
}

.marquee--inner:hover {
  animation-play-state: paused;
  color: #000000;
}

.marquee span {
  float: left;
  width: 50%;
  overflow: hidden;
}


.iughk_tri {
  background: #fddbba;
  color: #dd2608;
  padding: 0;
  display: flex;
}

a.ougiug_tri {
  white-space: nowrap;
  padding: 0;
  line-height: 12px;
  height: 14px;
  display: block;
  width: 100%;
  color: #fff;
  margin: 0 0;
}

.iugj_tri {
  display: inline-block;
  width: 100%;
}

.uyfuyf_tri {
  width: 15%;
  text-align: right;
  font-weight: 600;
  font-size: 18px;
  padding-right: 28px;
  background: #dd2608;
  color: #fff;
  padding: 3px 28px 4px 0;
}







/*--------recent-event-------*/
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.border-event {
  border-style: solid;
  /*z-index: -10;*/
  top: 30%;
  min-height: 300px;
  border-top-width: 3px;
  border-right-width: 3px;
  border-bottom-width: 3px;
  border-radius: 0.375rem;
  width: 79%;
  left: -5px;
}

@media (min-width: 768px) {
  .md\:border-gray-700 {
    border-color: rgb(55 65 81 / var(--tw-border-opacity));
  }
}

.border-webSecondary {
  border-color: #dd2608;
  top: 8.1rem;
  display: inline-block;
  padding: 2px;
  border-width: 1px;
  right: 1rem;
  border-style: solid;
}

.bg-webSecondary {
  background-color: #dd2608;
}

.recent-events-animate-up-down {
  border-radius: 0.375rem;
  animation: recent-events-animate-up-down 20s ease-in-out infinite;
  position: absolute;
  /*left: 0;*/
  top: 0;
}

@keyframes recent-events-animate-up-down {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, 150px);
  }
}

.recent-events-animate-up-down h4 {
  font-size: 18px;
  color: #fdcd30
}

.bg-webPrimary {
  background-color: #ffffff;
}

.bg-webPrimary h4 {
  font-size: 16px;
  color: #000000;
}

.bg-webPrimary a {
  color: #dd2608;
  font-size: 13px;
  font-weight: 600;
}

.line-clamp.line-two {
  -webkit-line-clamp: 2;
  font-size: 13px;
  color: #000000cc !important;
  margin-bottom: 10px;
}

.line-clamp.line-one {
  -webkit-line-clamp: 1;
}

.line-clamp {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.event-month {
  color: hsl(0deg 0% 100%);
  font-size: 12px !important;
  line-height: 0.75rem;
  margin-bottom: 0px
}

.event-date {
  font-size: 20px !important;
  margin-bottom: 0px;
  color: #fff;
  font-weight: 600;
  line-height: 26px;
}




/*=========== =============*/
.yhjhj_tri {
  background-image: url(../images/event_bg.png);
  background-blend-mode: overlay;
  background-color: #000000c4;
  background-attachment: fixed;
  width: 100%;
  padding: 40px 0px;
  background-size: cover;
  background-position: center;
}

section.yfytdt_tri {
  display: block;
  padding: 50px 0 70px;
  background: #f1f1f1;
}

h2.heading-blue.guyuyfu_tri {
  text-align: left;
  margin-bottom: 25px;
  position: relative;
}

.life01 h3 {
  color: #fff;
  font-size: 25px;
  margin-top: 0px;
  margin-bottom: 20px;
}

.life01 h4 {
  color: #fff;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 33px;
  position: relative;
  margin-bottom: 20px;
}

.life01 h4 span {
  color: #f4f5f9;
  margin: 0px 10px;
  font-size: 30px;
}

.life01 p {
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  line-height: 30px;
  max-width: 700px;
  margin-bottom: 0px;
}

.life01 h4 span.qtleft {
  margin-left: 0px;
}





/*========= news ========*/
.align-items-center {
  align-items: center !important;
  display: grid;
}

.circular-header {
  background: #dd2608;
  padding: 8px 10px;
  color: #fff;
  margin-bottom: 0px;
  font-size: 16px;
  margin-top: 0px;
  text-align: center;
}

.ideaboxNews {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #fff;
  color: #777;
  line-height: 1;
  font-size: 100%;
  position: relative;
}

.ideaboxNews>ul {
  padding: 0;
  margin: 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  list-style: none;
  display: block;
  overflow-y: scroll;
  height: 302px;
}

.ideaboxNews>ul li {
  display: block;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  padding-right: 15px;
  background: #fff;
}

.ideaboxNews>ul li>.in-image {
  width: 55px;
  height: 55px;
  border-top: 1px solid #e9e9e9;
  position: absolute;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 10px;
  box-shadow: 2px 2px 8px #2222221a;
  padding: -1px;
  /* justify-content: center; */
  align-items: center;
  box-shadow: 0px #fff;
}

.ideaboxNews>ul li>.in-content {
  width: 100%;
  height: 83px;
  border-bottom: 1px solid #E4E4E4;
  box-sizing: border-box;
  padding: 10px 0 10px 80px;
  position: relative;
}

.tt-b-day {
  font-size: 13px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  color: #fff;
  font-weight: 500;
  text-align: center;
  background: #dd2608;
  width: 100%;
  padding: 4px 5px 6px;
}

.tt-b-day-r,
.tt-b-amp {
  font-size: 20px;
  padding-top: 3px;
  color: #2d3d8c;
}

.ideaboxNews>ul li>.in-content>h2 {
  padding: 0;
  margin: 0;
  font-size: 13px;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
  color: #000;
  display: block;
  font-weight: 700;
  margin-bottom: 0;
  display: flex;
  -webkit-line-clamp: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.ideaboxNews>ul li>.in-content>div {
  padding: 0;
  margin: 0;
  font-size: 13px;
  height: 27px;
  display: block;
  margin-top: 0px;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
}

.ideaboxNews>ul li>.in-content>div p {
  margin-top: 2px;
  line-height: 20px;
  font-size: 13px;
}

.upc-event-box.relative {
  box-shadow: 0px 4px 8px 0 rgb(0 0 0 / 12%);
}

.school-circular {
  border: 1px solid #dd2608;
}

.ideaboxNews>ul::-webkit-scrollbar {
  width: 4px;
}

.ideaboxNews>ul::-webkit-scrollbar-thumb {
  background: #636363;
}

.gbbj_tri {
  display: flex;
}

.ukuhghykju_tri {
  width: 72%;
  padding-right: 20px;
}

.ukuykju_tri {
  width: 28%;
}

.guyguy_tri a {
  color: #dd2608;
  font-size: 12px;
  font-weight: 600;
  margin-top: 5px;
  display: block;
}

h2.heading-blue:after {
  position: absolute;
  width: 60px;
  height: 2px;
  background: #dd2608;
  content: '';
  top: 22px;
  margin-left: 6px;
}

/*======== topper ======*/
.single-teachers {
  text-align: center;
  background: #fff;
  padding: 0px;
  box-shadow: 0px 4px 8px 0 rgb(0 0 0 / 12%);
  position: relative;
  overflow: hidden;
}

section.ffgvhvv_tri {
  padding: 50px;
  background-image: url(../images/section.bg-1.png);
  background-size: 95%;
}

.jhguyg_tri {
  padding: 10px;
}

.teachers-content h3 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #ff9934;
  text-shadow: 2px 2px #000000;
}

.teachers-content {
  padding: 16px 5px 10px;
  position: absolute;
  bottom: -32px;
  background: #00000096;
  width: 100%;
  /* background: linear-gradient(#ffffff00, black); */
  width: 100%;
  right: auto;
  text-align: center;
  padding: 6px;
  margin: 0;
  z-index: 9;
  -webkit-transition: .5s all ease;
  -ms-transition: .5s all ease;
  -moz-transition: .5s all ease;
  -o-transition: .5s all ease;
  transition: .5s all ease;
}

.designation {
  font-size: 15px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 6px;
  text-shadow: 2px 2px #000000;
}

.single-teachers:hover .teachers-content {
  opacity: 1;
  bottom: 0px;
}

a {
  text-decoration: none !important
}


/*=======================*/

.feature-s4.boxed-filled,
.feature-s5.boxed-filled {
  margin-left: 0;
  margin-right: 0;
}

/*.feature-row:first-child, .feature-row.mgfix {
    margin-top: -60px;
}*/
.feature-s4.boxed-filled [class*='col-'],
.feature-s5.boxed-filled [class*='col-'] {
  padding: 0 1px;
}

.feature-s4.boxed-filled .feature,
.feature-s4.boxed-filled .fbox-photo,
.feature-s5.boxed-filled .feature,
.feature-s5.boxed-filled .fbox-photo {
  -ms-border-radius: 0px;
  border-radius: 0px;
}

.feature-s4 .feature,
.feature-s5 .feature {
  -ms-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
}

.feature {
  margin-top: 2px;
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  background: transparent;
}

.feature>a {
  display: block;
}

.new-a:link,
.new-a:visited {
  text-decoration: none;
}

.new-a {
  outline: 0;
  transition: all 0.5s;
  color: #1863AB;
}

.feature-s4.boxed-filled .feature,
.feature-s4.boxed-filled .fbox-photo,
.feature-s5.boxed-filled .feature,
.feature-s5.boxed-filled .fbox-photo {
  -ms-border-radius: 0px;
  border-radius: 0px;
}

.feature .fbox-photo:first-child,
.feature .fbox-content:first-child {
  margin-top: 0;
}

.feature .fbox-photo {
  -ms-border-radius: 6px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.feature .fbox-photo,
.feature .fbox-content {
  margin-top: 6px;
}

.feature-s4.off-text .feature .fbox-photo img,
.feature-s5.off-text .feature .fbox-photo img {
  transform: scale(1.01);
}

.feature-s4 .feature .fbox-photo img,
.feature-s5 .feature .fbox-photo img {
  transition: all 1.2s;
}

.feature .fbox-photo img {
  margin: 0;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.feature-s4.off-text .feature .fbox-over,
.feature-s5.off-text .feature .fbox-over {
  transform: translate(0, 100%);
  bottom: 50px;

}

.feature-s4 .feature .fbox-over,
.feature-s5 .feature .fbox-over {
  -ms-border-radius: 0px;
  border-radius: 0px;
}

.feature .fbox-over {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  color: #fff;
  padding: 13px 25px 25px 25px;
  transition: all .4s;
  -ms-border-radius: 0px 0px 6px 6px;
  border-radius: 0px 0px 6px 6px;
  background: #000000a8;
}

.title-new-one {
  color: inherit;
  font-size: 18px;
}

.feature-row .col-sm-4 .feature h3,
.feature-row .col-sm-4 .feature h4,
.feature-row .col-md-4 .feature h3,
.feature-row .col-md-4 .feature h4 {
  font-size: 1.8em;
  font-weight: 500;
}

.feature-s4.off-text .feature .fbox-over .fbox-content,
.feature-s5.off-text .feature .fbox-over .fbox-content {
  opacity: 0;
  transition: opacity .4s;
}

.feature .fbox-over .title+.fbox-content {
  margin-top: 10px;
  font-size: 1.2em;
  line-height: 1.2em;
}

.feature .fbox-over .btn {
  background-color: white;
  border-color: #fff;
  padding: 2px 12px 3px;
  color: #000000;
  /* text-transform: uppercase; */
  font-weight: 600;
  font-size: 13px;
  border-radius: 3px;
}

.btn {
  /* font-family: 'FuturaPT'; */
  /* font-size: 12px; */
  /* line-height: 1.4; */
  /* font-weight: 700; */
  /* padding: 12px 24px; */
  /* text-align: center; */
  /* text-transform: uppercase; */
  /* letter-spacing: 1px; */
  /* color: #fff; */
  /* border: 2px solid #1863AB; */
  /* background-color: #1863AB; */
  /* box-sizing: border-box; */
  /* transition: all 0.4s; */
  -ms-border-radius: 4px;
  /* border-radius: 4px; */
}

.feature-s4.off-text .feature:hover .fbox-over,
.feature-s4.off-text .feature>a:focus .fbox-over,
.feature-s5.off-text .feature:hover .fbox-over,
.feature-s5.off-text .feature>a:focus .fbox-over {
  transform: translate(0, 0);
  bottom: 0;
}

.feature-s4.off-text .feature:hover .fbox-over .fbox-content,
.feature-s4.off-text .feature>a:focus .fbox-over .fbox-content,
.feature-s5.off-text .feature:hover .fbox-over .fbox-content,
.feature-s5.off-text .feature>a:focus .fbox-over .fbox-content {
  opacity: 1;
  transition-delay: .1s;
}

.fbox-over:before {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #000000a8;
  position: absolute;
  /*bottom: 40px;*/
  top: -9px;
  left: 30px;
  content: "";
}

.overlay-blue {
  background: #dd26084f;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.life-at-icon-bg {
  position: absolute;
  right: 0;
  background: #dd2608;
  top: 0;
  bottom: 0;
  height: 100%;
  padding: 35px 20px;
  width: 260px;
  color: #fff;
  text-align: center;
  line-height: 18px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  font-weight: 600;
}

.fbox-content p {
  font-size: 14px;
  -webkit-line-clamp: 3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.newlogoclassssjdffgf {
  display: none;
}

.widthcontrol_log {
  display: none;
}

.displacenoneclasssadd {
  display: none !important;
}

.marquee span {
  width: 63%;
}



#owl-carousel2 .item {
  align-items: center;
  color: white;
  display: flex;
  flex-direction: column;
  height: 245px;
  width: 359px;
}

#owl-carousel2 .item a {
  width: 100%;

}

#owl-carousel2 .owl-carousel {
  position: relative;
}

#owl-carousel2 .owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  width: 50px;
  border: none;
  height: 50px;


  font: inherit;
}

#owl-carousel2 .owl-nav button {
  /* display:flex; */
  /* width:100%; */
  /* align-items:center; */
  position: absolute;
  top: 100px;
  /* justify-content:space-between; */
}

/*#owl-carousel5 .owl-nav{
    display:flex;
    width:100%;
   
    align-items:center;
    position:absolute;
    top:100px;
    justify-content:space-between;
}*/
#owl-carousel2 .owl-prev {
  left: -5px;
  background-color: white !important;
  color: black;
  /* color: #FFF; */
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

#owl-carousel2 .owl-theme .owl-nav [class*='owl-']:hover {
  color: gray;
}

#owl-carousel2 .owl-theme .owl-dots .owl-dot span {
  width: 0px;
  height: 0px;

}

#owl-carousel2 .owl-next {
  right: 0;
  background-color: white !important;
  color: black;
}

#owl-carousel2 .owl-prev span {
  font-size: 66px;
  margin: auto;
  /* padding: 20px 0; */
  padding-bottom: 19px;
}

#owl-carousel2 .owl-next span {
  font-size: 66px;
  margin: auto;
  /* padding: 20px 0; */
  padding-bottom: 19px;
}

#owl-carousel2 .owl-theme .owl-nav {

  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.contain {
  position: relative;
  width: 100%;
  /* padding: 0 20px; */
}

.contain h1 {

  padding-top: 14px;

  font-size: 26px;

  font-weight: normal;
  margin-top: 20px;
  padding-bottom: 10px;

}

#owl-carousel2 .owl-dots {
  height: 0;
}

img.new_add_img {}

img.new_add_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new_event {
  padding: 40px 0px;
}

section.new_event {
  border-top: 1px solid #8080801f;
  /*background-image: url('https://st5.depositphotos.com/1885147/67118/i/450/depositphotos_671183080-stock-photo-abstract-architectural-wallpaper-skyscraper-building.jpg');*/
  padding: 40px 0 50px;
  background-repeat: no-repeat;
  background-position: left;
  position: relative;
  background-size: cover;
  width: 100%;
}

.widthclassaddevent {
  height: 162px;
}

.border-webSecondary {
  top: 7.9rem;
}

.widthclassaddevent img {
  height: 100%;
}

.bg-webPrimary {
  padding-top: 18px !important;
}

.marquee--inner {
  display: block;
  width: 150%;
  position: absolute;
  animation: marqueegfhfh 10s linear infinite;
  color: #000;
}

.morque_txt {
  overflow: hidden;
  color: white;
  display: flex;
  justify-content: space-around;


}


@keyframes marqueegfhfh {
  0% {
    left: 0;
  }

  100% {
    left: -100%;
  }
}

.sdff {
  /* display: inline-block; */
  width: 100%;
}

.marqueegfhfh {
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 2px solid #000; */
  height: 30px;
  /* width: 455px; */
  /* border-radius: 22px; */
  /* box-shadow: 4px 4px 0 #000; */
  overflow: hidden;
  /* background: white; */
  white-space: nowrap;
}

.morque_txt {
  overflow: hidden;
  color: white;
  display: flex;
  justify-content: space-evenly;
  padding-top: 36px;
}

.morque_txt p {
  color: black !important;
}

img.tyfuy_tri {
  height: 496px;
  object-fit: cover;
}