*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100vw;
  overflow-x: hidden;
}

body {
  font-size: 16px;
  color: #222;
  font-family: "Roboto", sans-serif;
  font-display: swap;
  line-height: 1.6;
  width: 100vw;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.clock {
  width: 180px;
  height: 180px;
  background-color: #fff;
  border-radius: 100%;
  position: relative;
  perspective: 100px;
  display: inline-block;
  font-family: "Calibri", sans-serif;
  font-size: 18px;
  font-weight: bold;
}

.needle {
  width: 50%;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: translateY(-50%) rotateZ(-90deg);
  -ms-transform: translateY(-50%) rotateZ(-90deg);
  transform: translateY(-50%) rotateZ(-90deg);
  position: absolute;
  left: 50%;
  top: 50%;
}

.needle .hours,
.needle .minutes,
.needle .seconds {
  display: block;
  position: relative;
}

.needle .seconds {
  -webkit-transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.needle .minutes {
  -webkit-transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.needle .hours {
  -webkit-transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.needle .hours:empty:before,
.needle .minutes:empty:before,
.needle .seconds:empty:before {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.needle .seconds:empty:after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
}

.needle .hours:empty:before {
  width: 50%;
  background-color: Tomato;
}

.needle .hours:empty:after {
  background-color: Tomato;
}

.needle .minutes:empty:before {
  width: 70%;
  background-color: Tomato;
}

.needle .minutes:empty:after {
  background-color: Tomato;
}

.needle .seconds:empty:before {
  width: 90%;
  background-color: Tomato;
}

.needle .seconds:empty:after {
  background-color: Tomato;
}

.time-number {
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 50%;
}

.time-number li {
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  -webkit-transform-origin: bottom center;
  -moz-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
  -o-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
}

.time-number li>span {
  display: block;
  margin-top: 5px;
  color: transparent;
  z-index: -99999;
}

.time-number li:nth-child(1) {
  -webkit-transform: translateX(-50%) rotateZ(30deg);
  -ms-transform: translateX(-50%) rotateZ(30deg);
  transform: translateX(-50%) rotateZ(30deg);
}

.time-number li:nth-child(1)>span {
  -webkit-transform: rotateZ(-30deg);
  -ms-transform: rotateZ(-30deg);
  transform: rotateZ(-30deg);
}

.time-number li:nth-child(2) {
  -webkit-transform: translateX(-50%) rotateZ(60deg);
  -ms-transform: translateX(-50%) rotateZ(60deg);
  transform: translateX(-50%) rotateZ(60deg);
}

.time-number li:nth-child(2)>span {
  -webkit-transform: rotateZ(-60deg);
  -ms-transform: rotateZ(-60deg);
  transform: rotateZ(-60deg);
}

.time-number li:nth-child(3) {
  -webkit-transform: translateX(-50%) rotateZ(90deg);
  -ms-transform: translateX(-50%) rotateZ(90deg);
  transform: translateX(-50%) rotateZ(90deg);
}

.time-number li:nth-child(3)>span {
  -webkit-transform: rotateZ(-90deg);
  -ms-transform: rotateZ(-90deg);
  transform: rotateZ(-90deg);
}

.time-number li:nth-child(4) {
  -webkit-transform: translateX(-50%) rotateZ(120deg);
  -ms-transform: translateX(-50%) rotateZ(120deg);
  transform: translateX(-50%) rotateZ(120deg);
}

.time-number li:nth-child(4)>span {
  -webkit-transform: rotateZ(-120deg);
  -ms-transform: rotateZ(-120deg);
  transform: rotateZ(-120deg);
}

.time-number li:nth-child(5) {
  -webkit-transform: translateX(-50%) rotateZ(150deg);
  -ms-transform: translateX(-50%) rotateZ(150deg);
  transform: translateX(-50%) rotateZ(150deg);
}

.time-number li:nth-child(5)>span {
  -webkit-transform: rotateZ(-150deg);
  -ms-transform: rotateZ(-150deg);
  transform: rotateZ(-150deg);
}

.time-number li:nth-child(6) {
  -webkit-transform: translateX(-50%) rotateZ(180deg);
  -ms-transform: translateX(-50%) rotateZ(180deg);
  transform: translateX(-50%) rotateZ(180deg);
}

.time-number li:nth-child(6)>span {
  -webkit-transform: rotateZ(-180deg);
  -ms-transform: rotateZ(-180deg);
  transform: rotateZ(-180deg);
}

.time-number li:nth-child(7) {
  -webkit-transform: translateX(-50%) rotateZ(210deg);
  -ms-transform: translateX(-50%) rotateZ(210deg);
  transform: translateX(-50%) rotateZ(210deg);
}

.time-number li:nth-child(7)>span {
  -webkit-transform: rotateZ(-210deg);
  -ms-transform: rotateZ(-210deg);
  transform: rotateZ(-210deg);
}

.time-number li:nth-child(8) {
  -webkit-transform: translateX(-50%) rotateZ(240deg);
  -ms-transform: translateX(-50%) rotateZ(240deg);
  transform: translateX(-50%) rotateZ(240deg);
}

.time-number li:nth-child(8)>span {
  -webkit-transform: rotateZ(-240deg);
  -ms-transform: rotateZ(-240deg);
  transform: rotateZ(-240deg);
}

.time-number li:nth-child(9) {
  -webkit-transform: translateX(-50%) rotateZ(270deg);
  -ms-transform: translateX(-50%) rotateZ(270deg);
  transform: translateX(-50%) rotateZ(270deg);
}

.time-number li:nth-child(9)>span {
  -webkit-transform: rotateZ(-270deg);
  -ms-transform: rotateZ(-270deg);
  transform: rotateZ(-270deg);
}

.time-number li:nth-child(10) {
  -webkit-transform: translateX(-50%) rotateZ(300deg);
  -ms-transform: translateX(-50%) rotateZ(300deg);
  transform: translateX(-50%) rotateZ(300deg);
}

.time-number li:nth-child(10)>span {
  -webkit-transform: rotateZ(-300deg);
  -ms-transform: rotateZ(-300deg);
  transform: rotateZ(-300deg);
}

.time-number li:nth-child(11) {
  -webkit-transform: translateX(-50%) rotateZ(330deg);
  -ms-transform: translateX(-50%) rotateZ(330deg);
  transform: translateX(-50%) rotateZ(330deg);
}

.time-number li:nth-child(11)>span {
  -webkit-transform: rotateZ(-330deg);
  -ms-transform: rotateZ(-330deg);
  transform: rotateZ(-330deg);
}

.clock.ui-dodgerblue .seconds:before,
.clock.ui-dodgerblue .seconds:after,
.clock.ui-dodgerblue .minutes:before,
.clock.ui-dodgerblue .hours:before,
.clock.ui-tomato .seconds:before,
.clock.ui-tomato .seconds:after,
.clock.ui-tomato .minutes:before,
.clock.ui-tomato .hours:before,
.clock.ui-black .seconds:before,
.clock.ui-black .seconds:after,
.clock.ui-black .minutes:before,
.clock.ui-black .hours:before,
.clock.ui-awesome .seconds:before,
.clock.ui-awesome .seconds:after,
.clock.ui-awesome .minutes:before,
.clock.ui-awesome .hours:before {
  background-color: #000;
}

.clock.ui-dodgerblue .seconds:before {
  background-image: linear-gradient(to right,
      rgb(110, 110, 110),
      rgb(224, 224, 224));
}

.clock.ui-banana-yellow .seconds:before,
.clock.ui-banana-yellow .seconds:after,
.clock.ui-banana-yellow .minutes:before,
.clock.ui-banana-yellow .hours:before {
  background-color: #fff;
}

.clock.ui-dodgerblue .apm,
.clock.ui-tomato .apm,
.clock.ui-black .apm,
.clock.ui-awesome .apm {
  color: transparent;
  opacity: 0;
  z-index: -999;
}

.clock.ui-banana-yellow .apm {
  color: transparent;
  opacity: 0;
  z-index: -999;
}

.clock.ui-dodgerblue {
  background-image: transparent;
  color: #000;
}

.clock.ui-large {
  width: 400px;
  height: 400px;
  font-size: 40px;
}

.clock.ui-medium {
  width: 180px;
  height: 180px;
}

.clock.ui-small {
  width: 150px;
  height: 150px;
}

.wrapper {
  width: 80%;
  margin: auto;
  text-align: center;
}

.demo {
  display: inline-block;
  margin: 10px;
}

.demo h4 {
  margin-top: 20px;
  text-align: center;
  font-weight: 400;
  padding: 10px;
}

.demo h4 a {
  color: gray;
  font-size: 25px;
  font-weight: 400;
  font-family: "Calibri", sans-serif;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
  width: 100%;
}

.header-container .logo-box .logo {
  max-width: 120px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.header-container .logo-box .logo:hover {
  filter: grayscale(0%);
}

.header-container h3 a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  font-family: "Calibri", sans-serif;
}

.container-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-content: center;
}

.link-container {
  display: grid;
  place-content: center;
}

.link-container .links-box {
  list-style: none;
}

.link-container .links-box li {
  margin-bottom: 5px;
}

.heading.heading-group h3 {
  font-size: 20px;
}

.link-container .links-box li a {
  color: #222;
  font-size: 20px;
  font-weight: 400;
  font-family: "Calibri", sans-serif;
  transition: all 0.3s;
}

.last-link {
  display: none;
}

.group-menu {
  display: flex;
  align-items: center;
}

.heading h3 a {
  font-size: 20px;
}

.group-menu .canvas-menu {
  margin-left: 30px;
  display: inline-block;
  color: #000;
}

.group-menu .canvas-menu span {
  font-size: 30px;
}

.nav-logo {
  max-width: 120px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.nav-logo:hover {
  filter: grayscale(0%);
}

.side-nav-links-box {
  list-style: none;
  margin-top: 10px;
}

.side-nav-links-box li a {
  color: #fff;
  margin-bottom: 5px;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.37, 0, 1, -0.2);
  border-bottom: 1px solid transparent;
}

.side-nav-links-box li a:hover {
  border-bottom: 1px solid #fff;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-nav ul li a {
  margin: 0 20px;
  display: inline-block;
  color: #000;
  font-size: 17px;
  line-height: 2;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease-in;
}

.main-nav ul li a.active,
.main-nav ul li a:hover {
  border-bottom: 2px solid #222;
}

.section-content {
  padding-right: 5%;
}

.section-content p {
  text-align: justify;
}

.main {
  margin-top: 20px;
}

.vision-wrapper {
  margin-top: 30px;
}

.mission-wrapper {
  margin-top: 30px;
}

.vision-section p {
  text-align: justify;
}

.mission-content p {
  text-align: justify;
}

.leader-section {
  margin-top: 30px;
}

.leader-social-link ul {
  list-style: none;
  padding-left: 0;
}

.leader-social-link ul li {
  margin-bottom: 10px;
}

.leader-social-link:has(span) {
  font-weight: 500;
}

.leader-content {
  margin-top: 30px;
}

.leader-content p {
  text-align: justify;
}

.event-content-wrapper {
  margin: 30px 0;
}

.event-page-container p {
  text-align: justify;
}

.main {
  margin-bottom: 50px;
}

.footer-container {
  background-color: #e4e4e4;
  padding: 30px 0;
}

.f-logo {
  max-width: 90px;
}

.f-about {
  font-size: 14px;
  margin-top: 20px;
}

.f-links {
  list-style: none;
}

.f-links li a {
  font-size: 14px;
  display: inline-block;
  color: #222;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.f-links li a:hover {
  border-bottom: 1px solid #000;
}

.f-address h3 {
  font-size: 25px;
}

.f-address address {
  font-size: 15px;
  padding-left: 5%;
}

.f-border-right {
  border-right: 1px solid gray;
}

.f-bottom {
  background: gray;
  padding: 5px 0;
}

.f-bottom p {
  margin: 0;
  color: #000;
  font-size: 13px;
}

.f-bottom p a {
  color: #000;
}

.f-bottom-links {
  display: flex;
  justify-content: end;
}

.f-bottom-links ul {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.f-bottom-links ul li a img {
  width: 25px;
  height: 25px;
}

.f-bottom-links ul li {
  margin: 0 5px;
}

.f-bottom-links ul li a {
  font-size: 14px;
  color: #000;
}

.contact-box,
.contact-box a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-box .contact-box-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.contact-box .contact-box-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-box .contact-info p {
  text-align: center;
  margin: 0;
}

.contact-box .contact-info .contact-title p,
.contact-box .contact-info .contact-title p a {
  font-weight: bold;
  font-size: 16px;
  color: #222;
}

.contact-box .contact-info .contact-details p a {
  font-size: 16px;
  color: #222;
  font-weight: bold;
}

.contact-box .contact-info .contact-details p.address {
  font-size: 16px;
  color: #222;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 10px;
}

.text-justify {
  text-align: justify;
}

.achievements-content .pointer-box {
  margin-top: 20px;
}

.achievements-content .pointer-box li {
  margin-bottom: 10px;
  font-weight: 500;
}

.section-content .pointer-box {
  margin-top: 20px;
}

.section-content .pointer-box li {
  margin-bottom: 10px;
  font-weight: 500;
}

.section-content h2 {
  margin-bottom: 15px;
}

.client-logo-box {
  border: 1px solid lightgray;
}

.client-logo {
  margin-bottom: 50px;
}

#client-logo .owl-nav button.owl-next,
#client-logo .owl-nav button.owl-prev {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  color: #fff;
  background-color: #000;
}

#client-logo .owl-nav button.owl-next {
  right: -3.3%;
}

#client-logo .owl-nav button.owl-prev {
  left: -0.7%;
}

#client-logo .owl-nav button.owl-next:hover,
#client-logo .owl-nav button.owl-prev:hover {
  background-color: gray;
}

