html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Raleway", sans-serif;
}

.section-padding {
  padding: 60px 0px;
}

.section-title {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: normal;
  color: #7a0000;
  font-family: "Space Grotesk", sans-serif;
}

.common-para {
  margin: 16px 0px 0px;
  font-size: 18px;
  font-weight: 500;
  text-align: justify;
}

.main-page {
  padding-top: 84px;
}

.common-button {
  display: inline-block;
  color: #fff;
  background-color: #7a0000;
  font-size: 16px;
  text-transform: capitalize;
  text-decoration: none;
  padding: 10px 24px;
  margin-top: 40px;
  transition: all 0.3s ease;
}
.common-button:hover {
  color: #fff;
  scale: 0.95;
}
.common-button.bg-white {
  background-color: #fff;
  color: #7a0000;
}

.bg-gray {
  background-color: rgba(245, 245, 245, 0.6);
}

.pos-sticky {
  position: sticky;
  top: 90px;
  height: 100%;
}

.overlay {
  position: relative;
}
.overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.scroll-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scroll-section {
  height: calc(100vh - 78px);
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
}

header {
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
header .logo img {
  width: auto;
  height: 64px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 10px 0px;
}
header nav ul {
  text-align: right;
  margin-bottom: 0;
}
header nav ul li {
  display: inline-block;
  list-style: none;
  padding: 20px;
  position: relative;
}
header nav ul li a {
  display: inline-block;
  text-decoration: none;
  color: #404040;
}
header nav ul li a:hover {
  color: #7a0000;
}
header nav ul li a.active {
  color: #7a0000;
  font-weight: 500;
}
header nav ul li a .dropdown-icon {
  margin-left: 6px;
  font-size: 16px;
  transition: transform 0.3s ease;
}
header nav ul li:hover > a .dropdown-icon {
  transform: rotate(180deg);
}
header nav ul li.menu-item-has-children a {
  position: relative;
}
header nav ul li.menu-item-has-children a::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0d7";
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.3s ease;
}
header nav ul li.menu-item-has-children:hover a::after {
  transform: rotate(180deg);
}
header nav ul li.menu-item-has-children .sub-menu li a::after {
  display: none;
}
header nav ul li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 0;
  margin: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
header nav ul li .sub-menu li {
  display: block;
  padding: 10px 20px;
}
header nav ul li .sub-menu li a {
  color: #404040;
  white-space: nowrap;
}
header nav ul li .sub-menu li a:hover {
  color: #7a0000;
}
header nav ul li:hover .sub-menu {
  display: block;
}

