@import url("https://fonts.googleapis.com/css2?family=Otomanopee+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans", sans-serif;
}

:root {
  --bg-primary: rgba(0, 30, 107, 0.9);
  --secondary: #035397;
  --purple: #e8630a;
  --light-grey: rgb(183, 183, 183);
  --grey: rgba(91, 91, 91, 0.479);
  --light: #777;
  --white: #eeeeee;
}
body {
  overflow-x: hidden;
}
.c-name-font {
  font-family: "Noto Sans", sans-serif;
}

nav {
  position: relative;
  z-index: 999;
}
/* navbar  */

.navbar {
  min-height: 65px;
  background-color: var(--bg-primary);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(7.6px);
  position: fixed;
  top: 0;
  z-index: 5;
}

.with-navbar-padding{
  padding-top: 97px;
}

.navbar.scrolled {
  background-color: var(--bg-primary) !important;
  transition: background-color 300ms linear;
  -webkit-transition: background-color 300ms linear;
  -moz-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  -o-transition: background-color 300ms linear;
}

.small-brand {
  display: none;
  font-size: 12px;
  text-decoration: none;
  color: #fff;
  text-align: left;
}
.navbar-brand {
  margin-left: 8px;
  font-size: 23px;
  font-weight: 500;
  color: white;
  transition: font-size 180ms ease;
  -webkit-transition: font-size 180ms ease;
  -moz-transition: font-size 180ms ease;
  -ms-transition: font-size 180ms ease;
  -o-transition: font-size 180ms ease;
}
.navbar-brand.scrolled {
  font-size: 25px;
  transition: font-size 180ms ease-out;
  -webkit-transition: font-size 180ms ease-out;
  -moz-transition: font-size 180ms ease-out;
  -ms-transition: font-size 180ms ease-out;
  -o-transition: font-size 180ms ease-out;
}

.navbar-nav li a {
  text-decoration: none;
  color: #d6c7c7;
  line-height: 65px;
}
.nav-item:hover a,
.nav-item a.active {
  color: #fff;
}

.nav-link.active {
  color: #fff !important;
  font-weight:bold;
}


.dropdown-menu {
  position: relative;
  margin-top: 7px;
  padding: 0;
}
.dropdown-menu li a {
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.dropdown-menu li a {
  line-height: 2em;
  background-color: var(--bg-primary);
  color: #fff;
}
.dropdown-menu li:hover a {
  background-color: #fff;
  color: var(--bg-primary);
}
.nav-services:hover .dropdown-menu {
  display: block;
}
.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.custom-toggler.navbar-toggler {
  border: none;
  box-shadow: none;
  outline: none;
}
.navbar-nav > .mm-nav > a {
  font-size: 12px !important;
}

/* langs */

.xs-lang {
  display: none;
}

.xs-lang a:hover,
.md-lang a:hover,
.xs-lang a:focus,
.md-lang a:focus {
  outline: none;
  box-shadow: none;
}
.md-lang a.active,
.xs-lang a.active {
  background-color: #fff;
}
.xs-lang a:hover,
.md-lang a:hover {
  background-color: #bbb;
}
.xs-lang img,
.md-lang img {
  display: block;
  height: 100%;
}
/* langs */

/* carousel */

#myCarousel {
  height: 75vh !important;
}
.carousel-item img {
  height: 75vh !important;
  width: 100%;
  object-fit: cover;
}

.carousel-caption {
  width: 100%;
  height: 100%;
  height: 180px;
  left: 0;
  bottom: 0;
}
.carousel-caption * {
  position: absolute;
  bottom: 0;
  left: 50%;
  color: #fff;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.4);
}
.carousel-caption h5 {
  font-size: 30px;
  margin-bottom: 120px;
  padding: 10px 20px;
}
.carousel-caption p {
  margin-bottom: 60px;
  font-size: 18px;
  padding: 5px 20px;
}
.mm h5 {
  font-size: 28px;
}
.mm p {
  font-size: 15px;
}
.carousel-indicators button.active {
  background-color: #fff;
  height: 5px;
}
.carousel-caption p.long-text-jp {
  font-size: 14px !important;
}