.event-link {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #545454;
  color: #000;
  padding: 10px 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.event-link:hover {
  background-color: #545454;
  color: #fff;
}

.event-link.active {
  background-color: #545454;
  color: #fff;
}

.event-container {
  margin-top: 50px;
}

.right-side-img {
  display: flex;
  justify-content: end;
}

.left-side-img {
  display: flex;
  justify-content: start;
}

.event-content-title {
  margin-bottom: 20px;
}

.event-content-box {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.event-content-box .event-content-link {
  border: 1px solid lightgray;
  display: inline-block;
  margin-right: 10px;
  color: #222;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.event-content-box .event-content-link:hover {
  background: #545454;
  color: #fff;
}

.event-container.right-content .event-content {
  padding-left: 10%;
}

.event-container.left-content .event-content {
  padding-right: 10%;
}

.event-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  column-gap: 20px;
}

.event-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #e4e4e4;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  border-radius: 10px;
}

.event-box-img {
  margin-bottom: 10px;
}

.event-box-title {
  min-height: 40px;
}

.event-box-title p {
  margin: 0;
  font-weight: 500;
  color: #000;
  text-align: center;
  line-height: 1.3;
  font-size: 15px;
}

.contact-form h4 {
  margin: 20px 0;
}

.form-field {
  margin-bottom: 10px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 5px 15px;
}

