/********** Template CSS **********/
:root {
  --primary: #32c36c;
  --light: #f6f7f8;
  --dark: #1a2a36;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-black {
  font-weight: 900 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-brand,
.navbar a.btn {
  height: 75px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 25px;
  padding: 25px 0;
  color: var(--dark);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.owl-carousel-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
    position: relative;
    min-height: 500px;
  }

  .header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .header-carousel .owl-carousel-item p {
    font-size: 16px !important;
  }
}

.header-carousel .owl-dots {
  position: absolute;
  width: 60px;
  height: 100%;
  top: 0;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
  position: relative;
  width: 45px;
  height: 45px;
  margin: 5px 0;
  background: #ffffff;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.9);
  border-radius: 45px;
  transition: 0.5s;
}

.header-carousel .owl-dots .owl-dot.active {
  width: 60px;
  height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 2px;
  border-radius: 45px;
  transition: 0.5s;
}

.page-header {
  background:
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

/*** About ***/
@media (min-width: 992px) {
  .container.about {
    max-width: 100% !important;
  }

  .about-text {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .about-text {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .about-text {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Service ***/
.service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.service-icon {
  position: relative;
  margin: -50px 0 25px 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: #ffffff;
  border-radius: 100px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transition: 0.5s;
}

.service-item:hover .service-icon {
  color: #ffffff;
  background: var(--primary);
}

/*** Quote ***/
@media (min-width: 992px) {
  .container.quote {
    max-width: 100% !important;
  }

  .quote-text {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .quote-text {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .quote-text {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Team ***/
/* =========================================================
   MODERN SPEAKER / TEAM CARD
   Bootstrap 5 Compatible
   ========================================================= */

/* ==========================================
   SPEAKER CARD - BOTTOM SOCIAL ICON
   ========================================== */

/* ==========================================
   SPEAKER CARD
   ========================================== */

.team-item {
  position: relative;
  background: #fff;
  width: 250px;

  border: 1px solid #edf0f4;
  border-radius: 18px !important;
  overflow: hidden;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);

  transition: all 0.35s ease;
}

.team-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* ==========================================
   IMAGE AREA
   ========================================== */

.team-item > .d-flex {
  position: relative;

  display: block !important;

  width: 250px;
  height: 250px;

  background: #f5f6f8;

  /* IMPORTANT */
  overflow: visible !important;
}

/* Speaker image */
.team-item > .d-flex > img {
  display: block;

  width: 250px !important;
  height: 250px !important;

  object-fit: cover;
  object-position: center;

  border-radius: 0 !important;

  transition: transform 0.5s ease;
}

/* ==========================================
   SOCIAL ICON
   HALF INSIDE / HALF OUTSIDE
   ========================================== */

.team-item .team-social {
  position: absolute;

  left: 50%;
  bottom: -27px;

  z-index: 20;

  transform: translateX(-50%);

  width: 58px !important;
  height: 58px;

  min-width: 58px;

  display: flex !important;
  align-items: center;
  justify-content: center;

  padding: 0 !important;

  background: #ffffff;

  border-radius: 50%;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);

  /* Do not allow it to be clipped */
  overflow: visible !important;

  transition: all 0.3s ease;
}

/* Red circular icon */
.team-item .team-social .btn {
  width: 46px;
  height: 46px;

  display: flex !important;
  align-items: center;
  justify-content: center;

  padding: 0 !important;
  margin: 0 !important;

  border: none !important;
  border-radius: 50% !important;

  background: #32c36c;

  color: #fff !important;

  font-size: 16px;

  box-shadow: 0 3px 10px rgba(210, 46, 67, 0.25);

  transition: all 0.3s ease;
}

/* Icon hover */
.team-item .team-social .btn:hover {
  background: #b82337;

  transform: scale(1.08);

  box-shadow: 0 7px 18px rgba(210, 46, 67, 0.35);
}

/* Card hover */
.team-item:hover .team-social {
  transform: translateX(-50%) translateY(-3px);
}

/* ==========================================
   SPEAKER DETAILS
   ========================================== */

.team-item > .p-4 {
  position: relative;

  padding: 48px 27px 28px !important;

  background: #fff;

  text-align: left;
}

/* Name */
.team-item h5 {
  margin: 0 0 10px;

  color: #182230;

  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

/* Red underline */
.team-item h5::after {
  content: "";

  display: block;

  width: 42px;
  height: 4px;

  margin-top: 10px;
  justify-self: center;

  border-radius: 10px;

  background: #225ba2;

  transition: width 0.3s ease;
}

.team-item:hover h5::after {
  width: 65px;
}

/* Designation */
.team-item span {
  display: block;

  color: #687385;

  font-size: 15px;

  line-height: 1.65;
  text-align: center;
}

/* ==========================================
   TABLET
   ========================================== */

@media (max-width: 991px) {
  .team-item > .d-flex {
    height: 270px;
  }

  .team-item > .d-flex > img {
    height: 270px !important;
  }

  .team-item .team-social {
    width: 54px !important;
    height: 54px;

    min-width: 54px;

    bottom: -25px;
  }

  .team-item .team-social .btn {
    width: 43px;
    height: 43px;
  }

  .team-item > .p-4 {
    padding: 44px 20px 25px !important;
  }

  .team-item h5 {
    font-size: 19px;
  }

  .team-item span {
    font-size: 14px;
  }
}

/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 767px) {
  .team-item {
    margin-bottom: 25px;
    margin-left: 70px;

    border-radius: 16px !important;
  }

  .team-item > .d-flex {
    height: 270px;
  }

  .team-item > .d-flex > img {
    height: 270px !important;
  }

  .team-item .team-social {
    width: 54px !important;
    height: 54px;

    min-width: 54px;

    bottom: -25px;
  }

  .team-item .team-social .btn {
    width: 43px;
    height: 43px;

    font-size: 15px;
  }

  .team-item > .p-4 {
    padding: 43px 18px 23px !important;
  }

  .team-item h5 {
    font-size: 18px;
  }

  .team-item span {
    font-size: 13px;

    line-height: 1.6;
  }
}

/* ==========================================
   SMALL MOBILE
   ========================================== */

@media (max-width: 480px) {
  .team-item > .d-flex {
    height: 240px;
  }

  .team-item > .d-flex > img {
    height: 240px !important;
  }

  .team-item .team-social {
    width: 50px !important;
    height: 50px;

    min-width: 50px;

    bottom: -23px;
  }

  .team-item .team-social .btn {
    width: 40px;
    height: 40px;

    font-size: 14px;
  }

  .team-item > .p-4 {
    padding: 39px 15px 20px !important;
  }

  .team-item h5 {
    font-size: 17px;
  }

  .team-item span {
    font-size: 12.5px;
  }
}

/*** Contact ***/
@media (min-width: 992px) {
  .container.contact {
    max-width: 100% !important;
  }

  .contact-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .contact-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .contact-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Footer ***/
.footer .btn.btn-social {
  margin-right: 5px;
  color: #9b9b9b;
  border: 1px solid #9b9b9b;
  border-radius: 38px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
  border-color: var(--light);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #9b9b9b;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: #ffffff;
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright a:hover {
  color: var(--primary);
}

/* custom css */

.nav .nav-item button.active {
  background-color: transparent;
  color: rgb(114, 114, 242) !important;
}
.nav .nav-item button.active::after {
  content: "";
  border-right: 4px solid rgb(114, 114, 242);
  height: 100%;
  position: absolute;
  right: -1px;
  top: 0;
  border-radius: 5px 0 0 5px;
}
.carousel-indicators button.thumbnail {
  width: 100px;
}
.carousel-indicators button.thumbnail:not(.active) {
  opacity: 0.7;
}
.carousel-indicators {
  position: static;
}
@media screen and (min-width: 992px) {
  .carousel {
    max-width: 70%;
    margin: 0 auto;
  }
}

/* =========================================================
   RENEWABLE ENERGY TABS - FULL RESPONSIVE DESIGN
   Desktop / Laptop / Tablet / Mobile
========================================================= */

.renewable-tabs-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 30px !important;
  position: relative;

  background: #f6f8fb;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  gap: 30px;

  box-sizing: border-box;
}

.renewable-tabs-container::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(13, 34, 64, 0.035);
  top: -220px;
  right: -180px;
  pointer-events: none;
}

.renewable-tabs-container::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(210, 46, 67, 0.025);
  bottom: -220px;
  left: -180px;
  pointer-events: none;
}

.container.about {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 30px !important;
  position: relative;

  background: #f6f8fb;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  gap: 30px;

  box-sizing: border-box;
}
.container.about::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(13, 34, 64, 0.035);
  top: -220px;
  right: -180px;
  pointer-events: none;
}

.container.about::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(210, 46, 67, 0.025);
  bottom: -220px;
  left: -180px;
  pointer-events: none;
}
/* =========================================================
   LEFT TAB NAVIGATION - DESKTOP
========================================================= */

.renewable-tabs-container #pills-tab {
  flex: 0 0 240px;
  width: 240px;

  margin: 0 !important;
  padding: 10px 0;

  display: flex;
  flex-direction: column;
  align-items: stretch;

  border-right: 3px solid #32c36c !important;

  box-sizing: border-box;
}

/* Tab item */

.renewable-tabs-container #pills-tab .nav-item {
  width: 100%;
  margin: 0;
}

/* Tab button */

.renewable-tabs-container #pills-tab .nav-link {
  position: relative;

  display: block;
  width: 100%;

  padding: 15px 18px;

  border: 0;
  border-radius: 7px 0 0 7px;

  background: transparent;

  color: #32c36c !important;

  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;

  text-align: right;

  white-space: normal;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;

  box-sizing: border-box;
}

/* Active tab */

.renewable-tabs-container #pills-tab .nav-link.active {
  color: #ffffff !important;
  background: #32c36c;

  transform: translateX(3px);
}

