:root {
  --poppins-font: "Poppins", sans-serif;
  --spartan-font: "Spartan", sans-serif;
}

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #f7f8ff;
}

html {
  scroll-behavior: smooth;
}

a,
a:hover {
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease-in-out;
}

img {
  display: inline-block;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--poppins-font);
}

h1 {
  font-weight: bold;
}

.navbar.navbar-expand-lg.bg-body-tertiary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  z-index: 9;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.navbar.navbar-expand-lg.bg-body-tertiary li {
  display: inline-flex;
  align-items: center;
}
.navbar.navbar-expand-lg.bg-body-tertiary li.active a::after {
  width: 25px;
}
.navbar.navbar-expand-lg.bg-body-tertiary .nav-link {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--spartan-font);
  padding-right: 2rem;
  padding-left: 2rem;
  text-transform: capitalize;
  color: #040404;
  position: relative;
}
.navbar.navbar-expand-lg.bg-body-tertiary .nav-link .btn {
  font-size: 16px;
  border-radius: 30px;
  padding: 5px 20px;
  border-width: 2px;
  color: #000;
  border-color: #000;
}
.navbar.navbar-expand-lg.bg-body-tertiary .nav-link .btn.btn-primary:hover {
  color: #fff;
}
.navbar.navbar-expand-lg.bg-body-tertiary .nav-link::after {
  content: "";
  bottom: -8px;
  width: 0%;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background: #0a58ca;
  position: absolute;
  transition: 0.8s cubic-bezier(0.69, -0.36, 0, 1.51);
}
.navbar.navbar-expand-lg.bg-body-tertiary .nav-link:hover {
  color: #0a58ca;
}

.blogList {
  background-color: #fff;
  padding-top: 5rem;
}
.blogList .blogBigBox {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  margin: 0 0 5rem;
  border-radius: 10px;
  overflow: hidden;
  padding: 0 0 0 25px;
}
.blogList .blogBigBox h4 a {
  color: #18202d;
}
.blogList .blogBigBox h4 a:hover {
  color: #0a58ca;
}
.blogList .blogBigBox p {
  font-size: 16px;
}

.blogTitle {
  position: relative;
  font-size: 2.7rem;
  font-weight: 600;
  font-family: var(--spartan-font);
  padding-bottom: 10px;
}
.blogTitle::after {
  position: absolute;
  bottom: 0;
  width: 30px;
  height: 3px;
  left: 0;
  content: "";
  background-color: #49a1e6;
}
.blogTitle::before {
  position: absolute;
  bottom: 0;
  width: 25%;
  height: 1px;
  left: 0;
  content: "";
  background-color: #e5e5e5;
}

