/*--------------------------------------------------------------
# General Items
--------------------------------------------------------------*/

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon/icomoon.eot?srf3rx");
  src: url("../fonts/icomoon/icomoon.eot?srf3rx#iefix") format("embedded-opentype"), url("../assets/fonts/icomoon/icomoon.ttf?srf3rx") format("truetype"), url("../assets/fonts/icomoon/icomoon.woff?srf3rx") format("woff"), url("../assets/fonts/icomoon/icomoon.svg?srf3rx#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'rahenlipi';
  src: url("../fonts/icomoon/banregular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "Quicksand", Arial, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.7);
}

p {
  text-align: justify;
}

a {
  color: #FFC300;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: #FFC300;
  outline: none;
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-family: "Quicksand", Arial, sans-serif;
  font-weight: 400;
  margin: 0 0 30px 0;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Header Logo & Main Menu
--------------------------------------------------------------*/

#uapaaa-main-menu ul {
  text-align: center;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  #uapaaa-main-menu ul {
    margin: 0 0 2em 0;
    text-decoration: none;
  }
}

#uapaaa-main-menu ul li {
  margin: 0 0 5px 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

#uapaaa-main-menu ul li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  position: relative;
  padding: 10px 0;
  font-family: "Quicksand", Arial, sans-serif;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#uapaaa-main-menu ul li a:after {
  content: "";
  position: absolute;
  height: 1px;
  bottom: 7px;
  left: 0;
  right: 0;
  background-color: #FFC300;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -ms-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;

}

#uapaaa-main-menu ul li a:hover {
  text-decoration: none;
  color: white;
}

#uapaaa-main-menu ul li a:hover:after {
  visibility: visible;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
  text-decoration: none;
}

#uapaaa-main-menu ul li.uapaaa-active a {
  color: #FFC300;
  text-decoration: none;
  font-weight: 600;
}

#uapaaa-main-menu ul li.uapaaa-active a:after {
  visibility: visible;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}

/*--------------------------------------------------------------
# Sign in form
--------------------------------------------------------------*/

.signin-form {
  max-width: 400px;
  margin: auto;
  padding-bottom: 50px;
}


.form-group {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signin-form .form-group input {
  width: 120px;
  height: 30px;
  padding: 5px;
  font-weight: 500;
  font-size: 12px;
  font-family: "Quicksand", Arial, sans-serif;
  text-align: center;
  border: 2px solid grey;
  border-radius: 15px;
  letter-spacing: 1px;
  background-color: #e0e0e0;
  transition: background-color 0.3s ease;
}

.signin-form .form-group input:focus {
  background-color: #fff;
}

.signin-form .form-group button {
  width: 80px;
  height: 30px;
  padding: 5px;
  font-family: "Quicksand", Arial, sans-serif;
  text-align: center;
  border: 2px solid grey;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  background-color: #007bff;
  color: #fff;
  border: 1px solid #007bff;
  cursor: pointer;
}

.signin-form .form-group button:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.signin-form .form-group .logout-btn {
  width: 100px;
  height: 30px;
  padding: 5px;
  font-family: "Quicksand", Arial, sans-serif;
  text-align: center;
  border: 2px solid grey;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  background-color: #FFC300;
  color: #fff;
  cursor: pointer;
}

.signin-form .form-group .logout-btn:hover {
  background-color: darkorange;
  border-color: darkorange;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #FFC300;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #FFC300;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  transition: all ease-in-out 0.5s;
  z-index: 9997;
  transition: all 0.5s;
  padding: 0 15px;
  background: #040b14;
  overflow-y: auto;
}

#header .profile img {
  margin-top: 50px;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 100px;
  border: 0px;
}

#header .profile h1 {
  font-size: 24px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  -moz-text-align-last: center;
  text-align-last: center;
  font-family: "Poppins", sans-serif;
}

#header .profile h1 a,
#header .profile h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .profile .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #212431;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#header .profile .social-links a:hover {
  background: #FFC300;
  color: #fff;
  text-decoration: none;
}

#main {
  margin-left: 300px;
}

.container,
.container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 1199px) {
  #header {
    left: -300px;
  }

  #main {
    margin-left: 0;
  }

  .container,
  .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.nav-menu {
  padding: 30px 0 0 0;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #a8a9b4;
  padding: 12px 15px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
}