/* Hover */

.renewable-tabs-container #pills-tab .nav-link:hover {
  background: rgba(50, 195, 108, 0.1);
  color: #32c36c !important;
}

.renewable-tabs-container #pills-tab .nav-link.active:hover {
  background: #32c36c;
  color: #ffffff !important;
}

/* =========================================================
   TAB CONTENT
========================================================= */

.renewable-tabs-container #pills-tabContent {
  flex: 1 1 auto;

  min-width: 0;
  width: auto !important;

  padding: 35px !important;

  border: 1px solid #32c36c !important;
  border-radius: 14px !important;

  background: #ffffff;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);

  box-sizing: border-box;

  overflow-wrap: break-word;
}

/* =========================================================
   CONTENT HEADING
========================================================= */

.renewable-tabs-container .tab-pane h3 {
  margin: 0 0 25px !important;

  color: #12395c;

  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;

  font-weight: 700;

  text-align: center;
}

/* =========================================================
   CONTENT PARAGRAPHS
========================================================= */

.renewable-tabs-container .tab-pane p {
  margin: 0 0 18px;

  color: #555;

  font-size: 15px;
  line-height: 1.8;

  text-align: left;

  overflow-wrap: break-word;
}

.renewable-tabs-container .tab-pane p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   CHECK ICON
========================================================= */