.form-field .form-submit-btn {
  width: 48%;
  padding: 5px 15px;
  background-color: #000;
  color: #fff;
  transition: all 0.3s ease;
}

.form-field .form-submit-btn:hover {
  background-color: #fff;
  color: #000;
}

.media-box-img {}

.media-box-img img {
  width: 95%;
  height: 100%;
  object-fit: contain;
}

.media-box-title {
  margin-bottom: 30px;
  margin-top: 50px;
  margin-left: 25px;
}

.media-box-title span {
  display: inline-block;
  padding: 10px 30px;
  background-color: #222;
  color: #fff;
  border-radius: 10px;
}

.feature-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.feature-img img {
  width: 50%;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.feature-img img:hover {
  filter: grayscale(0);
}

.feature-section {
  padding: 50px 0;
  background: #ebebeb;
}

.feature-section h2 {
  margin-bottom: 30px;
}

.heading-group {
  display: flex;
}

.heading-group h3 {
  margin-right: 20px;
}

.section-group-content {
  margin-bottom: 20px;
}

.career-btn {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.career-btn a {
  display: inline-block;
  padding: 10px 30px;
  background: #a3a3a3;
  color: #000;
  border-radius: 50px;
  font-weight: bold;
}

.feature-img.last-logo {
  filter: brightness(0);
}

.about-section {
  display: flex;
  align-items: center;
}

.about-para {
  line-height: 2;
}

.about-para p {
  padding-right: 5%;
}

.page-title {
  margin-bottom: 50px;
}

.patrons .section-img img {
  padding: 10px;
  border: 1px solid lightgray;
}

.patrons img {
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.patrons img:hover {
  filter: grayscale(0);
}

.patrons-section {
  margin-bottom: 50px;
}

.patrons-section .row {
  display: flex;
  justify-content: center;
}

.ttm-box-bottom-content .featured-title h5 a {
  background-color: #000;
  color: #fff;
  width: 100%;
  display: block;
  padding: 5px 0;
  text-align: center;
  font-weight: 400;
}

.featured-thumbnail {
  transition: all 0.3s;
  overflow: hidden;
}

.featured-thumbnail img {
  transition: all 0.3s;
  outline: 1px solid #fff;
  outline-offset: -10px;
  filter: grayscale(100%);
}

.featured-thumbnail img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
  outline-offset: -35px;
}

.featured-desc p {
  font-size: 15px;
  text-align: justify;
}

#services-slide .owl-nav {
  position: absolute;
  top: -70px;
  right: 0;
}

#services-slide .owl-nav button.owl-next,
#services-slide .owl-nav button.owl-prev {
  background-color: #000;
  width: 40px;
  height: 40px;
  color: #fff;
  margin: 0;
  border-radius: 0;
}