.services-section {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.services-section .services {
  overflow: hidden;
}
.services-section .services a {
  text-decoration: none;
}
.services-section .services .service {
  border: 4px solid #7a0000;
  padding: 30px;
  min-height: 220px;
}
.services-section .services .service h3 {
  font-size: 22px;
  color: #000;
}
.services-section .services .service p {
  margin-bottom: 0px;
  font-size: 16px;
  color: #7a0000;
  text-align: justify;
}
.services-section .services .service.red-box {
  background-color: #7a0000;
}
.services-section .services .service.red-box h3,
.services-section .services .service.red-box p {
  color: #fff;
}
.services-section .services.service-page .service {
  min-height: 247px;
  transition: all 0.3s ease;
}
.services-section .services.service-page .service.text-black p {
  color: #000;
}
.services-section .services.service-page .service:hover {
  scale: 0.99;
}

.about-us--section {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding-bottom: 121px;
}
.about-us--section.section-padding {
  padding-top: 30px;
}
.about-us--section .about-content {
  text-align: center;
}
.about-us--section .about-content .common-para {
  text-align: justify;
}
.about-us--section .image-box img {
  width: 100%;
  height: auto;
  aspect-ratio: 6/4;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.about-us--section .image-box img.as-6-7 {
  aspect-ratio: 6/7;
}

.section-banner-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 10/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.our-value--section {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.our-value--section .value-points {
  overflow: hidden;
}
.our-value--section .value-points li {
  font-size: 18px;
  text-align: justify;
}
.our-value--section .value-points li:not(:last-child) {
  margin-bottom: 16px;
}
.our-value--section .value-points li::marker,
.our-value--section .value-points li b {
  color: #7a0000;
}

.thinking-slider-box {
  height: 100%;
  display: grid;
  place-items: center;
}

.home-footer {
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 20px 0px;
}
.home-footer p {
  margin-bottom: 0;
}
.home-footer .terms-item ul {
  padding-left: 0px;
  padding-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  margin-bottom: 0;
}
.home-footer .terms-item ul li {
  list-style: none;
  font-size: 18px;
  color: #000;
}
.home-footer .terms-item ul li a {
  color: #212529;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.home-footer .terms-item ul li a:hover {
  color: #7a0000;
}

.our-thinking--section {
  margin-bottom: 100px;
  width: 100%;
}
.our-thinking--section .section-title {
  text-align: center;
  margin-bottom: 40px;
}
.our-thinking--section .think-box {
  padding: 20px;
  min-height: 290px;
  border: 4px solid #7a0000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.3s ease;
}
.our-thinking--section .think-box p {
  color: #212529;
  margin-bottom: 0px;
  font-size: 20px;
  text-align: center;
}
.our-thinking--section .think-box .date {
  color: #000;
  font-weight: 500;
  font-style: italic;
  margin-top: 4px;
}
.our-thinking--section .think-box.red-box {
  background-color: #7a0000;
}
.our-thinking--section .think-box.red-box p,
.our-thinking--section .think-box.red-box .date {
  color: #fff;
}
.our-thinking--section .think-box:hover {
  scale: 0.95;
}
.our-thinking--section a {
  text-decoration: none;
}
.our-thinking--section .visit-button {
  text-align: center;
}

.common-slider {
  position: relative;
}
.common-slider .owl-nav {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.common-slider .owl-nav .owl-prev,
.common-slider .owl-nav .owl-next {
  height: 26px;
  width: 46px;
  background-image: url("../images/icons/left-arrow.png") !important;
  background-repeat: no-repeat !important;
  background-size: 30px 30px !important;
  background-position: center !important;
  margin-left: -70px;
  border: 2px solid #585658 !important;
  border-radius: 14px;
  transition: all 0.3s ease;
}
.common-slider .owl-nav .owl-prev:hover,
.common-slider .owl-nav .owl-next:hover {
  scale: 0.9;
}
.common-slider .owl-nav .owl-prev {
  float: left;
}
.common-slider .owl-nav .owl-next {
  float: right;
  rotate: -180deg;
  margin-left: auto;
  margin-right: -70px;
}
.common-slider.teams-slider {
  display: flex;
  justify-content: center;
}
.common-slider.teams-slider .owl-nav .owl-prev {
  margin-left: -90px;
}
.common-slider.teams-slider .owl-nav .owl-next {
  margin-right: -90px;
}

.values-section {
  overflow: hidden;
}
.values-section .value-content {
  text-align: center;
}
.values-section .values-point {
  border: 4px solid #7a0000;
  height: 100%;
  padding: 20px;
}
.values-section .values-point p {
  font-size: 18px;
}
.values-section .values-point p:not(:first-child) {
  text-align: justify;
}
.values-section .values-point p:first-child {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}
.values-section .values-point p:last-child {
  margin-bottom: 0px;
}
.values-section .values-point.red-box {
  background-color: #7a0000;
}
.values-section .values-point.red-box p {
  color: #fff;
}

.teams-section .teams-content {
  text-align: center;
}
.teams-section .team-member {
  text-align: center;
}
.teams-section .team-member .member-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border: 4px solid #7a0000;
}
.teams-section .team-member .member-name {
  color: #000;
  font-size: 20px;
  margin-top: 8px;
}
.teams-section .team-member .profession {
  color: #7a0000;
  font-size: 16px;
  margin-bottom: 12px;
}
.teams-section .team-member p {
  margin-bottom: 0px;
  font-size: 16px;
  word-break: break-all;
}
.teams-section .team-member a {
  display: inline-block;
  text-decoration: none;
}
.teams-section .team-member a:not(.common-button) {
  color: #212529;
}
.teams-section .team-member a:not(.common-button):hover {
  color: rgba(122, 0, 0, 0.75);
}
.teams-section .team-member a.common-button {
  margin-top: 12px;
  padding: 6px 20px;
}
.teams-section .team-member .social-icon {
  width: 20px;
  height: auto;
  margin-top: 8px;
  transition: all 0.3s ease;
}
.teams-section .team-member .social-icon:hover {
  scale: 0.95;
}
.teams-section .modal .modal-dialog {
  max-width: 60%;
}
.teams-section .modal .modal-dialog .modal-content {
  border-radius: 12px;
  padding: 20px;
}
.teams-section .modal .modal-dialog .modal-content .modal-header {
  border-bottom: none;
  justify-content: flex-end;
  padding: 0;
}
.teams-section .modal .modal-dialog .modal-content .modal-title {
  text-align: center;
  font-weight: 600;
  margin-top: 0;
}
.teams-section .modal .modal-dialog .modal-content .modal-link {
  text-align: center;
  margin-top: 5px;
}
.teams-section .modal .modal-dialog .modal-content .modal-link a {
  color: #7a0000;
  text-decoration: none;
  font-weight: 500;
}
.teams-section .modal .modal-dialog .modal-content .modal-link a:hover {
  text-decoration: underline;
}
.teams-section .modal .modal-dialog .modal-content .modal-img {
  text-align: center;
  margin: 20px 0;
}
.teams-section .modal .modal-dialog .modal-content .modal-img img {
  max-width: 150px;
  border-radius: 50%;
  border: 3px solid #ddd;
}
.teams-section .modal .modal-dialog .modal-content .modal-description {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}

footer {
  padding: 40px 0px 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
footer .footer-title {
  color: #7a0000;
  font-size: 22px;
  font-weight: 600;
}
footer ul {
  padding-left: 0px;
  padding-bottom: 0px;
}
footer ul li {
  list-style: none;
  font-size: 18px;
  color: #000;
}
footer ul li:first-child {
  font-weight: 700;
}
footer ul li a {
  color: #212529;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
footer ul li a:hover {
  color: #7a0000;
}
footer ul li a img {
  width: 24px;
}
footer ul li.social-icon {
  display: inline-block;
}
footer ul.legal li:not(:first-child), footer ul#menu-footer-legal-menu li:not(:first-child), footer ul#menu-footer-navigation-menu li:not(:first-child) {
  display: inline-block;
}
footer ul.legal li:first-child a, footer ul#menu-footer-legal-menu li:first-child a, footer ul#menu-footer-navigation-menu li:first-child a {
  cursor: auto;
}
footer ul.legal li:first-child a:hover, footer ul#menu-footer-legal-menu li:first-child a:hover, footer ul#menu-footer-navigation-menu li:first-child a:hover {
  color: #000;
}
footer ul#menu-footer-navigation-menu li {
  display: block !important;
}
footer .flex-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  height: 100%;
}
footer .copyright {
  text-align: right;
  margin-top: 30px;
  margin-bottom: 0px;
  font-weight: 600;
  font-size: 14px;
}
footer.h-footer {
  width: 100%;
  padding: 20px 0px;
  position: absolute;
  bottom: 0;
}
footer.h-footer ul {
  margin-bottom: 0px;
}
footer.h-footer .copyright {
  margin-top: 0px;
}