.renewable-tabs-container .tab-pane p .fa-check-circle {
  color: #32c36c !important;

  margin-right: 10px !important;

  font-size: 15px;
}

/* =========================================================
   LARGE LAPTOP
   1200px - 1399px
========================================================= */

@media (max-width: 1399px) {
  .renewable-tabs-container {
    max-width: 1200px;
    padding: 45px 25px !important;
    gap: 25px;
  }

  .renewable-tabs-container #pills-tab {
    flex-basis: 220px;
    width: 220px;
  }

  .renewable-tabs-container #pills-tabContent {
    padding: 30px !important;
  }
}

/* =========================================================
   TABLET / SMALL LAPTOP
   992px - 1199px
========================================================= */

@media (max-width: 1199px) {
  .renewable-tabs-container {
    padding: 40px 25px !important;
    gap: 22px;
  }

  .renewable-tabs-container #pills-tab {
    flex-basis: 200px;
    width: 200px;
  }

  .renewable-tabs-container #pills-tab .nav-link {
    padding: 13px 14px;
    font-size: 13px;
  }

  .renewable-tabs-container #pills-tabContent {
    padding: 27px !important;
  }

  .renewable-tabs-container .tab-pane p {
    font-size: 14px;
    line-height: 1.75;
  }
}

/* =========================================================
   TABLET
   768px - 991px
========================================================= */

@media (max-width: 991px) {
  .renewable-tabs-container {
    padding: 35px 20px !important;
    gap: 18px;
  }

  .renewable-tabs-container #pills-tab {
    flex-basis: 175px;
    width: 175px;
  }

  .renewable-tabs-container #pills-tab .nav-link {
    padding: 12px 12px;
    font-size: 12px;
  }

  .renewable-tabs-container #pills-tabContent {
    padding: 23px !important;
  }

  .renewable-tabs-container .tab-pane h3 {
    font-size: 20px;
    margin-bottom: 20px !important;
  }

  .renewable-tabs-container .tab-pane p {
    font-size: 13.5px;
    line-height: 1.7;
  }
}

/* =========================================================
   MOBILE
   767px AND BELOW
========================================================= */