.title-line {
  width: 8%;
  margin: 20px auto;
  border-top: 2px double var(--bg-primary);
}

.mv-text {
  width: 60%;
  margin: 0 auto;
  line-height: 1.5;
  letter-spacing: 1.7px;
}

.w-90 {
  width: 90%;
  margin: 0 auto;
}

.w-60 {
  width: 60%;
  margin: 0 auto;
}

.glass_effect {
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6.4px);
  -webkit-backdrop-filter: blur(6.4px);
}

.maing_bg {
  background-color: var(--secondary);
}
.hero {
  height: 70vh;
  /* margin: 10px 0; */
}

.carousel_img {
  object-fit: cover;
  border-radius: 10px;
  visibility: hidden;
  opacity: 0;
  transition: all 1s ease;
  position: absolute;
}
.hero_carousel_img {
  width: 90%;
  height: 80%;
}
.carousel_img.active {
  visibility: visible;
  opacity: 1;
}
.hero_content_container {
  height: 100%;
  min-height: fit-content;
  position: relative;
}
.hero_content {
  width: 100%;
  height: auto;
  position: absolute;
  opacity: 0;
  visibility: collapse;
  transition: all 1s ease;
}
.hero_content.active {
  opacity: 1;
  visibility: visible;
}

.hero_content .hero_main_slogan {
  text-transform: capitalize;
  letter-spacing: 2px;
  font-weight: bold;
  color: var(--bg-primary);
  /* color: transparent;
  text-shadow: -2px 10px 15px;
  -webkit-text-stroke: 2px var(--bg-primary); */
  margin-bottom: 2rem;
}
/* .content_bg {
  background-color: grey;
  color: white;
} */

.top_radius {
  border-top-right-radius: 50px;
  border-top-left-radius: 50px;
}
.content_bg_black {
  background-color: #000000e8;
  color: white;
}

@media (min-width: 1200px) {
  .hero_main_slogan {
    font-size: 3.32rem !important;
    /* font-size: 2.2 rem !important; */
  }
}
.hero_content .hero_main_slogan,
.hero_content .hero_desc,
.hero_content .btn {
  opacity: 0;
  transform: translateY(20px);
  transition: all 2s ease;
}
.hero_content .hero_desc,
.hero_content .btn {
  transition-delay: 0.25s;
}
.hero_content .btn {
  background-color: var(--bg-primary);
  transition-delay: 0.5s;
}

.hero_content.active .hero_main_slogan,
.hero_content.active .hero_desc,
.hero_content.active .btn {
  opacity: 1;
  transform: translateY(0);
}
.hero_desc {
  width: 90%;
  font-size: 20px;
  text-align: start;
  text-indent: 40px;
}
.hero_image_carousel_container {
  width: 60%;
}
.mission,
.vision {
  min-height: 220px;
}
.vision {
  position: relative;
  clip-path: polygon(0% 0%, 75% 0%, 90% 50%, 75% 100%, 0% 100%);
  background-color: var(--secondary);
}
.mission {
  position: relative;
  background-color: var(--secondary);
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 15% 50%);
}
.vision > img,
.mission > img {
  padding: 50px;
}

.speech::first-letter {
  font-family: "Courier New", Courier, monospace;
  font-weight: 600;
  font-size: 25px;
}

.p-speech img {
  display: block;
  width: 330px;
  margin: 0 auto;
}
/* speech end */

/* Activities */
.activities h1 {
  color: var(--bg-primary);
}

.activities hr {
  width: 9%;
  margin: 20px auto;
  border-top: 2px double var(--bg-primary);
}

.activities h2 {
  margin-left: 10%;
  color: var(--bg-primary);
}