.nav-menu a i,
.nav-menu a:focus i {
  font-size: 24px;
  padding-right: 8px;
  color: #6f7180;
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover>a {
  text-decoration: none;
  color: #fff;
}

.nav-menu a:hover i,
.nav-menu .active i,
.nav-menu .active:focus i,
.nav-menu li:hover>a i {
  color: #149ddd;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  left: 30px;
  /* Change this line to position on the left side */
  top: 30px;
  z-index: 9998;
  border: 0;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  background-color: #FFC300;
  color: #fff;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 50px;
  cursor: pointer;
}


.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  /* background: url("../img/hero-bg.jpg") top center; */
  background-size: cover;
}

#hero:before {
  content: "";
  background: rgba(5, 13, 24, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

#hero .hero-container {
  position: center;
  z-index: 2;
  min-width: 300px;
  padding: 30PX;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 30px;
  font-weight: 400;
  line-height: 30px;
  color: #fff;
  text-align: center;
}

#hero p {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
}

#hero p span {
  color: #fff;
  padding-bottom: 4px;
  letter-spacing: 1px;
  border-bottom: 3px solid #FFC300;
  text-align: center;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 25px;
    line-height: 25px;
  }

  #hero p {
    font-size: 30px;
    line-height: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-bg {
  background: #f5f8fd;
}

.section-title p {
  margin-bottom: 0;
}

section .usericon {
  padding-top: 30px;
  padding-right: 30px;
  overflow: hidden;
}

.section-no-margin {
  margin-bottom: 0;
  margin-right: 30px;
}

/*--------------------------------------------------------------
# Text Style
--------------------------------------------------------------*/
.hedingsmall {
  font-size: 18px;
  margin-bottom: 1.5em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 1.5;
  position: relative;
}

.hedingsmall:after {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 3px;
  content: '';
  background: #FFC300;
}

.admin_ec_heading {
  font-size: 14px;
  margin-bottom: 2em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 1.5;
  position: relative;
}

.admin_ec_heading:after {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 2px;
  content: '';
  background: #FFC300;
}


.news_job {
  line-height: 1.5;
  text-align: justify;
}

.tophead {
  margin-bottom: 10px;
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: #999999;
  font-weight: 500;
  letter-spacing: 5px;
}

.mainhead {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 1.8;
  position: relative;
}

.mainhead:after {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 4px;
  content: '';
  background: #FFC300;
}

.thumbtext {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  letter-spacing: 2px;
}

.directorytext {
  display: block;
  font-size: 12px;
  font-family: "Quicksand", Arial, sans-serif;
  color: #999999;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.directorytextbig {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Quicksand", Arial, sans-serif;
  letter-spacing: 1px;
  position: relative;
}

.jobtext {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  font-family: "Quicksand", Arial, sans-serif;
  color: #999999;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: justify;
}

.jobtexthead {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
  font-family: "Quicksand", Arial, sans-serif;
  color: #FFC300;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

body>section#directory {
  margin-top: 0;
}