/***************By Ritika*********************/
.contact-section .section-title {
  margin-bottom: 30px;
}
.contact-section .form-content .common-para {
  margin: 0px 0px 30px;
  color: #7a0000;
}
.contact-section .form-content form label {
  color: #000;
  width: 100%;
}
.contact-section .form-content form input {
  border: none;
  background-color: #e9e9e9;
  width: 100%;
  margin-bottom: 20px;
  padding: 0px 4px;
}
.contact-section .form-content form textarea {
  width: 100%;
  border: none;
  background-color: #e9e9e9;
  padding: 0px 4px;
}
.contact-section .form-content form .common-button {
  margin-top: 20px;
  padding: 4px 24px;
  border: 0px;
}
.contact-section .form-content .contact-address {
  margin-bottom: 20px;
}
.contact-section .form-content .contact-address h4 {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 700;
  color: #000;
}
.contact-section .form-content .contact-address p {
  margin-bottom: 0;
}
.contact-section .form-content .contact-address p a {
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
  color: #212529;
}
.contact-section .form-content .contact-address p a:hover {
  color: #7a0000;
}
.contact-section .form-content .contact-address .social-icon {
  width: 24px;
  height: auto;
}
.contact-section .map {
  aspect-ratio: 10/8;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact-section .map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.job-openings .section-title {
  font-size: 22px;
}
.job-openings table {
  margin-bottom: 0px;
}
.job-openings .common-button {
  margin-top: 0px;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 4px;
}

.join-our-team--section .padding-top {
  padding-top: 60px;
}

.culture-section {
  text-align: center;
  overflow: hidden;
}
.culture-section .culture-content {
  margin-top: 40px;
  text-align: left;
}
.culture-section .culture-content .culture {
  border: 4px solid #7a0000;
  padding: 30px;
  min-height: 16vh;
  display: flex;
  align-items: center;
}
.culture-section .culture-content .culture p {
  margin-bottom: 0px;
  font-size: 16px;
  color: #7a0000;
}
.culture-section .culture-content .culture.red-box {
  background-color: #7a0000;
}
.culture-section .culture-content .culture.red-box p {
  color: #fff;
}

.apply-section .apply-content .common-para a {
  text-decoration: none;
  color: #7a0000;
}
.apply-section .apply-content .common-para a:hover {
  color: #0a58ca;
}

.our-services-section .section-title {
  margin-bottom: 30px;
}
.our-services-section .our-services-content .our-services-box {
  border: 2px solid #7a0000;
  padding: 30px;
}
.our-services-section .our-services-content .our-services-box:not(:last-child) {
  margin-bottom: 20px;
}
.our-services-section .our-services-content .our-services-box h3 {
  font-size: 22px;
  color: #7a0000;
}
.our-services-section .our-services-content .our-services-box p {
  margin-bottom: 0px;
  font-size: 18px;
  text-align: justify;
}
.our-services-section .our-services-img {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
}
.our-services-section .our-services-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 8/14;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.services-banner--section {
  width: 100%;
  height: calc(100vh - 84px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: grid;
  place-items: center;
}
.services-banner--section .banner-content {
  position: relative;
  z-index: 2;
  background-color: rgba(122, 0, 0, 0.85);
  color: #fff;
  padding: 60px;
  min-height: 325px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.services-banner--section .banner-content h1 {
  text-transform: uppercase;
  font-size: 32px;
  color: #e1cb64;
}
.services-banner--section .banner-content p {
  margin-bottom: 0px;
  text-align: justify;
}
.services-banner--section .banner-content .banner-btn {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.services-banner--section .banner-content .banner-btn .common-button {
  margin-top: 0px;
  min-width: 140px;
  text-align: center;
}

.privacy-policy-section h2 {
  font-size: 30px;
  font-weight: 600;
}
.privacy-policy-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
}
.privacy-policy-section p {
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 10px;
}
.privacy-policy-section ul li {
  padding-top: 5px;
}

/* Floating Menu */
#sectionMenu {
  position: fixed;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  z-index: 1000;
}

#sectionMenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#sectionMenu li {
  margin: 5px 0;
}

#sectionMenu a {
  text-decoration: none;
  color: #333;
  padding: 5px 10px;
  display: block;
  border-radius: 5px;
}