.blog_details {
  background-color: #fff;
  padding: 10rem 0;
}
.blog_details img {
  height: 476px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog_details h2 {
  font-size: 3.4rem;
  font-family: var(--spartan-font);
  font-weight: 700;
  margin: 3rem 0;
}
.blog_details p {
  font-size: 16px;
  font-family: var(--spartan-font);
  font-weight: 300;
}
.blog_details h5 {
  font-size: 15px;
  font-family: var(--spartan-font);
  font-weight: 600;
  margin-bottom: 2rem;
  color: #0a58ca;
}
.blog_details h4 {
  font-size: 3.4rem;
  font-family: var(--spartan-font);
  font-weight: 800;
  color: #4a4a4a;
  margin-top: 5rem;
}
.blog_details form {
  margin: 0 0 3rem 0;
}
.blog_details form label {
  font-size: 14px;
  font-family: var(--spartan-font);
  font-weight: 600;
  color: #4a4a4a;
}
.blog_details form .form-group input {
  background-color: #f4f4f4;
  height: 4rem;
  border: 0;
}
.blog_details form textarea {
  border: 0;
  background-color: #f4f4f4;
}
.blog_details form .btn {
  background-color: #0a58ca;
  color: #fff;
  border-radius: 0;
  height: 6rem;
  width: 166px;
  margin: auto;
  font-size: 12px;
  text-transform: uppercase;
  font-family: var(--spartan-font);
  transition: 0.3s ease-in-out;
  margin-top: 2.5rem;
}
.blog_details form .btn:focus {
  outline: none;
}
.blog_details form .btn:hover {
  background-color: #18202d;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  color: #fff;
}
.blog_details .blog_search {
  position: relative;
}
.blog_details .blog_search .form-control {
  border-radius: 50px;
  height: 4.4rem;
  font-size: 16px;
  padding: 0 15px;
  background-color: transparent;
}
.blog_details .blog_search .form-control:focus {
  outline: none;
  box-shadow: none;
}
.blog_details .blog_search .input-group-prepend {
  position: absolute;
  z-index: 22;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  font-size: 14px;
}
.blog_details .blog_search .input-group-prepend button {
  background-color: transparent;
}
.blog_details .blog_search .input-group-prepend:hover {
  opacity: 1;
}
.blog_details .blog_box {
  margin-bottom: 4rem;
  background-color: #f7f6f2;
  padding: 25px 15px;
  border-radius: 5px;
}
.blog_details .blog_box h3 {
  position: relative;
  font-size: 2.7rem;
  font-family: var(--spartan-font);
  font-weight: 700;
  margin-bottom: 20px;
}
.blog_details .blog_box h3::after {
  position: absolute;
  left: 0;
  bottom: -10px;
  content: "";
  width: 30px;
  height: 1px;
  background-color: #222;
}
.blog_details .blog_box ul {
  margin: 4rem 0;
}
.blog_details .blog_box li {
  margin: 25px 0;
}
.blog_details .blog_box li a {
  font-size: 16px;
  font-family: var(--spartan-font);
  font-weight: 500;
  color: #4a4a4a;
}
.blog_details .blog_box li a:hover {
  color: #0a58ca;
}

.bigBlog img {
  max-width: 191px;
  flex-basis: 191px;
  height: 181px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  border: 2px solid #fff;
  transition: 0.3s linear;
}
.bigBlog .bigBox:hover img {
  border: 2px solid #0a58ca;
}
.bigBlog .bigBox {
  display: flex;
  margin-bottom: 5rem;
}
.bigBlog .bigBox .bigContent {
  display: flex;
  flex-direction: column;
  margin-left: 15px;
}
.bigBlog .bigBox .bigContent h3 {
  margin-bottom: 1.5rem;
}
.bigBlog .bigBox .bigContent h3 a {
  color: #222;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--spartan-font);
  line-height: 22px;
}
.bigBlog .bigBox .bigContent h3 a:hover {
  color: #0a58ca;
}
.bigBlog .bigBox .bigContent p {
  font-size: 16px;
}
.bigBlog .bigBox .bigContent span {
  font-size: 13px;
  font-weight: 700;
  font-family: var(--spartan-font);
}

.recentPost {
  margin: 2rem 0 7rem;
}
.recentPost img {
  max-width: 70px !important;
  height: 87px;
  border-radius: 10px;
  flex-basis: 70px;
  -o-object-fit: cover;
     object-fit: cover;
}
.recentPost h4 {
  margin-left: 15px;
  margin-top: 5px;
}
.recentPost h4 a {
  color: #222;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--spartan-font);
}
.recentPost h4 a:hover {
  color: #0a58ca;
}
.recentPost h4 span {
  font-size: 13px;
  font-weight: 300;
  font-family: var(--spartan-font);
  color: rgba(0, 0, 0, 0.5);
  margin-top: 15px;
}

.mainBanner {
  padding: 10rem 0 5rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 62.45%, rgba(255, 255, 255, 0.27) 68.8%, #FFF 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.4) 1.32%, rgba(0, 0, 0, 0) 37.71%), linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0.01%, rgba(0, 0, 0, 0) 73.89%), url("../images/baner.jpeg"), lightgray -120.654px -641.519px/115.432% 170.982% no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
}
.mainBanner .container {
  margin-top: 5rem;
}
.mainBanner h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
  font-weight: bold;
}
.mainBanner .btn {
  border-radius: 30px;
  font-size: 16px;
  padding: 10px 20px;
  font-weight: 500;
}
.mainBanner .btn img {
  width: 20px;
  filter: brightness(0) invert(1);
  /* turns black to white */
}

.navbar-brand {
  width: 160px;
  margin-top: 2rem;
}

.dropdown-toggle {
  background-color: transparent;
  border: 0;
}
.dropdown-toggle img {
  width: 30px;
  filter: brightness(0) invert(1);
  /* turns black to white */
}