.text1 {
  display: block;
  font-size: 12px;
  font-family: "Quicksand", Arial, sans-serif;
  color: #999999;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}


.text1lower {
  display: block;
  font-size: 12px;
  font-family: "Quicksand", Arial, sans-serif;
  color: #999999;
  font-weight: 500;
  letter-spacing: 1px;
}

.text2 {
  display: block;
  font-size: 12px;
  margin-bottom: 30px;
  font-family: "Quicksand", Arial, sans-serif;
  color: #999999;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.text3 {
  display: block;
  font-size: 14px;
  font-family: "Quicksand", Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
  text-align: justify;
  line-height: 1.5;
}

.text4 {
  font-size: 12px;
  font-family: "Quicksand", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.text5 {
  font-size: 12px;
  font-family: "Quicksand", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.text6 {
  display: block;
  font-size: 12px;
  font-family: "Quicksand", Arial, sans-serif;
  color: #999999;
  font-weight: 500;
  letter-spacing: 1px;
}

.heading2bangla {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 500;
  font-family: "rahenlipi";
  position: relative;
  padding-top: 5px;
  padding-bottom: 5px;
}

.ec_head2 {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 5px;
  position: relative;
  margin-bottom: 10px;
}

.ec_head2:after {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 2px;
  content: '';
  background: #FFC300;
}

.ec_timeline {
  margin-bottom: 0px;
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: #999999;
  font-weight: 500;
  letter-spacing: 2px;
}

.uapaaa-heading4 {
  display: block;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  padding: 0;
}

.textec {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: #999999;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.heading-ec {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  color: #999999;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.collection {
  font-size: 24px;
  font-family: "Quicksand", Arial, sans-serif;
  color: #FFC300;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.year {
  font-size: 20px;
  font-family: "Quicksand", Arial, sans-serif;
  color: #999999;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.uapaaa-heading2bangla {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "rahenlipi";
  position: relative;
  padding-top: 5px;
  padding-bottom: 5px;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #149ddd;
  line-height: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts {
  padding-bottom: 30px;
}

.facts .count-box {
  padding: 30px;
  width: 100%;
}

.facts .count-box i {
  display: block;
  font-size: 44px;
  color: #FFC300;
  float: left;
  line-height: 0;
}

.facts .count-box span {
  font-size: 48px;
  line-height: 40px;
  text-transform: uppercase;
  text-align: center;
  display: block;
  font-weight: 700;
  color: #050d18;
  margin-left: 60px;
}

.facts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-size: 14px;
  text-align: center;
  color: #122f57;
}

.facts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #122f57;
  font-size: 15px;
  transition: ease-in-out 0.3s;
}

.facts .count-box a:hover {
  color: #1f5297;
}

/*--------------------------------------------------------------
# Akills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #050d18;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #dce8f8;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #149ddd;
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #050d18;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #1f5297;
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #050d18;
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: #e4edf9;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #1f5297;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 200px;
  /* Set a fixed height for portfolio items */
}

.portfolio .portfolio-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensure the image covers the entire container */
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding-left: 10px;
  padding-right: 10px;
  text-transform: uppercase;
  text-align: center;
  background: #FFC300;
  transition: 0.3s;
  width: 100%;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: #FFC300;
}

.portfolio .portfolio-wrap .portfolio-links a+a {
  border-left: 1px solid #FFC300;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #149ddd;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #149ddd;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(5, 13, 24, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
}

.services .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #149ddd;
  border-radius: 50%;
  transition: 0.5s;
  border: 1px solid #149ddd;
}

.services .icon i {
  color: #fff;
  font-size: 24px;
  line-height: 0;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #149ddd;
}

.services .title {
  margin-left: 80px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #343a40;
}

.services .title a:hover {
  color: #149ddd;
}

.services .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #c3e8fa;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: #fff;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #fff;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #149ddd;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #149ddd;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 130px;
}

.contact .info {
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
  font-size: 20px;
  color: #149ddd;
  float: left;
  width: 44px;
  height: 44px;
  background: #dff3fc;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #050d18;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #173b6c;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #149ddd;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #149ddd;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 15px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #149ddd;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #37b3ed;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background: #f9f9f9;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #0e2442;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 15px;
  color: #f4f6fd;
  font-size: 14px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 9999;
  background: #040b14;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #eaebf0;
}

@media (max-width: 1199px) {
  #footer {
    position: static;
    width: auto;
    padding-right: 20px 15px;
  }
}

/*--------------------------------------------------------------
# Birthday
--------------------------------------------------------------*/
.member {
  text-align: center;
}

.member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.member-info {
  text-align: center;
}

.member-info,
.member-info a {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  text-decoration: none !important;
}

.member-info .batch-no {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  text-decoration: none !important;
  display: block;
  /* Ensure the batch number is on a new line */
}

.member-info .batch-no-text {
  text-decoration: none !important;
}

/*--------------------------------------------------------------
# User Icon
--------------------------------------------------------------*/
.usericon {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding-top: 30px;
  padding-right: 30px;
  width: 100%;
  height: 60px;
  /* Set the height of the fixed element */
  z-index: 1000;
  /* Adjust the z-index as needed */
  background-color: white;
  /* Set the background color */
  opacity: 1;
  /* Make it non-transparent */
}

.usericon-right {
  margin: 0;
}

.form-control-dark {
  color: #fff;
  background-color: var(--bs-dark);
  border-color: var(--bs-gray);
}

.form-control-dark:focus {
  color: #fff;
  background-color: var(--bs-dark);
  border-color: #fff;
  box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .25);
}

.bi {
  vertical-align: -.125em;
  fill: currentColor;
}