#sectionMenu a.active {
  background-color: #007bff;
  color: #fff;
}

.swiper.homeSwiper {
  height: calc(100vh - 78px);
}

.posts-section .title-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.posts-section .title-section .view-all a {
  display: inline-block;
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.posts-section .title-section .view-all a:hover {
  color: #7a0000;
}
.posts-section .post {
  box-shadow: rgba(0, 0, 0, 0.16) 0 1px 2px;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.posts-section .post .post-thumbnail img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
  transition: all 0.3s ease;
}
.posts-section .post .content {
  padding: 20px;
}
.posts-section .post .content h3 {
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  margin: 12px 0;
  height: 100px;
  overflow: hidden;
}
.posts-section .post .content h3 .title {
  display: inline-block;
  text-decoration: none;
  color: #212529;
  transition: all 0.3s ease;
}
.posts-section .post .content h3 .title:hover {
  color: #7a0000;
}
.posts-section .post .content .read-more {
  display: inline-block;
  text-decoration: none;
  color: #878787;
  font-size: 15px;
  transition: all 0.3s ease;
}
.posts-section .post .content .read-more img {
  width: 20px;
  height: auto;
  margin-left: 4px;
  display: none;
  transition: all 0.3s ease;
}
.posts-section .post .content .read-more:hover {
  color: #7a0000;
  font-weight: 600;
}
.posts-section .post .content .read-more:hover img {
  display: inline-block;
}
.posts-section .post:hover img {
  scale: 1.03;
}

.tag a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background-color: rgba(122, 0, 0, 0.95);
  padding: 1px 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: auto;
}