.date-blog {
  position: absolute;
  z-index: 2;
  padding: 5px 10px;
  background-color: #b9ab2caf;
  color: #e9e9e9;
  right: 0;
  bottom: 0;
}

.img-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 3;
}

.img-title > * {
  transform: translateY(20px);
  transition: transform 0.25s;
}

.img-title:hover {
  opacity: 1;
}

.img-title:hover > * {
  transform: translateY(0);
}

.image__overlay--blur {
  backdrop-filter: blur(1.5px);
}

.text-title {
  background-color: #8f7c3d;
  color: white;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 10px 10px;
  width: 100%;
}
/* end fix */
.owl-nav > div {
  margin-top: -26px;
  position: absolute;
  top: 50%;
  color: #cdcbcd;
}

.owl-nav i {
  font-size: 52px;
}

.owl-nav .owl-prev {
  left: -30px;
}

.owl-nav .owl-next {
  right: -30px;
}

/* Gallery */
#gallery {
  -webkit-column-count: 4;
  -moz-column-count: 4;
  column-count: 4;

  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  width: 85%;
}

#gallery img {
  width: 100%;
  height: auto;
  margin: 4% auto;
  box-shadow: -3px 5px 15px #000;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
/* Gallery */

/* Activities */

/* Business Activity */
.business-activity {
  text-align: center;
  color: var(--bg-primary);
}

.business-activity hr {
  width: 9%;
  border-top: 2px double var(--bg-primary);
  margin: 25px auto;
}

.business-activity-blog {
  width: 90%;
  height: 30%;
  margin: 30px auto;
  justify-content: center;
}
.business_activity_wrapper {
  width: 100%;
  position: relative;
  overflow-x: hidden;
  padding: 0.5rem 0;
}

.business_activity_wrapper::before,
.business_activity_wrapper::after {
  content: "";
  width: 80px;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 10;
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.2)
  );
}
.business_activity_wrapper::before {
  left: 0;
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.2)
  );
}
.business_activity_wrapper::after {
  right: 0;
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.8)
  );
}

.business_activity_wrapper .activites_carousel {
  animation: Slide 10s linear infinite;
  white-space: noWrap;
}

.main_md_img {
  width: 30%;
  max-width: 35%;
  max-height: 50%;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
}

@keyframes Slide {
  to {
    transform: translate3d(calc(28% - 0.2rem), 0, 0);
  }
}
.business-activity-items {
  min-width: 240px;
  min-height: 160px;
  text-decoration: none;
  position: relative;
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
}

.business-activity-items > h3 {
  width: 90%;
  font-size: 14px;
  font-weight: 500;
  margin: 5px auto;
  color: #313131;
}

.business-activity-icon {
  color: var(--purple);
  font-size: 40px;
}

.act-learn-more {
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  color: rgb(87, 87, 87);
  font-style: italic;
  font-stretch: condensed;
}

.double-r-arrow {
  display: inline-block;
  opacity: 0;
}
.act-learn-more:hover .double-r-arrow {
  animation: doubleArrowAni 150ms linear forwards;
}