#services-slide .owl-nav button.owl-next {
  margin-left: 1px;
}

#services-slide .owl-nav button.owl-next:hover,
#services-slide .owl-nav button.owl-prev:hover {
  background-color: gray;
}

.testimonials-section {
  margin-top: 50px;
}

.testimonials-section h1 {
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-section .testimonial-quote {
  font-size: 16px;
  margin-bottom: 35px;
  padding-bottom: 20px;
}

.testimonials-section .testimonial-quote:not(:last-child) {
  border-bottom: 1px solid lightgray;
}

.testimonials-section .testimonial-quote blockquote {
  border: 0;
  margin: 0;
  padding: 0;
  background: none;
  color: gray;
  font-size: 1.5em;
  line-height: 1.4 !important;
  margin: 0;
  position: relative;
  text-shadow: 0 1px white;
  z-index: 600;
}

.testimonials-section .testimonial-quote blockquote p {
  color: #75808a;
  line-height: 1.4 !important;
  text-align: justify;
  padding-left: 60px;
}

.testimonials-section .testimonial-quote blockquote p:first-child:before {
  content: "\201C";
  color: #3f3f3f;
  font-size: 7.5em;
  font-weight: 700;
  opacity: 0.3;
  position: absolute;
  top: -0.4em;
  left: -0.2em;
  text-shadow: none;
  z-index: -300;
  transition: all 0.3s ease;
  font-family: Georgia, serif;
}

.testimonials-section .testimonial-quote blockquote p:first-child:hover:before {
  color: #0080c5;
}

.testimonials-section .testimonial-quote img {
  border-radius: 50%;
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  top: -0.2em;
  left: 0;
}

.testimonials-section .testimonial-quote cite {
  color: gray;
  display: block;
  font-size: 0.8em;
}

.testimonials-section .testimonial-quote cite span {
  color: #5e5e5e;
  font-size: 1em;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 1px white;
}

.testimonials-section .testimonial-quote {
  position: relative;
}

.testimonials-section .testimonial-quote.right .quote-container {
  padding-left: 0;
  padding-right: 160px;
}

.testimonials-section .testimonial-quote.right img {
  left: auto;
  right: 0;
}

.testimonials-section .testimonial-quote.right cite {
  text-align: right;
}

.blog-container img {
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.blog-container img:hover {
  filter: grayscale(0%);
}

.blog-content-wrapper {
  margin-top: 10px;
}

.blog-btn a {
  display: inline-block;
  padding: 8px 20px;
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.blog-btn a:hover {
  background-color: #fff;
  color: #000;
}

.single-blog {
  margin-bottom: 30px;
  border: 1px solid lightgray;
}

.blog-content-wrapper {
  padding: 10px;
}

.blog-sidebar-widget {
  border: 1px solid lightgray;
  margin-bottom: 20px;
}

.blog-sidebar-title h3 {
  background-color: gray;
  padding: 10px;
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
}

.recent-post-lists {
  list-style: none;
  padding: 0;
}

.recent-post-box a {
  display: flex;
  justify-content: space-between;
  margin: 10px;
}

.recent-post-box a .recent-post-img {
  width: 100px;
  margin-right: 10px;
}

.recent-post-box a .recent-post-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.categories-list ul {
  list-style: none;
  padding: 0;
}

.categories-list ul li p {
  padding: 0 10px;
  padding-top: 10px;
}

.download-list {
  margin-top: 50px;
}

.download-list li {
  margin-bottom: 15px;
}

.download-list li a {
  color: #000;
}

.gallery-list {
  margin-top: 50px;
}

.gallery-list li {
  margin-bottom: 15px;
}

.gallery-list li a {
  color: #000;
}

.gallery-link {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
}

.gallery-link li a {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid lightgray;
}

.gallery-link li.active a {
  background-color: #222;
  color: #fff;
}

.gallery-container {
  margin-bottom: 25px;
  border-radius: 10px;
  background: #ccc;
}

.gallery-container img {
  /* filter: grayscale(100%); */
  transition: all 0.3s ease;
  border-radius: 10px;
  padding: 10px;
}

/* 
.gallery-container img:hover {
  filter: grayscale(0%);
} */

.gallery-tabs {
  margin-bottom: 50px;
}

.nav-tabs .nav-link {
  display: block;
  border: 1px solid lightgray;
  border-radius: 0;
  margin-right: 5px;
}

.nav-tabs .nav-link.active {
  background-color: #222;
  color: #fff;
}

.event-calender-box {
  box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 170px;
  margin-bottom: 20px;
  background: url(../img/calendar.jpg);
  background-size: 120%;
}

.event-calender-title h2 {
  font-size: 18px;
  text-align: center;
}

.event-calender-date {
  margin: 10px 0;
}

.event-calender-location p {
  margin: 0;
}

.publications-box {
  border: 1px solid lightgray;
  padding: 10px;
  margin-bottom: 20px;
}

.publications-img {
  display: flex;
  justify-content: center;
  border: 1px solid lightgray;
}

.publications-img img {
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.publications-img img:hover {
  filter: grayscale(0%);
}

.publication-content {
  margin-top: 10px;
}

.publications-title h4 a {
  color: #000;
  font-size: 20px;
}

.publication-des p {
  font-size: 15px;
  text-align: justify;
  min-height: 100px;
  max-height: 100px;
  overflow-y: auto;
  padding-right: 10px;
}

.publication-des p::-webkit-scrollbar {
  width: 4px;
}

.publication-des p::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.publication-des p::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

.download-box {
  background-color: #ebecf0;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 20px;
}

.download-img {
  margin-bottom: 10px;
}

.download-img img {
  border-radius: 10px;
}

.download-box .downlaod-title h4 {
  font-size: 18px;
  text-align: center;
  color: #000;
}

.award-section {
  margin: 20px 0;
}

.award-section .award-section-title {
  margin-bottom: 30px;
  background-color: rgba(189, 189, 189, 0.8);
  padding: 10px;
}

.award-section-pointer li {
  margin-bottom: 10px;
  background-image: linear-gradient(to right,
      rgba(228, 228, 228, 0.8),
      transparent);
  padding: 3px 5px;
  transition: all 0.3s ease;
}

.award-section-pointer li:hover {
  transform: scale(1.02);
}

.hbtn-group {
  display: flex;
  align-items: center;
}

.hbtn-group .upcoming-btn {
  margin-left: 20px;
}

.hbtn-group .upcoming-btn a {
  color: #000;
}

.contact-container {
  margin: 20px 0;
}

.contact-heading h2 {
  font-weight: 400;
  color: #3e3930;
  font-size: 50px;
  line-height: 1.116em;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.form-container .form-field {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin: 0 0 20px;
  padding: 13px 25px;
  font-family: inherit;
  font-size: 15px;
  line-height: 24px;
  font-weight: inherit;
  color: #222;
  background-color: transparent;
  border: 1px solid gray;
  border-radius: 0;
  outline: 0;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-transition: color 0.2s ease-out, background-color 0.2s ease-out,
    border-color 0.2s ease-out;
  -o-transition: color 0.2s ease-out, background-color 0.2s ease-out,
    border-color 0.2s ease-out;
  transition: color 0.2s ease-out, background-color 0.2s ease-out,
    border-color 0.2s ease-out;
}

.form-container .form-field:focus {
  box-shadow: none;
}

.form-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: auto;
  margin: 0;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  line-height: 3.333em;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out,
    border-color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out,
    border-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out,
    border-color 0.3s ease-in-out;
  padding: 5px 38px;
  color: #696359;
  background-color: transparent;
  border: 1px solid #bdb5aa;
  cursor: pointer;
}

.form-btn:hover {
  background-color: #222;
  color: #fff;
  border-color: #222;
}

.section-img img {
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.section-img img:hover {
  transition: all 0.3s ease;
  filter: grayscale(0%);
}

.video-box {
  box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
  padding: 20px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 25px;
  background: #000;
  outline: 1px solid #fff;
  outline-offset: -5px;
  position: relative;
}

.video-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-img img {
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.video-img img:hover {
  filter: grayscale(0%);
}

.video-title {
  margin-top: 10px;
}

.video-title h2 {
  font-size: 16px;
  color: #000;
  text-align: center;
  color: #fff;
}

.youtube-play-btn {
  width: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.youtube-play-btn:hover {
  filter: brightness(0) invert(1);
}

.print-media-box {
  border: 1px solid lightgrey;
  box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  box-shadow: -10px 10px 5px rgb(0 0 0 / 60%);
  -moz-box-shadow: -10px 10px 5px rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: -10px 10px 5px rgb(0 0 0 / 60%);
  -o-box-shadow: -10px 10px 5px rgba(0, 0, 0, 0.6);
  border-radius: 5px 5px 25px 25px;
}

.media-section-title {
  background-color: lightgray;
  margin: 15px 0;
  padding: 5px 10px;
}

.media-link-list li a {
  color: #000;
  display: inline-block;
}

.media-link-list li {
  margin: 15px 0;
}

/* .media-link-list {
  list-style: none;
} */
/* .media-link-list li {
  margin: 15px 0;
  counter-increment: num;
  position: relative;
}
.media-link-list li::before {
  content: counter(num);
  position: absolute;
  top: 0;
  left: -50px;
  text-align: right;
} */
.media-link-list li:nth-child(odd) {
  background-color: #c5c4c4;
}

.newsroom-pointer {
  list-style: square;
}

.newsroom-pointer li {
  margin-bottom: 20px;
}

.newsroom-pointer li a {
  color: #000;
}

.blog-des p {
  text-align: justify;
  margin-bottom: 15px;
}

.gallery-name {
  background-color: #000;
  color: #fff;
  padding: 5px 0;
  margin: 0;
  text-align: center !important;
  display: block;
}

.faq-section .accordion-button {
  box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #000;
}

.faq-section h2 {
  margin-bottom: 0;
}

.faq-section .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.policy-section {
  margin-bottom: 30px;
}

.policy-section h4 {
  margin-bottom: 15px;
  font-size: 20px;
}

.policy-section p {
  text-align: justify;
  font-size: 15px;
  margin-bottom: 10px;
}

.bookatable {
  box-shadow: 5px 5px 25px #e1e1e1;
  box-shadow: 0 12px 18px -6px rgb(0 0 0 / 30%);
  padding: 30px 25px 65px 25px;
  background-image: linear-gradient(180deg, #f2f2f2 0%, #c9c9c9 100%);
  margin-bottom: 60px;
  border-radius: 20px;
}

.bookhead {
  margin-bottom: 30px;
}

.bookbg {
  background-image: linear-gradient(180deg, #ffe100 0%, #ba8500 100%);
}

.mt-15 {
  margin-top: 15px !important;
}

.bookatable li {
  list-style: none;
}

.booktable {
  box-sizing: border-box;
  word-wrap: break-word;
  padding: 12px 30px;
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 50px;
  max-width: 180px;
}

.booktable:hover {
  border: 2px solid #ffffff;
  color: #910e0e;
  background-color: #ffffff;
}

.bprice {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 24px;
  color: #666;
  letter-spacing: 0;
}

.event-link.active {
  background: #545454;
}

.pointer-box li {
  margin-bottom: 10px;
  text-align: justify;
}

.link-group {
  display: flex;
  align-items: center;
  list-style: none;
}

.link-group li {
  margin-right: 10px;
}

.link-group li a {
  color: #000;
  display: inline-block;
  border: 1px solid gray;
  padding: 5px 10px;
  transition: all 0.3s ease;
}

.link-group li a:hover {
  background-color: #000;
  color: #fff;
}

.testimonial-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 125px;
  margin-top: 100px;
}

.testimonial-user-img {
  width: 100px;
  height: 100px;
  background-color: #bdbdbf;
  padding: 10px;
  border-radius: 50%;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 88;
}

.testimonial-user-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.testimonial-content-box {
  box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
  padding: 80px 10px 50px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
}

.testimonial-content-box::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  border-top: 110px solid #fff;
  border-right: 156px solid transparent;
  border-bottom: 156px solid transparent;
  border-left: 156px solid transparent;
  filter: drop-shadow(rgba(0, 0, 0, 0.35) 0 5px 15px);
  clip-path: inset(0px -10px -10px -10px);
}

.testimonial-mgs {
  min-height: 150px;
  max-height: 150px;
  overflow-y: auto;
  padding: 0 20px;
}

.testimonial-mgs p {
  font-size: 15px;
}

.testimonial-mgs p:first-child {
  position: relative;
}

.testimonial-mgs p:first-child:before {
  content: "\201C";
  color: #3f3f3f;
  font-size: 6.5em;
  font-weight: 700;
  opacity: 0.3;
  position: absolute;
  top: -0.4em;
  left: -0.2em;
  text-shadow: none;
  z-index: 99;
  font-family: Georgia, serif;
}

.testimonial-mgs::-webkit-scrollbar {
  width: 3px;
}

.testimonial-mgs::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.testimonial-mgs::-webkit-scrollbar-thumb {
  background-color: darkgrey;
}

.testimonials-info {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2222;
  width: 100%;
}

.testimonials-info .testimonial-name {
  border-bottom: 1px solid lightgray;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 5px;
}

.testimonials-info .testimonial-name p {
  text-align: center;
  margin-bottom: 5px;
}

.testimonials-info .testimonial-designation p {
  text-align: center;
}

#testimonial-slide .owl-nav button.owl-next,
#testimonial-slide .owl-nav button.owl-prev {
  width: 40px;
  height: 40px;
  color: #fff;
  background-color: #000;
}

#testimonial-slide .owl-nav button.owl-next {
  right: -3.3%;
}

#testimonial-slide .owl-nav button.owl-prev {
  left: -0.7%;
}

#testimonial-slide .owl-nav button.owl-next:hover,
#testimonial-slide .owl-nav button.owl-prev:hover {
  background-color: gray;
}

/* .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.my-float {
  margin-top: 16px;
} */

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 50px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: grid;
  place-content: center;
}

.float svg {
  width: 40px;
  height: 40px;
  fill: #fff;
}

.section-content.pr-0 {
  padding-right: 0 !important;
}

.demo {
  margin-left: 5px;
}

.leader-content,
.leader-section,
.vision-wrapper,
.mission-wrapper {
  margin-top: 0px;
}

.f-address address {
  padding-left: 0;
}

.f-address address a {
  color: #000;
}

.video-box {
  background: url(../img/media/electronic-media/tv-bg.webp) #000;
  background-size: 100%;
  margin-bottom: 55px;
}

.video-img {
  display: block;
  margin: 15px;
}

.video-img img {
  height: 190px;
  width: 76%;
  border-radius: 35px;
  margin-left: 10px;
}

.youtube-play-btn {
  left: 40%;
}

.video-title h2 {
  color: #000;
  position: absolute;
  bottom: -50px;
}

/* Changes CSS */

.event-btn {
  border: 1px solid lightgray;
  display: inline-block;
  margin-right: 10px;
  color: #222;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.event-btn:hover {
  background: #545454;
  color: #fff;
}

.d-none {
  display: none;
}

/* Singapore Conference Page */

.banner__img {
  width: 100%;
  object-fit: cover;
  margin-bottom: 50px;
}

.singapore__img {
  width: 100%;
}

.singapore__img--responsive {
  display: none;
}

.icon-box {
  width: 60px;
  height: 60px;
  background-color: #eee;
  border-radius: 50%;
  position: absolute;
  top: -15%;
  left: -5%;
  margin-bottom: 20px;
  align-items: center;
}

.singapore__icon {
  width: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.singapore__para {
  text-align: justify;
}

.singapore {
  display: grid;
  place-content: center;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
  margin: 0 auto;
  width: 80%;
  gap: 30px;
  margin-bottom: 50px;
}

.singapore__heading--big {
  font-size: 24px;
  margin-bottom: 30px;
  text-decoration: underline;
  text-underline-offset: 12px;
  color: #3e4095;
}

.singapore-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
  width: 80%;
  margin: 0 auto;
  gap: 50px;
  margin-bottom: 50px;
}

.singapore-point {
  position: relative;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 20px 35px;
}

.singapore-points .singapore__heading {
  color: #3e4095;
  margin-bottom: 20px;
}

.topics {
  width: 100%;
  margin-bottom: 50px;
  background: url("../../img/bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 5% 20%;
}

.topic__icon img {
  width: 16px;
  filter: brightness(0) invert(1);
}

.topic__para {
  font-size: 20px;
  margin-bottom: 30px;
}

.topic {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

@media (max-width: 1300px) {
  .singapore__img--responsive {
    display: block;
    width: 100%;
  }

  .singapore__img {
    display: none;
  }
}

.cards {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 100px;
}

.card__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
  gap: 45px;
  margin-bottom: 50px;
}

.card__icon {
  width: 48px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 15px;
}

/* .card__icon--first {
  filter: brightness(0) invert(1);
  width: 48px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 15px;
} */

.card {
  background-color: #f8f8f8;
  padding: 20px 40px;
  text-align: center;
  border: none;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.card:hover {
  background-color: #3e4095;
  color: #fff;
  transform: translateY(-4%);
}

.card:hover .card__heading {
  color: #fff;
}

.card:hover .card__icon {
  filter: brightness(0) invert(1);
}

/* .card__first {
  background-color: #3e4095;
  color: #fff;
  padding: 20px 40px;
  text-align: center;
  border: none;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: flex;
  flex-direction: column;
} */

.card__heading {
  color: #3e4095;
}

/* .card__heading--first {
  color: #fff
} */

/* .card__first:hover {
  background-color: #f8f8f8;
  color: inherit;
}

.card__first:hover .card__heading--first {
  color: #3e4095;
}

.card__first:hover .card__icon--first {
  filter: none;
}

.card__first:hover ~ .card  {
  background-color: #3e4095;
  color: #fff;
}

.card__first:hover ~ .card .card__heading {
  color: #fff;
}

.card__first:hover ~ .card .card__icon {
  filter: brightness(0) invert(1);
} */

.gallery {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  gap: 20px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 100px;
}

.gallery__heading {
  font-size: 32px;
  font-weight: bold;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
  color: #3e4095;
}

.gallery__heading::before {
  position: absolute;
  left: 50%;
  top: 50px;
  height: 1px;
  width: 50px;
  margin-left: -25px;
  background-color: #3e4095;
  content: "";
}

.gallery__image {
  width: 23%;
  margin-bottom: 20px;
}

.gallery__image img {
  width: 100%;
}

.speakers {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
  row-gap: 30px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 100px;
}

.speakers__heading {
  margin-bottom: 50px;
  text-align: center;
  color: #3e4095;
  font-weight: bold;
}

.heading__part {
  position: relative;
}

.speakers__heading::before {
  position: absolute;
  left: 50%;
  top: 50px;
  height: 1px;
  width: 50px;
  margin-left: -25px;
  background-color: #3e4095;
  content: "";
}

.speaker {
  text-align: center;
}

.speaker__img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  padding: 6px;
  background: linear-gradient(to right, rgb(45 124 152), rgba(0, 175, 239, 1));
  margin-bottom: 30px;
}

.speaker__name {
  color: #3e4095;
  font-weight: bold;
}

/* @keyframes grow-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.p-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #3e4095, #00afef);
  animation: grow-progress auto linear;
  animation-timeline: scroll();
  transform-origin: left;
  z-index: 1;
} */

.honor-section {
  /* width: 80%; */
  margin: 0 auto;
  margin-bottom: 100px;
  background: #0d143e;
  padding: 50px 0;
}

.honor-section-wrapper {
  display: flex;
  width: 80%;
  margin: 0 auto;
  align-content: center;
  height: 100%;
}

.honor-img-section {
  position: relative;
  width: 30%;
  margin-right: 80px;
}

.honor-img-section img {
  border: 2px solid #fff;
  outline: 2px solid #fff;
  outline-offset: -10px;
  transition: all 0.3s ease;
  filter: grayscale(1);
}

.honor-img-section img:hover {
  border-color: #3e4095;
  filter: grayscale(0);
}

.honor-img-section .honor-name {
  /* background-image: linear-gradient(to bottom, transparent, black); */
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  width: 100%;
}

.honor-img-section .honor-name h3 {
  color: #fff;
  text-align: center;
}

.honor-img-section {
  display: grid;
  place-content: center;
}

.honor-content-section {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.honor-content-section p {
  text-align: justify;
  color: #fff;
}

.honor-content-section h2 {
  color: #fff;
  font-weight: bold;
}

.honor-content-section p.year {
  font-style: italic;
  color: #fff;
}

.honor-content-section h4 {
  color: #fff;
}

.honor-section .speakers__heading {
  color: #fff;
}

.honor-section .speakers__heading::before {
  background-color: #fff;
}


.about-content h3.heading {
  color: #3e4095;
}

.about-content h6.sub-heading {
  color: #3d4499;
}

.about-section.bg-1 {
  background-color: #e9efef;
  padding: 50px 0;
}

.testimonial-section {
  padding: 50px 0;
}

.testimonial-card-content .testimonial-card-mgs {
  margin-bottom: 20px;
}

.testimonial-card-content .testimonial-card-mgs h3 {
  color: #2172D8;
}

.testimonial-card-content .testimonial-card-name h5 {
  color: #0C3B55;
  font-weight: bold;
}

.testimonial-card-content .testimonial-card-designation p {
  color: #707070;
}

.testimonial-card-content {
  position: relative;
  padding-top: 20px;
  padding-left: 20px;
}

.testimonial-card-content::before {
  content: url(../img/testimonial/quotation-marks.png);
  position: absolute;
  top: -20px;
  left: -20px;
}

#testimonial-mgs .owl-nav {
  position: absolute;
  right: -50px;
  bottom: 50px;
}

#testimonial-mgs .owl-nav button.owl-next,
#testimonial-mgs .owl-nav button.owl-prev {
  background-color: #2172D8;
  color: #fff;
  border: none;
  padding: 0 !important;
  font: inherit;
  width: 50px;
  height: 50px;
  border-radius: 50%;

}

#testimonial-mgs .owl-nav button.owl-next i,
#testimonial-mgs .owl-nav button.owl-prev i {
  color: #fff;
}

.section-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 75%;
  margin: 0 auto;
  margin-bottom: 20px;
}