.single-post--page .post-content {
  background: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 30px;
  padding: 60px 100px;
}
.single-post--page .post-content .date {
  color: #929292;
  font-size: 15px;
  margin: 0px 0 16px;
  font-weight: 400;
  text-align: center;
}
.single-post--page .post-content .tag {
  text-align: center;
}
.single-post--page .post-content .post-title {
  font-size: 28px;
  font-weight: 700;
  width: 80%;
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: center;
}
.single-post--page .post-content .post-banner {
  margin: 30px 0px 40px;
}
.single-post--page .post-content .post-banner img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 16px;
}
.single-post--page .post-content .content p {
  font-size: 16px;
  color: #000;
  line-height: 1.8;
  text-align: left;
}

.post-modal {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}
.post-modal.show {
  display: block;
  visibility: visible;
  opacity: 1;
}
.post-modal .modal-content {
  background: #fff;
  padding: 30px;
  max-width: 60%;
  position: relative;
  border-radius: 8px;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%) scale(0.95);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.post-modal.show .modal-content {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  max-height: 90vh;
  overflow-y: scroll;
}
.post-modal .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  cursor: pointer;
  line-height: normal;
  width: 20px;
  height: 20px;
}
.post-modal .close img {
  width: 18px;
  height: auto;
  opacity: 0.4;
}
.post-modal .close:hover img {
  filter: brightness(1);
  opacity: 1;
}
.post-modal .single-article .modal-title {
  text-align: center;
  font-weight: 600;
  margin-top: 16px;
  font-size: 20px;
}
.post-modal .single-article .modal-link {
  text-align: center;
}
.post-modal .single-article .modal-link a {
  color: #7a0000;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}
.post-modal .single-article .post-thumbnail {
  max-width: 150px;
  border: 3px solid #ddd;
  margin-top: 10px;
}
.post-modal .single-article ul li {
  text-align: left;
}

.moving-strip {
  background-color: #000;
  position: fixed;
  top: 84px;
  width: 100%;
  z-index: 998;
}
.moving-strip marquee {
  margin-bottom: -7px;
}
.moving-strip ul {
  margin-bottom: 0px;
  color: #ffffff;
  display: flex;
  align-items: center;
  padding-left: 0px;
}
.moving-strip ul li {
  list-style: none;
  margin: 10px 40px;
  line-height: normal;
}
.moving-strip ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.moving-strip ul li:last-child {
  display: none;
}

.key-person-section .section-title {
  margin-bottom: 30px;
}
.key-person-section .key-person {
  text-align: center;
}
.key-person-section .key-person .person-img img {
  width: 70%;
  height: auto;
  aspect-ratio: 4/5;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border: 4px solid #7a0000;
}
.key-person-section .key-person .person-name {
  color: #000;
  font-size: 18px;
  margin-top: 8px;
  font-weight: 500;
}
.key-person-section .key-person .person-profession {
  color: #7a0000;
  font-size: 16px;
  margin-bottom: 4px;
}
.key-person-section .key-person .social-icons a {
  color: #212529;
  text-decoration: none;
}
.key-person-section .key-person .social-icons .social-icon {
  width: auto;
  height: 18px;
  transition: all 0.3s ease;
}/*# sourceMappingURL=custom.css.map */