@keyframes doubleArrowAni {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Business Activity */

/* footer */
footer {
  background-color: var(--bg-primary);
  padding: 30px 20px;
  color: #fff;
}

.footer-text {
  margin: 2em 0;
  padding: 0 1em;
  text-align: justify;
}
.footer-contact {
  margin-bottom: 16px;
}
.footer-contact li {
  list-style: none;
}

.footer-contact a {
  text-decoration: none;
  color: rgb(209, 215, 219);
}

.footer-contact a:hover {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgb(182, 182, 182);
}

.footer-icon {
  font-size: 40px;
  color: aliceblue;
  opacity: 0.5;
  padding: 20px 10px;
}

.footer-icon:hover {
  color: rgb(209, 209, 209);
}

.footer-contact {
  font-size: 14px;
  color: rgb(209, 215, 219);
}

.footer-nav-container {
  padding-top: 20px;
}

.footer-nav {
  list-style-type: none;
  overflow: hidden;
}

.footer-nav li {
  display: inline;
  padding: 10px 15px;
}

.footer-nav li a {
  color: #d6c7c7;
  text-decoration: none;
  width: 100%;
}

.footer-nav li a:hover,
.footer-nav li a.active {
  color: #fff;
}

/* .cpy {
  font-size: 12px;
  text-align: center;
} */

/* footer */

/* aboutus-start */

.award-table {
  width: 100%;
  margin: 30px 20px 20px;
  border-color: white;
  /* border-color: #000; */
}

.award-table td {
  padding: 8px 13px;
  text-align: left;
  margin: 2px;
}

.award-time-badges {
  padding: 5px 10px;
  display: inline-block;
  font-size: 15px;
  border-radius: 0px;
  color: whitesmoke;
  background-color: #8f7c3d;
  margin: 2px;
  text-align: center;
  width: 5em;
  height: 2em;
  /* line-height: 20px; */
}

.bg-img {
  height: 70vh;
  width: 100%;
  object-fit: cover;
}

.bg-color {
  background-color: rgb(243, 241, 196);
}

.profile h1,
.detail h1 {
  color: var(--bg-primary);
  font-style: italic;
  margin: 10px 0;
}

.profile p {
  text-align: justify;
  padding: 20px 20px 10px;
  letter-spacing: 1px;
  line-height: 2;
}

.header {
  position: relative;
}
.header-bg {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.header-title {
  /* height: 70vh; */
  width: 100%;
  /* line-height: 70vh; */
  text-align: center;
  font-size: 50px;
  color: #fff;
  font-weight: bolder;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.info-table {
  width: 80%;
  margin: 30px 20px 20px;
}

.info-table td {
  padding: 10px 13px;
}

.info-table th {
  color: var(--bg-primary);
  font-size: 14px;
}

.partner-img {
  width: 100%;
}
.partner-name {
  margin: 1em 0;
}

.bod-header {
  color: var(--bg-primary);
  font-size: 28px;
  font-weight: bold;
}

.bod-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 4%;
  -webkit-border-radius: 4%;
  -moz-border-radius: 4%;
  -ms-border-radius: 4%;
  -o-border-radius: 4%;
  margin-bottom: 10px;
}
.bod-name {
  font-size: 16px;
  font-weight: 500;
}
.about_theme_bg {
  background-color: var(--bg-primary);
}

.bod-position {
  font-size: 13px;
  font-style: italic;
  color: var(--grey);
}

.milestones-box{
  display: flex;
  justify-content: center;
  padding: 2rem;
  max-width: 800px;
  width: 100%;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 0 auto; /* ✅ This centers the box horizontally */
}

.milestones-box img {
  width: 100%;        /* Make image fill the container width */
  height: auto;       /* Maintain aspect ratio */
  display: block;     /* Remove bottom whitespace */
  border-radius: 8px; /* Optional: match box corner rounding */
}
/* aboutus-end */

/* Services */

.service_main_head {
  font-weight: 550;
}

.odd-departments {
  border-left: 3px solid var(--bg-primary);
  padding: 30px;
  margin: 30px auto;
  width: 85%;
  color: var(--bg-primary);
}

.even-departments {
  border-right: 3px solid var(--bg-primary);
  padding: 30px;
  margin: 30px auto;
  width: 85%;
  color: var(--bg-primary);
}

.right {
  text-align: right;
  padding-right: 8%;
}

ul.list {
  list-style-type: circle;
  margin: 20px auto 0;
}

.list li {
  padding: 10px 0;
}

.list h4 {
  font-weight: bolder;
  padding: 10px 0;
}

/* Back to Top */
#button {
  display: inline-block;
  background-color: var(--secondary);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 5px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
.top {
  text-decoration: none;
  color: #ddd;
  line-height: 48px;
  font-size: large;
}
#button:hover {
  cursor: pointer;
  background-color: var(--bg-primary);
}
#button:active {
  background-color: var(--bg-primary);
}
#button.show {
  opacity: 1;
  visibility: visible;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  max-height: 100%;
  overflow-y: scroll;
  top: 50%;
  transform: translateY(-50%);
}
/* Hide scrollbar for Chrome, Safari and Opera */
.modal-content::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.modal-content {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* Add Animation */
.modal-content {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.3s;
  animation-name: zoom;
  animation-duration: 0.3s;
  animation-timing-function: ease-in;
}

@keyframes zoom {
  from {
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
  }
  to {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}

/* The Close Button */
.close {
  position: absolute;
  top: 11%;
  right: 2%;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
/* Services */

/* Contact Us */
.contact-title {
  color: var(--bg-primary);
}

.contact-content {
  margin: 50px 0;
}

.contact-form {
  margin: 0 auto;
  padding: 0.5em 0;
  width: 100%;
  color: #aaa;
}

.name {
  width: 100%;
}

.name input {
  padding: 10px 10px;
}

.input-error {
  display: none;
  color: tomato;
}

.name input,
textarea {
  width: 47%;
  height: 3em;
  text-indent: 0.5em;
  border: 0.1em solid #ddd;
  border-radius: 4px;
  outline-color: #899456;
}

.name input[type="email"],
.name input[name="subject"] {
  margin-top: 1em;
  width: 100%;
}

.message,
.submit {
  margin-top: 1em;
}

.message textarea,
.submit button {
  width: 100%;
}

.message textarea {
  padding: 10px 10px;
  height: 12em;
  resize: none;
}

.submit_btn {
  width: 100%;
  padding: 8px 0;
  display: block;
  color: var(--white);
  background-color: var(--bg-primary);
  border-radius: 5px;
  margin-top: 0.5rem;
  border: none;
  transition: all 150ms linear;
}
.submit_btn:hover {
  background-color: var(--secondary);
}

.contact-card p a {
  color: var(--bg-primary);
  transform: all 0.5s ease;
}

.contact-card a:hover {
  color: var(--purple);
}
.map {
  display: block;
  overflow: hidden;
  position: relative;
  width: 90%;
  height: 300px;
  background-color: rgba(228, 222, 222, 0.623);
  border: 1px solid rgb(110, 75, 0);
  margin-bottom: 5%;
}

.map iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 3;
}

.load-map {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid rgb(207, 181, 181);
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 50px;
    left: 50px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 100px;
    height: 100px;
    opacity: 0;
  }
}

/* Contact Us */
@media (max-width: 1200px) {
  #gallery {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;

    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  /* .navbar-nav > .mm-nav > a {
    font-size: 12px !important;
  } */
  .mm-brand {
    font-size: 22px;
  }
  .mm-brand.scrolled {
    font-size: 25px;
  }
}
@media only screen and (max-width: 1170px) {
  .mm h5 {
    font-size: 26px;
  }
  .mm p {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1150px) and (min-width: 1089px) {
  .mm-brand {
    font-size: 20px !important;
  }
  .mm-brand.scrolled {
    font-size: 22px !important;
  }
}
@media only screen and (max-width: 1088px) and (min-width: 1059px) {
  /* .navbar-nav > .mm-nav > a {
    font-size: 11px !important;
  } */
  .mm-brand {
    font-size: 18px !important;
  }
  .mm-brand.scrolled {
    font-size: 20px !important;
  }
}
@media only screen and (max-width: 1060px) and (min-width: 992px) {
  .navbar-nav > .mm-nav > a {
    font-size: 10.5px !important;
  }
  .mm-brand {
    font-size: 15px !important;
  }
  .mm-brand.scrolled {
    font-size: 17px !important;
  }
  .navbar-nav li a {
    font-size: 14px;
  }
  .navbar-brand.scrolled {
    font-size: 23px;
  }
  .p-speech .text p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .nav-item {
    text-align: center;
  }
  .nav-item:hover {
    border-bottom: none;
  }
  .md-lang {
    display: none;
  }
  .xs-lang {
    display: block;
  }
  .p-speech .text p {
    margin: 0 auto;
  }
  .p-speech .image {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-icon {
    padding: 1px 5px;
    font-size: 35px;
  }
}
@media (max-width: 800px) {
  #gallery {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;

    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .main_md_img_container {
    height: 320px;
    margin-bottom: 10px;
  }
  .main_md_img_container > img {
    min-width: 90%;
    height: 320px;
    display: block;
    object-fit: cover;
    object-position: center;
  }
  .profile-card {
    margin-top: 70px;
  }
  .small-brand {
    display: block;
  }
  .p-speech p {
    margin: 0 auto;
  }
}
/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
    /* top: 30%; */
  }

  .close {
    top: 7%;
    right: 1%;
  }

  .contact-card {
    margin-top: 60px;
  }

  footer {
    padding: 20px 0;
  }
  .p-speech .text p {
    width: 100%;
    padding: 20px 30px;
  }
}

@media (max-width: 705px) {
  .hero_container > div {
    width: 100% !important;
  }
  .hero_content {
    width: 100% I !important;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 600px) {
  .hero_content_container {
    margin-bottom: 2rem;
    padding: 2rem 0;
  }
  #gallery {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}

@media screen and (max-width: 768px) {
  .hero_container {
    height: max-content;
  }
  .hero_container > div {
    width: 100% !important;
  }
  .hero {
    min-height: fit-content;
  }
  .hero_content {
    width: 100%;
    height: auto;
  }
  .hero_content_container {
    min-height: 40vh;
    height: max-content;
  }
  .hero_desc {
    width: 100%;
    text-align: justify;
  }

  .hero_image_carousel_container {
    width: 100% !important;
    height: auto;
    min-height: 60vh;
    position: relative;
    margin: 2rem 0;
  }
  .hero_carousel_img {
    height: 320px;
  }
  .vision,
  .mission {
    clip-path: none;
  }
  .vision {
    border-bottom: 2px solid white;
  }
  .vision img,
  .mission img {
    display: none;
  }
  .vision p,
  .mission p {
    width: 95%;
  }
}

/* @media screen and (max-width: 600px) {
  .hero {
    min-height: 70vh;
  }
  .hero_content {
    width: 90%;
    height: auto;
  }
  .hero_content_container {
    min-height: 60vh;
  }
  .hero_desc {
    width: 100%;
    font-size: 14px;
  }
  .hero_carousel_img {
    height: 320px;
  }
  .vision,
  .mission {
    clip-path: none;
  }
  .vision img,
  .mission img {
    display: none;
  }
  .vision p,
  .mission p {
    width: 100%;
  }
} */

@media only screen and (max-width: 480px) {
  .hero_content_container {
    margin-bottom: 3rem;
  }
  .contact-card {
    margin-top: 60px;
  }
  .header-title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 450px) {
  .hero_content {
    padding-top: 2rem;
  }
  .hero_desc {
    font-size: 16px;
  }
}
@media only screen and (max-width: 417px) {
  footer {
    padding: 10px 0;
  }
  .footer-nav-container {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .footer-nav li {
    margin: 0 5px;
    padding: 0;
  }
  .contact-card {
    margin-top: 60px;
  }
}

@media only screen and (max-width: 340px) {
  .small-brand {
    font-size: 10px;
  }
}
@media only screen and (max-width: 310px) {
  .small-brand {
    display: none;
  }
}

@media only screen and (max-width: 300px) {
  .header-title {
    font-size: 30px;
  }
}

/* @media only screen and (min-width: 992px) {
  .header-title {
    top: 80px;
  }
} */

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
