ul li {
  list-style: none;
}

a {
  text-decoration: none !important;
  color: #444F5D !important;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
a:hover {
  color: #FA922A !important;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

body {
  color: #444F5D;
  font-family: "Barlow", sans-serif;
  overflow-x: hidden;
}

p {
  font-family: "Barlow", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Barlow", sans-serif;
  font-weight: 700 !important;
  color: #444F5D;
}

h2 {
  font-size: 35px !important;
}
@media (max-width: 767px) {
  h2 {
    font-size: 30px !important;
  }
}

img {
  border-radius: 5px;
}

.primary-btn {
  display: inline-block;
  padding: 0 30px;
  min-height: 40px;
  line-height: 40px;
  color: #fff !important;
  border-radius: 5px;
  background-color: #8D1E41;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.primary-btn:hover {
  color: #fff !important;
  background-color: #FA922A;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.white-btn {
  display: inline-block;
  padding: 0 30px;
  min-height: 40px;
  line-height: 40px;
  color: #444F5D !important;
  border-radius: 40px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.white-btn:hover {
  color: #fff !important;
  background-color: #FA922A;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

input {
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  padding: 0 15px;
}
input:focus {
  outline: none;
}

button {
  border: none;
}

.skin-bg {
  background-color: #F3ECDE;
}

.white-bg {
  background-color: #fff;
}

.skin-pattern {
  position: relative;
}
.skin-pattern::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url(../img/skin-pattern.png);
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
  z-index: 0;
}
.skin-pattern .container {
  position: relative;
  z-index: 9;
}

.white-pattern {
  position: relative;
}
.white-pattern .container {
  position: relative;
  z-index: 9;
}
.white-pattern::before {
  content: "";
  width: 400px;
  height: 100%;
  background-image: url(../img/white-pattern-left.png);
  background-size: cover;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
@media (max-width: 767px) {
  .white-pattern::before {
    width: 100%;
  }
}
.white-pattern::after {
  content: "";
  width: 400px;
  height: 100%;
  background-image: url(../img/white-pattern-right.png);
  background-size: cover;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
@media (max-width: 767px) {
  .white-pattern::after {
    width: 100%;
  }
}

.green-u-line-left::after {
  content: "";
  width: 100px;
  height: 4px;
  background-color: #029053;
  display: block;
  margin-top: 15px;
}

.green-u-line-center {
  width: -moz-fit-content;
  width: fit-content;
}
.green-u-line-center::after {
  content: "";
  width: 100px;
  height: 4px;
  background-color: #029053;
  display: block;
  margin: auto;
  margin-top: 10px;
}

.rounded-border {
  border-radius: 100px;
}

header {
  height: 120px;
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  header {
    height: 100px;
  }
}
@media (max-width: 576px) {
  header {
    height: 90px;
  }
}
header .logo img {
  height: 85px;
}
@media (max-width: 992px) {
  header .logo img {
    height: 70px;
  }
}
@media (max-width: 576px) {
  header .logo img {
    height: 65px;
  }
}
header .search {
  position: relative;
  margin-right: 15px;
  min-width: 250px;
}
header .search button {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 15px;
}
header nav ul {
  display: flex;
  justify-content: end;
  gap: 20px;
  padding: 0;
  margin: 0;
  margin-top: 15px;
  position: relative;
}
header nav ul a {
  font-weight: 500;
}
header nav ul li a {
  padding: 10px 0;
  display: inline-block;
  white-space: nowrap;
}
header nav ul li svg {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  height: 20px;
}
header nav ul li ul {
  position: absolute;
  z-index: 9999;
  display: block;
  background-color: #8D1E41;
  min-width: 200px;
  margin-top: 0;
  border-radius: 5px;
  top: 150px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
header nav ul li ul li {
  position: relative;
}
header nav ul li ul li svg {
  stroke: #fff;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(-90deg);
  height: 20px;
}
header nav ul li ul li a {
  width: 100%;
  padding: 10px 15px;
  display: inline-block;
  color: #fff !important;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
header nav ul li ul li a:hover {
  background-color: #FA922A;
  color: #fff !important;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
header nav ul li ul li ul {
  position: absolute;
  left: 80%;
  top: 0 !important;
  z-index: 0;
  opacity: 0 !important;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
header nav ul li ul li:hover {
  background-color: #FA922A !important;
}
header nav ul li ul li:hover a {
  color: #fff !important;
}
header nav ul li ul li:hover svg {
  stroke: #fff !important;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
header nav ul li ul li:hover ul {
  left: 100%;
  top: 0 !important;
  pointer-events: all;
  opacity: 1 !important;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
header nav ul li:hover > a {
  color: #FA922A !important;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
header nav ul li:hover > svg {
  stroke: #FA922A;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
header nav ul li:hover ul {
  top: 45px;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  z-index: 99999;
}
header nav ul li:nth-last-child(-n+3) ul li:hover ul {
  left: -100% !important;
}
header nav ul li:nth-last-child(-n+3) ul ul {
  left: -120% !important;
}

.banner {
  height: 700px;
  display: flex;
  align-items: end;
  position: relative;
  z-index: 9999;
}
@media (max-width: 767px) {
  .banner {
    height: 600px;
  }
}
.banner .banner-slider {
  width: 100%;
  position: relative;
  z-index: 9;
}
@media (max-width: 767px) {
  .banner .banner-slider {
    margin-bottom: 0;
  }
}
.banner .banner-slider .slider-item img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.banner .banner-slider .banner-content {
	background-color: #931f49ab;
	border-radius: 20px 20px 0 0;
	text-align: center;
	padding-bottom: 30px;
	padding-top: 30px;
}
@media (max-width: 992px) {
  .banner .banner-slider .banner-content {
    padding-right: 20px;
    width: 80%;
  }
}
@media (max-width: 767px) {
  .banner .banner-slider .banner-content {
    padding-right: 20px;
    width: 100%;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .banner .banner-slider .banner-content {
    padding-right: 0px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .banner .banner-slider .banner-content {
    padding: 20px 10px;
  }
}
.banner .banner-slider .banner-content h1 {
  font-size: 55px;
  font-weight: 600;
  color: #fff;
  text-shadow: 2px 2px 8px #000;
}
@media (max-width: 1200px) {
  .banner .banner-slider .banner-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 992px) {
  .banner .banner-slider .banner-content h1 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .banner .banner-slider .banner-content h1 {
    font-size: 30px;
  }
}
.banner .banner-slider .banner-content h6 {
  font-size: 24px;
  margin: 20px 0;
  color: #fff;
  font-weight: 400 !important;
}
@media (max-width: 992px) {
  .banner .banner-slider .banner-content h6 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .banner .banner-slider .banner-content h6 {
    font-size: 20px;
  }
}
.banner .banner-slider .slick-dots {
  width: 100px;
  text-align: left;
  bottom: -50px;
  display: none !important; 
}
.banner .banner-slider .slick-dots li {
  margin: 0 10px 0 0;
}
.banner .banner-slider .slick-dots li button {
  padding: 0;
}
.banner .banner-slider .slick-dots li button::before {
  font-size: 15px;
}
.banner .slide {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 767px) {
  .banner .slide {
    width: 100%;
  }
}
.banner .slide .banner-img-slider {
  position: absolute;
  z-index: -99;
  top: 0;
  right: 0;
  width: 100%;
  height: 700px;
  margin: 0;
}
@media (max-width: 767px) {
  .banner .slide .banner-img-slider {
    height: 600px;
  }
}
.banner .slide .banner-img-slider .slick-track {
  height: 100%;
}
.banner .slide .banner-img-slider .slick-list {
  padding: 0 !important;
  height: 100%;
}
.banner .slide .banner-img-slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
/*.banner::before {
  content: "";
  width: 60%;
  height: 100%;
  background-color: #8D1E41;
  position: absolute;
  top: 0;
  left: -110px;
  transform: skewX(10deg);
  border-radius: 0 200px 100px 0;
}*/
@media (max-width: 1200px) {
  .banner::before {
    border-radius: 0 100px 100px 0;
  }
}
@media (max-width: 992px) {
  .banner::before {
    width: 75%;
  }
}
@media (max-width: 767px) {
  .banner::before {
    width: 95%;
    height: 90%;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: none;
    border-radius: 20px;
    opacity: 0.9;
  }
}
/*.banner::after {
  content: "";
  width: 30%;
  height: 100%;
  background-color: #8D1E41;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/banner-pattern.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-size: contain;
}*/
@media (max-width: 767px) {
  .banner::after {
    display: none;
  }
}

.about {
  padding: 80px 0;
  /* CSS for popup styling */
}
@media (max-width: 767px) {
  .about {
    padding: 60px 0;
  }
}
.about .about-video {
  position: relative;
}
.about .about-video img {
  width: 100%;
}
.about .about-video button {
  position: absolute;
  width: 60px;
  height: 60px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: none;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  overflow: auto;
}
.popup .popup-content {
  position: relative;
  margin: 10% auto;
  padding: 20px;
  background-color: #fff;
  max-width: 800px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  width: 90%;
}
.popup .popup-content .close {
  position: absolute;
  top: -25px;
  right: -25px;
  font-size: 40px;
  font-weight: 400;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #8D1E41;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}
.popup .popup-content iframe {
  min-height: 400px;
}

.messages {
  padding: 80px 0 40px 0;
  position: relative;
}
@media (max-width: 767px) {
  .messages {
    padding: 60px 0 40px 0;
  }
}
.messages .container {
  position: relative;
  z-index: 99;
}
.messages .slick-list {
  padding: 40px 0;
  margin: 0 -12px;
}
.messages .slick-prev {
  width: 40px;
  height: 40px;
  background-image: url(../img/left-arrow.png);
  background-size: cover;
  left: -50px;
}
@media (max-width: 1200px) {
  .messages .slick-prev {
    left: -20px;
    z-index: 999;
  }
}
@media (max-width: 767px) {
  .messages .slick-prev {
    width: 30px;
    height: 30px;
    left: -10px;
  }
}
.messages .slick-prev::before {
  color: transparent !important;
}
.messages .slick-prev:hover {
  background-image: url(../img/left-arrow.png);
  opacity: 0.8;
}
.messages .slick-next {
  width: 40px;
  height: 40px;
  background-image: url(../img/right-arrow.png);
  background-size: cover;
  right: -50px;
}
@media (max-width: 1200px) {
  .messages .slick-next {
    right: -20px;
    z-index: 999;
  }
}
@media (max-width: 767px) {
  .messages .slick-next {
    width: 30px;
    height: 30px;
    right: -10px;
  }
}
.messages .slick-next::before, .messages .slick-next:focus {
  color: transparent !important;
}
.messages .slick-next:hover, .messages .slick-next:focus {
  background-image: url(../img/right-arrow.png);
  opacity: 0.8;
}
.messages .message-item {
  border-radius: 5px;
  background: #FFF;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin: 0 12px;
}
.messages .message-item .author {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.messages .message-item .author p {
  color: #FA922A;
  font-weight: 400;
  margin-top: 5px;
}

.committee {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .committee {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .committee .sec-title {
    text-align: center;
  }
}
.committee .member {
  text-align: center;
  padding: 0 30px;
}
.committee .member img {
  width: 100%;
  max-width: 150px;
  border-radius: 150px;
  border: 10px solid rgba(255, 255, 255, 0.5);
  margin: auto;
  margin-bottom: 15px;
}
.committee .member h5 {
    padding: 0;
    margin-bottom: 5px;
}
.committee .member p.deignation {
  color: #FA922A;
  font-weight: 500;
  margin: 0;
}
.committee .member a.message_link {
    color: #8d1e41 !important;
    display: block;
    font-weight: bold;
    margin-top: 5px;
    border-top: 1px solid;
    border-bottom: 1px solid;
	text-align: center;
}
.committee .member a.message_link:hover {
    color: #f8a754 !important;
}
.committee .member .social {
  display: flex;
  gap: 15px;
  padding: 0;
  justify-content: center;
}
.committee .member .social a:hover svg {
  stroke: #FA922A;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.committee .slick-prev {
  width: 40px;
  height: 40px;
  background-image: url(../img/left-arrow1.png);
  background-size: cover;
  left: -50px;
}
@media (max-width: 1200px) {
  .committee .slick-prev {
    left: -20px;
    z-index: 999;
  }
}
@media (max-width: 767px) {
  .committee .slick-prev {
    width: 30px;
    height: 30px;
    left: -10px;
  }
}
.committee .slick-prev::before {
  display: none;
}
.committee .slick-prev:hover, .committee .slick-prev:focus {
  background-image: url(../img/left-arrow1.png);
  opacity: 0.8;
}
.committee .slick-next {
  width: 40px;
  height: 40px;
  background-image: url(../img/right-arrow1.png);
  background-size: cover;
  right: -50px;
}
@media (max-width: 1200px) {
  .committee .slick-next {
    right: -20px;
    z-index: 999;
  }
}
@media (max-width: 767px) {
  .committee .slick-next {
    width: 30px;
    height: 30px;
    right: -10px;
  }
}
.committee .slick-next::before {
  display: none;
}
.committee .slick-next:hover, .committee .slick-next:focus {
  background-image: url(../img/right-arrow1.png);
  opacity: 0.8;
}

.events {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .events {
    padding: 60px 0;
  }
}
.events .event-item .cover img {
  width: 100%;
}
.events .event-item .content {
  margin: -30px 25px 0 25px;
  background-color: #fff;
  position: relative;
  padding: 35px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
  min-height: 200px;
}
@media (max-width: 1200px) {
  .events .event-item .content {
    padding: 20px;
    margin: -30px 10px 0 10px;
  }
}
.events .event-item .content .date {
  color: #FA922A;
  font-weight: 500;
}
.events .event-item .content h4 {
  font-size: 20px;
  line-height: 26px;
}
@media (max-width: 767px) {
  .events .title h2 {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .events .title h2::after {
    margin: auto;
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .events .title a {
    margin: 20px auto;
  }
}

.split-sec1 .skin-bg {
  width: 50%;
}
@media (max-width: 767px) {
  .split-sec1 .skin-bg {
    width: 100%;
  }
}
.split-sec1 .skin-bg ul {
  padding: 0;
}
.split-sec1 .skin-bg ul li {
  position: relative;
  padding: 5px 0;
  padding-left: 30px;
}
.split-sec1 .skin-bg ul li::before {
  content: "";
  width: 15px;
  height: 4px;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 16px;
  background-color: #8D1E41;
}
.split-sec1 .image {
  width: 50%;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .split-sec1 .image {
    display: none;
  }
}

.split-sec2 {
  position: relative;
}
.split-sec2 .primary-bg {
  width: 50%;
  background-color: #FA922A;
  color: #fff;
  position: relative;
  z-index: 9;
}
@media (max-width: 767px) {
  .split-sec2 .primary-bg {
    width: 100%;
  }
}
.split-sec2 .primary-bg::after {
  content: "";
  width: 30%;
  height: 100%;
  background-color: #FA922A;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../img/white-pattern-right.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  z-index: -1;
}
@media (max-width: 767px) {
  .split-sec2 .primary-bg::after {
    width: 100%;
  }
}
.split-sec2 .primary-bg h2 {
  color: #fff;
}
.split-sec2 .primary-bg h2::after {
  background-color: #fff;
}
.split-sec2 .primary-bg ul {
  padding: 0;
  margin-left: 5%;
}
.split-sec2 .primary-bg ul li {
  /*display: flex;*/
  margin-bottom: 30px;
  list-style: disc !important;
}
.split-sec2 .primary-bg ul li:last-child {
  margin-bottom: 0;
}
.split-sec2 .primary-bg ul li .count {
  min-width: 60px;
  height: 60px;
  border-radius: 60px;
  background-color: #fff;
  display: block;
  color: #8D1E41;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  line-height: 60px;
  margin-right: 15px;
}
.split-sec2 .primary-bg ul li h6 {
  color: #fff;
  font-weight: 500 !important;
  font-size: 20px;
}
.split-sec2 .image {
  width: 50%;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .split-sec2 .image {
    display: none;
  }
}

.register {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .register {
    padding: 60px 0;
  }
}
.register .register-box {
  padding: 60px 150px;
  background-color: #8D1E41;
  color: #fff;
  text-align: center;
  border-radius: 20px;
  position: relative;
}
@media (max-width: 992px) {
  .register .register-box {
    padding: 60px;
  }
}
.register .register-box div {
  position: relative;
  z-index: 9;
}
.register .register-box h2 {
  color: #fff;
  margin: auto;
  margin-bottom: 20px;
}
.register .register-box h2::after {
  background-color: #fff;
}
.register .register-box::before {
  content: "";
  width: 30%;
  height: 100%;
  background-color: #8D1E41;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/reg-left.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  z-index: 0;
  border-radius: 20px;
  background-size: contain;
}
@media (max-width: 767px) {
  .register .register-box::before {
    width: 50%;
  }
}
.register .register-box::after {
  content: "";
  width: 30%;
  height: 100%;
  background-color: #8D1E41;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../img/reg-right.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  z-index: 0;
  border-radius: 20px;
  background-size: contain;
}
@media (max-width: 767px) {
  .register .register-box::after {
    width: 50%;
  }
}

.gallery {
  padding: 80px 0;
  /* CSS for popup styling */
  /* Center the image */
}
@media (max-width: 767px) {
  .gallery {
    padding: 60px 0;
  }
}
.gallery .gallery-grid {
  display: grid;
  grid-template-areas: "item-1 item-2 item-3 item-4" "item-5 item-2 item-6 item-4";
  gap: 24px;
}
@media (max-width: 992px) {
  .gallery .gallery-grid {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .gallery .gallery-grid {
    grid-template-areas: "item-1 item-2" "item-5 item-2" "item-3 item-4" "item-6 item-4";
  }
}
.gallery .gallery-grid .item-1 {
  grid-area: item-1;
}
.gallery .gallery-grid .item-2 {
  grid-area: item-2;
}
.gallery .gallery-grid .item-3 {
  grid-area: item-3;
}
.gallery .gallery-grid .item-4 {
  grid-area: item-4;
}
.gallery .gallery-grid .item-5 {
  grid-area: item-5;
}
.gallery .gallery-grid .item-6 {
  grid-area: item-6;
}
.gallery .gallery-grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery .gallery-grid button {
  padding: 0;
  width: 100%;
  height: 100%;
}
.gallery .popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  overflow: auto;
}
.gallery .popup-content {
  position: relative;
  margin: 10% auto;
  padding: 20px;
  background-color: #fff;
  max-width: -moz-fit-content;
  max-width: fit-content;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.gallery .close {
  position: absolute;
  top: -25px;
  right: -25px;
  font-size: 40px;
  font-weight: 400;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #8D1E41;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}
.gallery #popupImage {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 80vh; /* Adjust this as needed */
}

.career {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .career {
    padding: 60px 0;
  }
}

footer {
  background-color: #029053;
  color: #fff;
}
footer a {
  color: #fff !important;
}
footer .main {
  padding: 80px 0;
}
@media (max-width: 767px) {
  footer .main {
    padding: 60px 0;
  }
}
footer .main .logo img {
  height: 80px;
  margin-bottom: 9px !important;
}
footer .main .social ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}
footer .main .social ul svg {
  stroke: #fff;
}
footer .main h6 {
  color: #fff;
  font-size: 18px;
  font-weight: 500 !important;
}
footer .main nav ul {
  margin: 0;
  padding: 0;
  -moz-column-count: 2;
       column-count: 2;
}
footer .main nav ul li {
  padding: 5px 0;
}
footer .main .contact ul {
  margin: 0;
  padding: 0;
}
footer .main .contact ul li {
  display: flex;
  padding: 10px 0;
}
footer .main .contact ul li svg {
  margin-right: 15px;
}
footer .copy {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
}
@media (max-width: 767px) {
  footer .copy {
    text-align: center;
  }
}
footer .copy .weberge {
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  footer .copy .weberge {
    margin: auto;
  }
}
footer .copy .weberge img {
  width: 120px;
}
footer .copy .weberge a {
  line-height: 0;
  margin-top: 5px;
}/*# sourceMappingURL=main.css.map */

#menu-main-menu>.menu-item-has-children::after {
    border: solid #444f62;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    content: " ";
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: 17px;
    right: -13px;
}
.sub-menu .menu-item-has-children::after {
	border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    content: " ";
    transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
    position: absolute;
    top: 22px;
    right: 8px;
}
#menu-main-menu>li.menu-item {
	position: relative;
    margin-left: 0;
}
.sub-menu li.menu-item {
	position: relative;
}

.banner-outer {
    padding: 0;
    margin: 0;
    max-height: 350px;
    overflow-y: hidden;
}
.banner-outer .container-fluid{
	padding: 0;
	margin: 0;
}
.inner-banner-section img {
    width: 100%;
}
.inner-content-outer {
    padding: 50px 0;
	background: #f7f2e9;
    position: relative;
    z-index: 9999;
}
.inner-content-outer:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url(../img/skin-pattern.png);
    background-size: cover;
    background-position: center;
    top: 0;
    left: 0;
    z-index: -1;
}
.inner-content-outer ul li {
    list-style: inherit;
}
.committee_box {
    text-align: center;
}
.committee_box img {
    margin: 0 auto;
}
.committee_box h3.widget-title {
    margin-top: 20px;
	font-size: 20px;
}
.committee_box h3 span {
    display: block;
    font-size: 15px;
}

.vision_mission {
    padding: 30px;
}
.vision_mission .panel-grid-cell {
    padding: 30px;
    min-height: 700px;
    box-shadow: 2px 2px 8px #746e6e;
    background: #f1eee8;
}
.vision_mission h4 {
    font-family: 'Mooli', sans-serif;
    text-align: center;
    line-height: 35px;
}
.inner-content-outer p {
    font-size: 19px;
    line-height: 33px;
}
.message-sliders img {
    width: 80px;
}
.com_headline {
    margin-top: 80px;
    border-bottom: 3px double #2b9d9d;
    margin-bottom: 30px;
}
.message-item.slick-slide {
    min-height: 500px;
}
.message-item .content p {
    text-align: justify;
    font-style: italic;
}
.member-slider .member p.mb-0 {
    text-align: justify;
}
.slick-dotted.slick-slider {
    margin-bottom: 0px !important;
}
span.footspec {
    display: block;
    font-weight: bold;
    text-align: left;
    margin-bottom: 10px;
    border-bottom: 1px dotted #ffffff;
    padding-bottom: 5px;
}
.inner-content h1 {
    margin-bottom: 30px;
}
section.about p {
    text-align: justify;
}

#wpadminbar a {
    color: #fff !important;
}