.text-small {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.dropdown-toggle {
  outline: 0;
}

.user_icon {
  font-size: 10px;
  text-transform: uppercase;
  color: #999999;
  font-weight: 500;
  letter-spacing: 2px;
  float: right;
}


.user_icon {
  display: inline-block; /* Apply inline-block to the container */
}

.user_icon img {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  margin-bottom: 1em;
  border: 1px solid #FFC300;
  float: right;
}


.user_icon span {
  padding: 5px;
}


.user-menu {
  position: relative;
  /* Change to relative positioning */
  display: inline-block;
  cursor: pointer;
  align-items: end;
}

.user-menu-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  right: 0;
  /* Position the menu to the right */
  top: 100%;
  /* Position it below the user icon */
}

.user-menu:hover .user-menu-content {
  display: block;
}

.user-menu-content a {
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.user-menu-content a:hover {
  background-color: #ddd;
}

/*--------------------------------------------------------------
# Filter Directory
--------------------------------------------------------------*/
.filter_form1 {
  background: #fafafa;
  padding: 5px;
}

.filter_span {
  font-size: 12px;
  color: #484848;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 5px;
  /* 10px top, 5px right, 15px bottom, 8px left */
  height: 30px;
}

.input_area {
  /* flex: 1;
  box-sizing: border-box; */
  font-size: 12px;
  min-height: 28px;
  height: auto;
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 14px;
  margin: 5px 0 5px 0;
  /* 10px top, 5px right, 15px bottom, 8px left */
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  background: white;
}

.input_area:focus {
  outline: 1px solid rgba(0, 0, 0, 0.2);
}


.filter_button {
  min-height: 28px;
  height: auto;
  color: #fff;
  background-color: #FFC300;
  /* Orange color */
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 14px;
  font-size: 12px;
  margin: 5px;
  text-transform: uppercase;
  border: none;
  transition: background-color 0.3s;
  /* Adding a smooth transition effect */
}

.filter_button:hover {
  background-color: #FFA500;
  /* Darker orange color on hover */
}

/*--------------------------------------------------------------
# Image Style
--------------------------------------------------------------*/

.smallimage {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  width: 100px;
  height: 100px;
  border: 2px solid #FFC300;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}

.awardimage {
  background-size: cover;
  object-fit: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
}


.about-img,
.about-img-2,
.services-img {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.medimagecircle {
  background-size: cover;
  object-fit: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: 30px;
  border-radius: 50%;
  border: 2px solid #FFC300;
}

.medimage {
  background-size: cover;
  object-fit: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  width: 125px;
  height: 125px;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 2px solid #FFC300;
}

.ecmemberimg {
  background-size: cover;
  object-fit: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  border: 2px solid #FFC300;
}

.ecmemberimg1 {
  background-size: cover;
  object-fit: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  width: 120px;
  height: 120px;
  border: 1px solid #FFC300;

}

/*--------------------------------------------------------------
# Status Classs
--------------------------------------------------------------*/

.regular_class {
  display: inline-block;
  font-size: 12px;
  font-family: "Quicksand", Arial, sans-serif;
  color: white;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: green;
  border-radius: 1em;
  padding: 0.2em 1em;
  margin-top: 5px;
}

.irregular_class {
  display: inline-block;
  font-size: 12px;
  font-family: "Quicksand", Arial, sans-serif;
  color: white;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: orange;
  border-radius: 1em;
  padding: 0.2em 1em;
  margin-top: 5px;
}

.deceased_class {
  display: inline-block;
  font-size: 12px;
  font-family: "Quicksand", Arial, sans-serif;
  color: white;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: black;
  border-radius: 1em;
  padding: 0.2em 1em;
  margin-top: 5px;
}

/*--------------------------------------------------------------
# Registration form
--------------------------------------------------------------*/
.regiform {
  flex: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fafafa;
  height: 30px;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  margin: 0;
  padding-left: 10px;
}

.regiform:active,
.regiform:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: transparent;
  background: #f0f0f0;
  opacity: 0.5;

}

.regiform input[type="text"] {
  margin: 0;
}

.regiform-inline {
  display: flex;
  font-size: 14px;
  font-weight: 400;
  padding: 0;
}

.regiform-inline .regiform {
  flex: 1;
  min-width: 0;
  padding-left: 10px;
}

.regiform:focus {
  outline: none;
  border-color: grey;
}

.submit_button {
  height: 30px;
  border-radius: 15px;
  color: white;
  background-color: #FFC300;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  font-weight: 600;
  font-size: 12px;
  margin-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
}

.submit_button:hover {
  background-color: #FFA500;
  color: white;
}

.regiform input[type="file"] {
  height: 30px;
  /* Set your desired height */
  width: 100%;
  /* Set your desired width */
  font-size: 11px;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
/* CONTACT PAGE */

.uapaaa-feature {
  text-align: left;
  width: 100%;
  float: left;
  margin-bottom: 20px;
  position: relative;
}

.uapaaa-feature .uapaaa-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  display: table;
  text-align: center;
  background: rgba(0, 0, 0, 0.03);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.uapaaa-feature .uapaaa-icon i {
  display: table-cell;
  vertical-align: middle;
  color: #FFC300;
  font-size: 40px;
  height: 60px;
}

@media screen and (max-width: 1200px) {
  .uapaaa-feature .uapaaa-icon i {
    font-size: 40px;
  }
}

.uapaaa-feature .uapaaa-text {
  padding-left: 80px;
  width: 100%;
}

.uapaaa-feature .uapaaa-text h2,
.uapaaa-feature .uapaaa-text h3 {
  margin: 0;
  padding: 0;
}

.uapaaa-feature .uapaaa-text h3 {
  font-weight: 500;
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.uapaaa-feature.uapaaa-feature-sm {
  margin-top: 30px;
}

.uapaaa-feature.uapaaa-feature-sm .uapaaa-icon i {
  color: #FFC300;
  font-size: 40px;
}

@media screen and (max-width: 1200px) {
  .uapaaa-feature.uapaaa-feature-sm .uapaaa-icon i {
    font-size: 28px;
  }
}

.uapaaa-feature-lg .uapaaa-text h2,
.uapaaa-feature-lg .uapaaa-text h3 {
  margin: 0;
  padding: 0;
}

.uapaaa-feature-lg .uapaaa-text h3 {
  font-weight: 500;
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.contact_text {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
  border: transparent;
  background: #fafafa;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  margin-bottom: 10px;
  padding: 0 0 0 10px;
  margin-right: 40px;
}

.contact_text1 {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
  border: transparent;
  background: #fafafa;
  width: 100%;
  height: 30px;
  font-size: 14px;
  font-weight: 400;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  margin-bottom: 10px;
  padding: 0 0 0 10px;
  margin-right: 40px;
}

.contact_text1:active,
.contact_text1:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: transparent;
  background: #f0f0f0;
}


.contact_text1:focus {
  outline: none;
  border-color: grey;
}

.contact_text:active,
.contact_text:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: transparent;
  background: #f0f0f0;
}


.contact_text:focus {
  outline: none;
  border-color: grey;
}

/* THUBNAIL IMAGE */

.modal {
  z-index: 1050;
  max-width: 100%;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1050;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-image {
  display: block;
  margin: 0 auto;
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2000; /* Set a higher z-index */
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1050;
  /* Set this z-index below the modal */
}

.modal-navigation {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.modal.show,
.modal-overlay.show {
  display: block;
}

.image-container {
  position: relative;
}

.modal-prev,
.modal-next {
  position: relative;
  cursor: pointer;
  font-size: 24px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  display: inline-block;
}

.modal-navigation .modal-prev,
.modal-navigation .modal-next {
  background: none;
  border: none;
}

.modal-prev {
  margin-right: 20px;
}

.modal-next {
  margin-left: 20px;
}

.modal-prev,
.modal-next {
  z-index: 1060;
  /* Set a higher z-index */
}

/* BUTTON */

.btn {
  margin-right: 4px;
  margin-bottom: 4px;
  font-family: "Quicksand", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 4px 15px !important;
}

.btn.btn-sm {
  padding: 4px 15px !important;
}

.btn.btn-md {
  padding: 8px 20px !important;
}

.btn.btn-lg {
  padding: 18px 36px !important;
}

.btn:hover,
.btn:active,
.btn:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.btn-primary {
  background: #FFC300;
  color: #fff;
  border: 2px solid #FFC300;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: #ffc91a !important;
  border-color: #ffc91a !important;
}

.btn-primary.btn-outline {
  background: transparent;
  color: #FFC300;
  border: 2px solid #FFC300;
}

.btn-primary.btn-outline:hover,
.btn-primary.btn-outline:focus,
.btn-primary.btn-outline:active {
  background: #FFC300;
  color: #fff;
}

.btn-success {
  background: #5cb85c;
  color: #fff;
  border: 2px solid #5cb85c;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
  background: #4cae4c !important;
  border-color: #4cae4c !important;
}

.btn-success.btn-outline {
  background: transparent;
  color: #5cb85c;
  border: 2px solid #5cb85c;
}

.btn-success.btn-outline:hover,
.btn-success.btn-outline:focus,
.btn-success.btn-outline:active {
  background: #5cb85c;
  color: #fff;
}

.btn-info {
  background: #5bc0de;
  color: #fff;
  border: 2px solid #5bc0de;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active {
  background: #46b8da !important;
  border-color: #46b8da !important;
}

.btn-info.btn-outline {
  background: transparent;
  color: #5bc0de;
  border: 2px solid #5bc0de;
}

.btn-info.btn-outline:hover,
.btn-info.btn-outline:focus,
.btn-info.btn-outline:active {
  background: #5bc0de;
  color: #fff;
}

.btn-warning {
  background: #f0ad4e;
  color: #fff;
  border: 2px solid #f0ad4e;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active {
  background: #eea236 !important;
  border-color: #eea236 !important;
}

.btn-warning.btn-outline {
  background: transparent;
  color: #f0ad4e;
  border: 2px solid #f0ad4e;
}

.btn-warning.btn-outline:hover,
.btn-warning.btn-outline:focus,
.btn-warning.btn-outline:active {
  background: #f0ad4e;
  color: #fff;
}

.btn-danger {
  background: #d9534f;
  color: #fff;
  border: 2px solid #d9534f;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
  background: #d43f3a !important;
  border-color: #d43f3a !important;
}

.btn-danger.btn-outline {
  background: transparent;
  color: #d9534f;
  border: 2px solid #d9534f;
}

.btn-danger.btn-outline:hover,
.btn-danger.btn-outline:focus,
.btn-danger.btn-outline:active {
  background: #d9534f;
  color: #fff;
}

.btn-outline {
  background: none;
  border: 2px solid gray;
  font-size: 16px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* PROFILE SOCIAL LINK  */

ul.profile_social_link {
  text-align: left;
  padding: 0;
  list-style: none;
}

ul.profile_social_link li {
  display: inline-block;
  margin-right: 10px;
}

ul.profile_social_link li a {
  color: #999999;
  text-decoration: none;
}

ul.profile_social_link li a:hover {
  color: #FFC300;
}

/* CONSTITUTION  */

#constitution p {
  font-size: 16px;
  text-align: justify;
  line-height: 1.5;
}

.section {
  font-size: 14pt;
  text-align: justify;
  line-height: 1.5;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  text-decoration: none;
}

#constitution ol {
  padding-left: 30px;
  margin: 0;
  line-height: 1.5;
  font-size: 14pt;
  text-align: justify;
  margin-bottom: 10px;
}

#constitution ol li {
  padding-left: 12pt;
  margin: 0;
  line-height: 1.5;
  font-size: 12pt;
  text-align: justify;
  margin-bottom: 10px;
}

/* Reaction Button  */

.image-button {
  display: inline-block; /* Ensures the container only takes up as much width as necessary */
}

.image-button-inner {
  border: none; /* Remove button border */
  background: none; /* Remove button background */
  padding: 0; /* Remove button padding */
  cursor: pointer; /* Change cursor to pointer on hover if needed */
}

/* Custom pagination style */
.custom-pagination .page-link {
  padding-top: 0.20rem; /* Adjust top padding as needed */
  padding-bottom: 0.20rem; /* Adjust bottom padding as needed */
  color: #FFC300; /* Change text color */
  font-weight: 500; 
}

.custom-pagination .page-item.active .page-link {
  background-color: #FFC300 !important;
  border-color: #FFC300 !important; /* Optional: to change the border color */
  color: #fff !important; /* Optional: to change the text color */
}

/* Custom button styles */
.custom-btn {
    color: #FFC300; /* Set default text color */
    border-color: #FFC300; /* Set default border color */
    padding-top: 0.20rem; /* Adjust top padding as needed */
    padding-bottom: 0.20rem; /* Adjust bottom padding as needed */
    background-color: transparent !important; /* Set default background color */
    font-weight: 600;
}

/* Active state for custom buttons */
.custom-btn.active,
.custom-btn:hover {
    background-color: #FFC300 !important; /* Set background color for active state */
    color: #fff !important; /* Set text color for active state */
    border-color: #FFC300 !important; /* Set border color for active state */
    font-weight: 600;
}