@media (max-width: 767px) {
  .renewable-tabs-container {
    width: 100%;

    display: flex !important;
    flex-direction: column;

    padding: 25px 15px !important;

    gap: 15px;

    overflow: hidden;
  }

  /* -----------------------------------------------------
       MOBILE TAB NAVIGATION
    ----------------------------------------------------- */

  .renewable-tabs-container #pills-tab {
    width: 100%;
    flex: none;

    display: flex;
    flex-direction: row;

    align-items: stretch;

    gap: 6px;

    margin: 0 !important;
    padding: 0 0 3px;

    border-right: none !important;
    border-bottom: 3px solid #32c36c !important;

    overflow-x: auto;
    overflow-y: hidden;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: thin;

    box-sizing: border-box;
  }

  /* Hide scrollbar on WebKit */

  .renewable-tabs-container #pills-tab::-webkit-scrollbar {
    height: 4px;
  }

  /* Tab items */

  .renewable-tabs-container #pills-tab .nav-item {
    width: auto;
    flex: 0 0 auto;
  }

  /* Tab buttons */

  .renewable-tabs-container #pills-tab .nav-link {
    width: auto;
    min-width: 135px;

    padding: 12px 15px;

    border-radius: 7px 7px 0 0;

    font-size: 12px;
    line-height: 1.3;

    text-align: center;

    white-space: nowrap;

    transform: none !important;
  }

  .renewable-tabs-container #pills-tab .nav-link.active {
    border-radius: 7px 7px 0 0;
  }

  /* -----------------------------------------------------
       MOBILE CONTENT
    ----------------------------------------------------- */

  .renewable-tabs-container #pills-tabContent {
    width: 100% !important;
    flex: none;

    padding: 22px !important;

    border-radius: 10px !important;

    box-sizing: border-box;

    overflow: hidden;
  }

  /* Heading */

  .renewable-tabs-container .tab-pane h3 {
    margin-bottom: 18px !important;

    font-size: 19px;

    line-height: 1.4;

    text-align: center;

    overflow-wrap: anywhere;
  }

  /* Paragraph */

  .renewable-tabs-container .tab-pane p {
    margin-bottom: 15px;

    font-size: 13px;

    line-height: 1.7;

    text-align: left;

    overflow-wrap: anywhere;
  }

  /* Icons */

  .renewable-tabs-container .tab-pane p .fa-check-circle {
    margin-right: 7px !important;

    font-size: 13px;
  }
}

/* =========================================================
   SMALL MOBILE
   576px AND BELOW
========================================================= */

@media (max-width: 576px) {
  .renewable-tabs-container {
    padding: 20px 12px !important;

    gap: 12px;
  }

  /* Tabs */

  .renewable-tabs-container #pills-tab {
    gap: 4px;

    margin-bottom: 0 !important;
  }

  .renewable-tabs-container #pills-tab .nav-link {
    min-width: 120px;

    padding: 11px 12px;

    font-size: 11.5px;
  }

  /* Content */

  .renewable-tabs-container #pills-tabContent {
    padding: 18px !important;

    border-radius: 9px !important;
  }

  .renewable-tabs-container .tab-pane h3 {
    font-size: 17px;

    line-height: 1.4;

    margin-bottom: 17px !important;
  }

  .renewable-tabs-container .tab-pane p {
    font-size: 12.5px;

    line-height: 1.65;

    margin-bottom: 14px;
  }

  .renewable-tabs-container .tab-pane p .fa-check-circle {
    font-size: 12px;

    margin-right: 6px !important;
  }
}

/* =========================================================
   VERY SMALL MOBILE
   400px AND BELOW
========================================================= */

@media (max-width: 400px) {
  .renewable-tabs-container {
    padding: 15px 8px !important;
  }

  .renewable-tabs-container #pills-tab .nav-link {
    min-width: 108px;

    padding: 10px 9px;

    font-size: 10.5px;
  }

  .renewable-tabs-container #pills-tabContent {
    padding: 15px !important;
  }

  .renewable-tabs-container .tab-pane h3 {
    font-size: 16px;

    line-height: 1.35;
  }

  .renewable-tabs-container .tab-pane p {
    font-size: 12px;

    line-height: 1.6;
  }
}

/* =========================================================
   EXTRA SMALL DEVICES
   360px AND BELOW
========================================================= */

@media (max-width: 360px) {
  .renewable-tabs-container {
    padding: 12px 6px !important;
  }

  .renewable-tabs-container #pills-tab .nav-link {
    min-width: 100px;

    padding: 9px 7px;

    font-size: 10px;
  }

  .renewable-tabs-container #pills-tabContent {
    padding: 13px !important;
  }

  .renewable-tabs-container .tab-pane h3 {
    font-size: 15px;
  }

  .renewable-tabs-container .tab-pane p {
    font-size: 11.5px;

    line-height: 1.6;
  }
}

/* =========================================================
   ACCESSIBILITY / TOUCH
========================================================= */

@media (hover: none) {
  .renewable-tabs-container #pills-tab .nav-link:hover {
    background: transparent;
    color: #32c36c !important;
  }

  .renewable-tabs-container #pills-tab .nav-link.active:hover {
    background: #32c36c;
    color: #ffffff !important;
  }
}

/* =========================================================
   PREVENT HORIZONTAL PAGE SCROLL
========================================================= */

.renewable-tabs-container,
.renewable-tabs-container * {
  box-sizing: border-box;
}

/* body {
    overflow-x: hidden;
} */