.glance {
  background-color: #294586;
  padding: 1.5rem 0;
  color: #fff;
}
.glance .card img {
  height: 150px;
}
.glance .card h5 {
  color: #000;
}
.glance h2 {
  font-size: 3rem;
}
.glance h4 {
  font-size: 3rem;
}
.glance h4 span {
  font-size: 1.6rem;
  display: block;
  color: #acacac;
}

.explore {
  padding: 5rem 0;
}
.explore .item a {
  position: relative;
}
.explore .item a .play-btn {
  transition: 0.3s ease all;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  filter: brightness(0) invert(1);
}
.explore .item a:hover .play-btn {
  filter: unset;
}
.explore h2 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 3rem;
}
.explore img {
  border-radius: 10px;
}
.explore h4 {
  color: #294586;
  font-size: 2.4rem;
  margin: 10px 0 15px;
}
.explore a {
  color: #777;
  font-size: 16px;
}
.explore a:hover {
  color: #294586;
}

.driveImpact {
  background-color: #f1f1f1;
}
.driveImpact .box {
  color: white;
  padding: 15px;
}
.driveImpact .box h3 {
  font-size: 2rem;
}
.driveImpact .box p {
  font-size: 16px;
  margin-bottom: 2rem;
}
.driveImpact .box img {
  filter: brightness(0) invert(1);
  /* turns black to white */
  max-width: 70px;
  margin: 2rem 0 5rem;
}
.driveImpact .box .boxInner {
  background-color: #f1f1f1;
  margin: 0 -23px -15px;
  padding: 15px;
}
.driveImpact .box .boxInner a {
  color: #294586;
  border-top: 1px solid;
}
.driveImpact .box .boxInner a:hover {
  color: #000;
}

.titleInsight {
  margin: 3rem 0 2rem;
}

.insightBox {
  background-color: #294586;
  padding: 3rem 0 5rem;
}
.insightBox .titleInsight {
  margin-bottom: 4rem;
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
}
.insightBox img {
  border-radius: 0;
}

.blog h4 a {
  color: #294586;
}

.testi {
  padding: 0 !important;
}
.testi .owl-testi {
  position: relative;
}
.testi .owl-testi img {
  border-radius: 0;
}
.testi .owl-testi .owl-nav {
  position: absolute;
  bottom: 20px;
  left: -10px;
}
.testi .owl-testi .owl-nav button:hover {
  background-color: transparent !important;
}
.testi .owl-testi .owl-nav button.owl-prev {
  transform: rotate(180deg);
}
.testi .owl-testi .owl-nav img {
  width: 35px;
}
.testi h3 {
  font-size: 4rem;
  color: #294586;
}
.testi p {
  font-size: 16px;
  max-width: 500px;
  color: #294586;
}
.testi a {
  text-decoration: underline;
  color: #294586;
  font-size: 16px;
  margin-top: 3rem;
}

.contact {
  padding: 2rem 0 5rem;
  color: #294586;
}
.contact h2 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 3rem;
}
.contact h5 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.contact .contactBorder {
  border-left: 1px solid #294586;
}
.contact ul li {
  margin-right: 16px;
}
.contact ul li a {
  background-color: #294586;
  display: inline-block;
  padding: 10px;
}
.contact ul li a img {
  width: 20px;
  filter: brightness(0) invert(1);
  /* turns black to white */
}