.section-title h1 {
  color: #3e4095; font-size: 30px; font-weight:600;
}

.section-title p {
  text-align: center;
}

.featured-events-card {
  background-color: #002e66;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;

}

.featured-events-card .featured-events-content {
  padding: 5%;
}

.featured-events-card .featured-events-content .featured-events-date {
  /* max-width: 60%; */
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
}

.featured-events-card .featured-events-content .featured-events-date p {
  color: #fff;
  margin-bottom: 3px;
}

.featured-events-card .featured-events-content .featured-events-heading h3 {
  color: #fff;
  font-size: 20px;
}

.featured-events-card .featured-events-content .featured-events-para p {
  color: #fff;
  font-size: 16px;
}

.ticket-card {
  display: flex; background: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 7% 2%; 
}
.ticket-card h6,p{text-align: center;}
.tickdate{background: #32326a;
    font-size: 14px;
    padding: 0 15px;
    border-radius: 10px;
    color: #fff; margin-bottom: 0;}
.pointer-list li{list-style: none;}
.pointer-list {
  margin: 15px 0;
}

.about-stats-box {
  display: flex;
  align-items: center;
  padding: 5%;
}

.about-stats-box.bg-1 {
  background-color: #002e66;
}

.about-stats-box.bg-2 {
  background-color: #366600;
}

.about-stats-box.bg-3 {
  background-color: #662000;
}

.about-stats-box .about-stats-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  background-color: #fff;
  font-size: 25px;
}

.about-stats-box .about-stats-info {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-stats-box .about-stats-info .about-stats-num h2 {
  color: #fff;
  margin: 0;
}

.about-stats-box .about-stats-info .about-stats-text p {
  color: #fff;
  margin: 0;
  text-transform: uppercase;
}