footer {
  background-color: #0a1f50;
  color: #a88867;
  padding: 5rem 0 2rem;
}
footer h4 {
  font-size: 2.2rem;
  border-bottom: 1px solid;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
footer .footerLogo {
  background-color: #fff;
  display: inline-block;
  margin-bottom: 2rem;
}
footer .footerLogo img {
  width: 150px;
}
footer h3 {
  font-size: 2rem;
}
footer a {
  color: #e8b70c;
}
footer a:hover {
  color: #fff;
}
footer ul li {
  margin: 5px 0;
}
footer ul li a {
  font-size: 16px;
}
footer ul li a img {
  width: 15px;
}
footer .social {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
footer .social li {
  margin-right: 10px;
}
footer .social li a {
  background-color: white;
  padding: 5px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
footer .bottomMenu {
  justify-content: flex-end;
  font-size: 14px;
  align-items: center;
}
footer .bottomMenu li {
  margin: 0 10px;
}

.mainBannerBox {
  background: #000046;
  /* fallback for old browsers */
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #000046, #1CB5E0);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  padding: 20px;
  border-radius: 15px;
  margin: 5rem 0 2rem;
}

.btn-primary {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.15);
}

.explore h3 {
  font-size: 24px;
  margin-top: 20px;
}

footer ul li p {
  font-size: 16px;
}

.eventData {
  padding: 5rem 0;
  font-size: 16px;
}
.eventData h2 {
  font-size: 26px;
  font-weight: 700;
  color: #26235c;
  margin-bottom: 2rem;
}
.eventData p {
  margin-bottom: 2rem;
  font-size: 18px;
  color: #000046;
}
.eventData .nav-tabs {
  margin-bottom: 2rem;
}
.eventData .nav-tabs .nav-link {
  color: #26235c;
  font-weight: 500;
  border: 0;
  background-color: transparent;
}

.event {
  padding: 10rem 0 5rem;
  color: #fff;
  background: url("../images/baner.jpeg") no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
}
.event .container {
  margin-top: 5rem;
}
.event .breadcumb {
  margin-bottom: 2rem;
  display: flex;
}
.event .breadcumb li {
  margin-right: 10px;
}
.event .breadcumb li a {
  color: #fff;
}
.event .breadcumb li:not(:first-child)::before {
  display: inline-block;
  padding: 0 3px;
  content: "/";
}
.event h1 {
  font-size: 4rem;
  margin: 2rem 0 4rem;
}
.event h3 {
  font-size: 24px;
  color: #0a1f50;
}
.event p {
  color: #0a1f50;
  font-size: 18px;
}
.event .btn {
  font-size: 16px;
  background-color: #294586;
  border-radius: 30px;
  padding: 5px 20px;
}
.event .social {
  margin-bottom: 3rem;
}
.event .social li {
  margin-right: 5px;
}
.event .social li a {
  background-color: white;
  padding: 5px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.eventMap .eventBox {
  margin-top: -100px;
  max-width: 800px;
  background-color: white;
  padding: 3rem;
  border-radius: 30px;
  margin: -100px auto 0;
  position: relative;
  z-index: 1;
  color: #26235c;
  box-shadow: 0 10px 20px #ccc;
}
.eventMap h3 {
  font-size: 3.3rem;
}
.eventMap h4 {
  font-size: 2.2rem;
  margin: 1rem 0 2rem;
}
.eventMap p {
  font-size: 16px;
}

.explore figure {
  text-align: center;
  margin-top: 2rem;
}
.explore figure img {
  height: 290px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  width: 100%;
}
.explore figure figcaption h5 {
  font-size: 18px;
  margin-top: 15px;
}
.explore figure figcaption p {
  font-size: 14px;
  opacity: 0.7;
}

.branch-content2, .branch-content {
  display: none;
}

#branchSelect2, #branchSelect {
  font-size: 14px;
  border: 0 !important;
}

/* Menu Button */
.menu-button {
  background-color: transparent;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 18px;
}
.menu-button img {
  width: 30px;
}

/* Sidebar menu */
.side-menu {
  position: fixed;
  top: 0;
  left: -460px;
  height: 100vh;
  background: #000;
  width: 440px;
  padding-top: 20px;
  color: white;
  transition: left 0.3s ease;
  z-index: 1000;
}

.side-menu.active {
  left: 0;
}

.side-menu .list-unstyled li {
  padding: 16px 20px;
  cursor: pointer;
  font-size: 24px;
  color: #b3b3b3;
  font-weight: 500;
}

.side-menu .list-unstyled li:hover {
  background: #1e1e1e;
  cursor: pointer;
  color: #fff;
  border-left: 2px solid;
}

.menu-content {
  background: #111;
  color: white;
  padding: 20px;
  display: none;
  position: absolute;
  left: 440px;
  top: 0;
  height: 100vh;
  width: 600px;
  overflow-y: auto;
  z-index: 99999999999;
}

.menu-panel {
  cursor: pointer;
  display: none;
}
.menu-panel .bigBlog .bigBox {
  margin-bottom: 1.5rem;
}
.menu-panel .bigBlog .bigBox .bigContent a {
  color: #b3b3b3;
  font-size: 16px;
  font-weight: 500;
}
.menu-panel .bigBlog .bigBox .bigContent a h4 {
  text-transform: uppercase;
}
.menu-panel .bigBlog .bigBox .bigContent a:hover {
  color: #fff;
}

.menu-panel.active {
  display: block;
}

.menu-panel .item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-panel .item img {
  width: 130px;
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.menu-panel .item span {
  font-weight: bold;
  font-size: 15px;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.backdrop.active {
  display: block;
}

.close-button {
  background: #ff4d4d;
  color: white;
  border: none;
  padding: 8px 12px;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 20px;
}

.about {
  padding: 6rem 0 10rem;
}

.about h2 {
  font-size: 3.5rem;
  font-weight: bold;
  color: #212331;
  position: relative;
  padding-bottom: 25px;
}

.about .abt-img-2 {
  width: 90%;
}

.about .abt-img-1 {
  position: absolute;
  bottom: -3rem;
  left: 0;
}

.about img.abt-img-1 {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.205);
}

.about p {
  font-size: 1.6rem;
  color: rgba(33, 35, 49, 0.6);
  font-weight: 500;
  margin-bottom: 3rem;
}

.aboutUs {
  background-color: #fff;
  padding-bottom: 5rem;
}

.aboutUs h4 {
  margin: 3rem 0;
}

.aboutUs h5 {
  margin-top: 5rem;
}

.aboutUs p {
  font-size: 17px;
}

.heading-4 {
  font-size: 3.9rem;
  font-weight: 700;
}

.aboutUs ul li {
  font-size: 16px;
  margin-bottom: 1rem;
}

.aboutUs ul {
  margin-top: 20px;
}

.ourMember p {
  margin-bottom: 2rem;
}

.explore p {
  font-size: 16px;
  margin-bottom: 2rem;
}

.card img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.media h5 {
  font-size: 20px;
  margin-top: 0;
}

.btn-warning {
  font-size: 16px;
  padding: 5px 20px;
}

.owl-nav img {
  width: 35px;
}

.owl-nav button.owl-prev {
  transform: rotate(180deg);
}

.exploreItems .owl-carousel {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .side-menu {
    width: 200px;
  }
  .menu-content {
    left: 200px;
    width: calc(100% - 200px);
  }
  .menu-panel {
    grid-template-columns: 1fr;
  }
  .menu-panel .item img {
    width: 50px;
    height: 50px;
  }
  .navbar .btn,
  .navbar .nav-link {
    font-size: 14px;
    padding: 6px 10px;
  }
  .navbar-brand img {
    width: 120px;
  }
}
@media (max-width: 480px) {
  .side-menu {
    width: 180px;
  }
  .menu-content {
    left: 180px;
    width: calc(100% - 180px);
  }
  .menu-panel .item span {
    font-size: 13px;
  }
  .menu-panel .item {
    gap: 8px;
  }
  .menu-button img {
    width: 24px;
    height: 24px;
  }
}
.border-body .nav-item a {
  color: #b3b3b3;
  font-size: 16px;
}
.border-body .nav-item a.active {
  color: #fff;
  font-weight: bold;
}

.contactBox {
  text-align: left !important;
  background: #fff;
  padding: 3rem;
  border-radius: 10px;
  margin-top: 5rem;
  height: 80%;
}

.contactBox i,
.contactBox .fa,
.contactBox svg {
  color: #0a58ca;
  font-size: 25px;
}

.contactBox h4 {
  font-size: 18px;
  font-family: var(--spartan-font);
  font-weight: 600;
  margin: 3rem 0 1rem;
  color: #0a58ca;
  text-transform: uppercase;
}

.contactBox p {
  font-size: 16px;
}

.contactBox p a {
  color: #18202d;
}

.contactUs {
  padding: 5rem 0;
  font-size: 16px;
}

.filter .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}
.filter .card-header button {
  font-size: 14px;
  border: 0;
  background-color: transparent;
}
.filter .card-header button:hover {
  color: #0a58ca;
}
.filter .filter_date {
  padding: 10px;
  display: flex;
  justify-content: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.filter .filter_date button {
  font-size: 15px;
}

section.aboutUs.media {
  padding: 3rem 0;
}

.signUp {
  margin-top: 30px;
  background-color: #50b3dd;
  padding: 15px;
  font-size: 16px;
}
.signUp input {
  font-size: 16px;
}
.signUp button {
  font-size: 16px;
}

.media_list .card {
  display: flex;
  flex-direction: row;
}
.media_list .card img {
  width: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

section.explore.exploreItems {
  padding-bottom: 0;
}

.glossyCard {
  padding: 15px;
  margin-bottom: 20px;
  background-color: #f2f2f2;
}
.glossyCard p {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.accordion {
  width: 100%;
}
.accordion button {
  font-size: 16px;
}
.accordion a {
  font-size: 14px;
  color: #000;
}

.mediaCard {
  font-size: 16px;
  max-width: 360px;
  background-color: #0a58ca;
  color: #fff;
  padding: 30px;
}
.mediaCard a {
  font-size: 14px;
}

.scrollbar_container {
  height: 350px;
  margin-bottom: 2rem;
  overflow-y: scroll;
  padding: 12px;
  text-align: left;
}

.modelcommiteeInfo .nav-tabs {
  border: 0;
}
.modelcommiteeInfo .nav-tabs img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}
.modelcommiteeInfo .nav-tabs .nav-link, .modelcommiteeInfo .nav-tabs .nav-link.active {
  border: 0;
}
.modelcommiteeInfo .owl-nav {
  display: none !important;
}

.otherList {
  font-size: 16px;
}

.buttonMembers {
  margin-top: 20px;
}
.buttonMembers a {
  font-size: 20px;
  background-color: #0a58ca;
  padding: 10px 30px;
}

.tableMembers th {
  font-size: 16px;
}

span.eventT {
  position: absolute;
  z-index: 2;
  display: inline-block;
  padding: 10px;
  background: cornflowerblue;
  box-shadow: 0 0 3px rgba(3, 2, 2, 0.7098039216);
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 10px 0 10px 0;
}

.side-menu-content a {
  color: #fff;
}

.eventList {
  background-color: #f2f2f2;
  padding: 4rem 0;
}
.eventList a {
  font-size: 16px;
}
.eventList .bigBlog .bigBox {
  margin: 3rem 0;
}
.eventList .btn-warning {
  border-radius: 100px;
  font-weight: bold;
}

.sponsorship {
  padding: 4rem 0;
  font-size: 16px;
}
.sponsorship h2 {
  font-size: 24px;
  font-weight: bold;
}

.flipbooks {
  padding: 4rem 0;
  font-size: 16px;
}
.flipbooks figure h3 a {
  margin-top: 1.5rem;
  font-weight: 700;
  color: #0a1f50;
}
.flipbooks figure h3 a:hover {
  color: #0a58ca;
}

#flipbook {
  width: 100%;
  overflow: hidden;
  background-color: #f1f1f1;
}

#flipbook .page {
  width: 400px;
  height: 500px;
}

.page img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.flipButton button {
  font-size: 16px;
  border-radius: 100px;
  padding: 5px 20px;
}

.branch-content2 img, .branch-content img {
  margin-bottom: 15px;
}

.gallary {
  padding: 4rem 0 0;
}
.gallary h2 {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
  border-left: 3px solid #0a58ca;
}
.gallary figure {
  box-shadow: -2px 2px 10px 0px rgba(68, 68, 68, 0.4);
  transition: transform 0.3s ease-in-out;
  margin-bottom: 3rem;
  cursor: pointer;
}
.gallary figure:hover {
  transform: scale(1.02);
}
.gallary figure a h3 {
  position: relative;
  z-index: 1;
  padding: 15px;
  color: #444;
  background: #fff;
  text-transform: lowercase;
  letter-spacing: 1px;
  color: #828282;
  font-size: 16px;
}

.container.gallery-container {
  background-color: #fff;
  padding: 30px 50px;
}

.tz-gallery .lightbox {
  margin-bottom: 15px;
  position: relative;
}
.tz-gallery .lightbox span {
  position: absolute;
  bottom: 0;
  padding: 10px;
  font-size: 12px;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.4431372549);
  color: #000;
  font-weight: bold;
  transition: 0.3s linear;
}
.tz-gallery .lightbox:hover span {
  background-color: #0a58ca;
  color: #fff;
}

.tz-gallery .lightbox img {
  width: 100%;
  border-radius: 0;
  position: relative;
}

.baguetteBox-button {
  background-color: transparent !important;
}/*# sourceMappingURL=main.css.map */