@import url("/themes/custom/fec_theme/assets/css/fonts-local.css");

:root {
  --clr-bg-header: #3d8361;
  --clr-btn: #3d8361;
  --clr-dropdown: #1c6758;
  --clr-nav-hover: #1e6f5c;
  --clr-dropdown-hov: #289672;
  --clr-dropdown-link-hov: #29bb89;
  --clr-light: #fafafa;
  --default-color: #072b91;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Source Sans 3";
  /* overflow: hidden; */
  height: 100%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/* header {
  position: sticky;
  top: 0px;
  background-color: var(--clr-bg-header);
  width: 100%;
  z-index: 1000;
} */

/* section {
  position: relative;
  height: calc(100vh - 3rem);
  width: 100%;
  background: url("https://i.postimg.cc/TPn6kNJ2/bg.jpg") no-repeat top center / cover;
  overflow: hidden;
} */

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(30, 130, 95, 0.5);
}

.logo-container {
  flex: 1;
  display: flex;
  align-items: center;
}

/* .nav-btn {
  flex: 3;
  display: flex;
}

.nav-links {
  flex: 2;
} */

.log-sign {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.logo {
  color: var(--clr-light);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 3rem;
}

.logo span {
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.3rem;
  font-size: 0.8rem;
  border: 2px solid var(--clr-light);
  border-radius: 2rem;
  line-height: 1;
  margin: 0 0.2rem;
  transition: 0.3s;
  text-transform: uppercase;
}

.btn.solid,
.btn.transparent:hover {
  background-color: var(--clr-light);
  color: var(--clr-btn);
}

.btn.transparent,
.btn.solid:hover {
  background-color: transparent;
  color: var(--clr-light);
}

/* .nav-links > ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-link {
  position: relative;
}

.nav-link > a {
  line-height: 3rem;
  color: var(--clr-light);
  padding: 0 .8rem;
  letter-spacing: 1px;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .5s;
}

.nav-link > a > i {
  margin-left: .2rem;
}

.nav-link:hover > a {
  transform: scale(1.1);
} */

/* .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 10rem;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: .5s;
}

.dropdown ul {
  position: relative;
}

.dropdown-link > a {
  display: flex;
  background-color: var(--clr-light);
  color: var(--clr-dropdown);
  padding: .5rem 1rem;
  font-size: .9rem;
  align-items: center;
  justify-content: space-between;
  transition: .3s;
}

.dropdown-link:hover > a {
  background-color: var(--clr-dropdown);
  color: var(--clr-light);
}

.dropdown-link:not(:nth-last-child(2)) {
  border-bottom: 1px solid var(--clr-light);
}

.dropdown-link i {
  transform: rotate(-90deg);
} */

/* .arrow {
  position: absolute;
  width: 11px;
  height: 11px;
  top: -5.5px;
  left: 32px;
  background-color: var(--clr-light);
  transform: rotate(45deg);
  cursor: pointer;
  transition: .3s;
  z-index: -1;
}

.dropdown-link:first-child:hover ~ .arrow {
  background-color: var(--clr-dropdown);
}

.dropdown-link {
  position: relative;
}

.dropdown.second {
  top: 0;
  left: 100%;
  padding-left: .8rem;
  cursor: pointer;
  transform: translateX(10px);
}

.dropdown.second .arrow {
  top: 10px;
  left: -5.5px;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover>.dropdown {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}

.hamburger-menu-container {
  flex: 1;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu div {
  width: 1.6rem;
  height: 3px;
  border-radius: 3px;
  background-color: var(--clr-light);
  position: relative;
  z-index: 1001;
  transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after {
  content: '';
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: var(--clr-light);
  border-radius: 3px;
  transition: .5s;
}

.hamburger-menu div:before {
  transform: translateY(-7px);
}

.hamburger-menu div:after {
  transform: translateY(7px);
} */
/* 
#check {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  z-index: 90000;
  cursor: pointer;
  opacity: 0;
  display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div {
  background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before {
  transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after {
  transform: translateY(0) rotate(45deg);
}

@keyframes animation {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@media (max-width: 920px) {
  .hamburger-menu-container {
    display: flex;
  }

  #check {
    display: block;
  } 

  /* .nav-btn {
    position: fixed;
    height: calc(100vh - 3rem);
    top: 3rem;
    left: 0;
    width: 100%;
    background-color: var(--clr-btn);
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    transition: .65s;
  }

  #check:checked ~ .nav-btn {
    transform: translateX(0);
  }

  #check:checked ~ .nav-btn .nav-link,
  #check:checked ~ .nav-btn .log-sign {
    animation: animation .5s ease forwards var(--i);
  } */
/* 
  .nav-links {
    flex: initial;
    width: 100%;
  }

  .nav-links > ul {
    flex-direction: column;
  }

  .nav-link {
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
  }

  .nav-link > a {
    line-height: 1;
    padding: 1.6rem 2rem;
  }

  .nav-link:hover > a {
    transform: scale(1);
    background-color: var(--clr-nav-hover);
  }

  .dropdown,
  .dropdown.second {
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    padding: 0;
    background-color: var(--clr-dropdown-hov);
    display: none;
  }

  .nav-link:hover > .dropdown,
  .dropdown-link:hover>.dropdown {
    display: block;
  }

  .nav-link:hover > a > i,
  .dropdown-link:hover>a>i {
    transform: rotate(360deg);
  }

  .dropdown-link > a {
    background-color: transparent;
    color: var(--clr-light);
    padding: 1.2rem 2rem;
    line-height: 1;
  }

  .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 3rem;
  }

  .dropdown.second .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 4rem;
  }

  .dropdown-link:not(:nth-last-child(2)) {
    border-bottom: none;
  }

  .arrow {
    z-index: 1;
    background-color: var(--clr-btn);
    left: 10%;
    transform: scale(1.1) rotate(45deg);
    transition: .5s;
  }

  .nav-link:hover .arrow {
    background-color: var(--clr-nav-hover);
  }

  .dropdown .dropdown .arrow {
    display: none;
  }

  .dropdown-link:hover > a {
    background-color: var(--clr-dropdown-link-hov);
  }

  .dropdown-link:first-child:hover ~ .arrow {
    background-color: var(--clr-nav-hover);
  }

  .nav-link > a > i {
    font-size: 1.1rem;
    transform: rotate(-90deg);
    transition: .7s;
  }

  .dropdown i {
    font-size: 1rem;
    transition: .7s;
  }

  .log-sign {
    flex: initial;
    width: 100%;
    padding: 1.5rem 1.9rem;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(15px);
  }
}
   */
/* 
li.menu-item a {
  color: #fff;
}

ul.links {
  display: flex;
  position: relative;
  padding-left: 0px !important;
  
}

li.menu-item {
  margin: 0px 0px;
}

.nav-links {
  flex: inherit;
} */

/* header .container {
  max-width: 90% !important;
}

.nav-btn {
  flex: inherit !important;
  display: flex;
  align-items: center;
}

.logo-container {
  flex: inherit !important;
}

.logo-container {
  width: 100px;
  height: 100px;
}

.logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.nav-btn {
  margin-left: auto;
}


ul.htmlCss-sub-menu.sub-menu {
 display:none;
}

li.menu-item.menu-item--expanded:hover ul.htmlCss-sub-menu.sub-menu {
  position: absolute;
  background: #0375b1;
  display:block;
  top: 38px;
}

li.menu-item a:hover {
  background: #3da7e0;
}
li.menu-item {
  margin: 0px 0px !important;
}

ul.htmlCss-sub-menu.sub-menu li.menu-item a {
  padding: 10px 10px;
  width: 100%;
  display: block;
  border-bottom: 1px solid #0375b1;
}

header {
  position: sticky;
  top: 0px;
  background-color: #072b91  !important;

}

li.menu-item a:hover {
  text-decoration: none !important;
}
ul.htmlCss-sub-menu.sub-menu li.menu-item {
  margin: 0px !important;
}

ul.htmlCss-sub-menu.sub-menu li.menu-item a:hover {
  color: #ffffff;
  background: #3da7e0;
}

li.menu-item.menu-item--active-trail a{
  border-bottom: 2px solid #3da7e0;
}

li.menu-item.menu-item--active-trail ul.htmlCss-sub-menu.sub-menu li.menu-item.menu-item--active-trail a {
  border-bottom: 2px solid #3da7e0;
}
li.menu-item.menu-item--active-trail:hover ul.htmlCss-sub-menu.sub-menu li.menu-item a:hover{
  background: #3da7e0;
}


li.menu-item a {
  padding: 20px 15px;
}

li.menu-item.menu-item--active-trail ul.htmlCss-sub-menu.sub-menu li.menu-item a{
background: #0375b1;
}

li.menu-item.menu-item--active-trail ul.htmlCss-sub-menu.sub-menu li.menu-item a:hover{
  background: #ce1710;
  }
   */

.navbar-brand {
  margin-right: 0px;
  font-size: 1.25rem;
  background: rgb(14, 55, 171);
  background: linear-gradient(297deg,
      rgba(14, 55, 171, 1) 0%,
      rgba(1, 2, 68, 1) 78%);
  white-space: nowrap;
  padding: 6px 30px;
}

.pad-btwn {
  padding: 30px 0;
}

li.menu-item.menu-item--expanded:hover ul.htmlCss-sub-menu.sub-menu {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

/* additional-css for tempalte */
.pt-5 {
  padding-top: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.bg-dark {
  background-color: #3ca5dc !important;
}

/*** Footer ***/
.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: normal;
  border: 1px solid #ffffff;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: #fff;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  text-align: left;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: normal;
  font-weight: 400;
  border: none;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer p {
  color: #fff !important;
}

/* .footer .btn.btn-link::before {
  position: relative;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
} */

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: #fff;
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.text-white {
  color: #fff !important;
}

ul.lists {
  list-style-image: url(/themes/custom/fec_theme/assets/images/icons/right-arrow-blue.png);
}

ul.lists-alpha {
  list-style-type: lower-alpha !important;
}

ul.lists-none {
  list-style-type: none !important;
}

.h-100 {
  height: auto !important;
}

.small-text {
  font-size: 16px !important;
  font-weight: 400;
}

.header-inner {
  padding: 10px 15px;
}

.copyright {
  padding: 15px 15px;
  background: #0d1334;
  color: #fff;
  position: sticky;
  bottom: 0;
  width: 100%;
}

.ui-accordion .ui-accordion-header {
  font-size: 25px;
  font-weight: 600;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #0e37ab !important;
  font-weight: normal;
  color: #ffffff;
}

.view-final-order-view .view-content .views-row .views-row {
  display: flex;
  justify-content: left;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dfdfdf;
  padding-top: 10px;
  padding-bottom: 10px;
}

.ui-accordion .ui-accordion-content {
  height: auto !important;
}

.view-final-order-view .view-content .views-row .views-row .views-field-field-document-final-orders .field-content a {
  color: var(--default-color);
  font-weight: 600;
}

.view-final-order-view .view-content .views-row .views-row .views-field-field-document-final-orders,
.view-final-order-view .view-content .views-row .views-row .views-field-field-case-number,
.view-final-order-view .view-content .views-row .views-row .views-field-field-respondent {
  width: 33%;
  font-size: 16px;
}

.view-past-meeting-minutes-view .view-content .views-row .views-row {
  display: flex;
  justify-content: left;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dfdfdf;
  padding-top: 10px;
  padding-bottom: 10px;
}

.view-past-meeting-minutes-view .view-content .views-row .views-row .views-field-field-document-past-meeting .field-content a {
  color: var(--default-color);
  font-weight: 600;
}

.view-past-meeting-minutes-view .view-content .views-row .views-row .views-field-field-document-past-meeting,
.view-past-meeting-minutes-view .view-content .views-row .views-row .views-field-field-meeting-location {
  width: 48%;
  font-size: 16px;
}

.wrapper {
  min-height: calc(100vh - 270px);
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
}

.nav-header-name {
  font-size: 1.8rem !important;
  color: #fff !important;
}

.text-primary {
  color: #072b91 !important;
}

a {
  color: #072b91;
  text-decoration: none;
}

::marker {
  margin-top: 5px;
}

/* .view-meetings .view-content
{
  display: flex;
  align-items: center;
  gap: 30px;
}
.view-meetings .view-content .view-grouping
{
 
}

.text-primary {
  color: var(--default-color) !important;
}

.view-meetings .view-content .view-grouping .view-grouping-header
{
  font-size: 30px;
  justify-content: left;
  border-bottom: 1px solid #ddd;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 20px;
}
.view-meetings .view-content .view-grouping .view-grouping-content h3{
  display: flex;
  margin-bottom: 0px;
  color: var(--default-color);
  font-size: 20px;
} */

ul.lists {
  list-style: none;
}

ul.lists li {
  padding-bottom: 15px;
  position: relative;
}

ul.lists li::before {
  content: "";
  background: url(/themes/custom/fec_theme/assets/images/icons/check-mark.svg);
  background-size: 18px;
  position: absolute;
  left: -25px;
  width: 18px;
  top: 3px;
  height: 18px;
  font-size: 20px;
}

/* nabar */

/*** Navbar ***/
/* .navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #FFFFFF;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link  {
      margin-right: 0;
      padding: 10px 0;
  }

  .navbar-light .navbar-nav {
      border-top: 1px solid #EEEEEE;
  }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
  height: 75px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
}

.navbar-light.sticky-top {
  top: -100px;
  transition: .5s;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
      display: block;
      margin-top: 0;
      opacity: 0;
      visibility: hidden;
      transition: .5s;
  }

  .navbar .dropdown-menu.fade-down {
      top: 100%;
      transform: rotateX(-75deg);
      transform-origin: 0% 0%;
  }

  .navbar .nav-item:hover .dropdown-menu {
      top: 100%;
      transform: rotateX(0deg);
      visibility: visible;
      transition: .5s;
      opacity: 1;
  }
}



.navbar-doc table {
  border-collapse: collapse;
  width: 100%;
  background: transparent;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
}
.navbar-doc table tr th,
.navbar-doc table tr td {
  text-align: left;
  padding: 15px;
}
.navbar-doc table tr:nth-child(odd) th,
.navbar-doc table tr:nth-child(odd) td {
  background: #f0f5f7;
}
.navbar-doc table tr:nth-child(even) td {
  background: #e9f0f3;
}
.navbar-doc table tr:first-child th:first-child {
  border-top-left-radius: 5px;
}
.navbar-doc table tr:first-child th:last-child {
  border-top-right-radius: 5px;
}
.navbar-doc table tr:last-child td:first-child {
  border-bottom-left-radius: 5px;
}
.navbar-doc table tr:last-child td:last-child {
  border-bottom-right-radius: 5px;
}
.navbar-doc table tr:not(:first-child) {
  border-top: 1px solid #e5ecef;
}
.navbar-doc code {
  background: #aed2f5;
  border-radius: 3px;
  color: #000000;
  line-height: 1;
  font-size: 1.2rem;
  padding: 1px 4px;
}
.navbar-doc p {
  font-size: 1.4rem;
  line-height: 1.5;
}

.menu-header
{
  position: absolute;
  top: 0px;
  z-index: 999;
  width: 100%;
} */

/* Main CSS */
.navbar-doc table {
  border-collapse: collapse;
  width: 100%;
  background: transparent;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
}

.navbar-doc table tr th,
.navbar-doc table tr td {
  text-align: left;
  padding: 15px;
}

.navbar-doc table tr:nth-child(odd) th,
.navbar-doc table tr:nth-child(odd) td {
  background: #f0f5f7;
}

.navbar-doc table tr:nth-child(even) td {
  background: #e9f0f3;
}

.navbar-doc table tr:first-child th:first-child {
  border-top-left-radius: 5px;
}

.navbar-doc table tr:first-child th:last-child {
  border-top-right-radius: 5px;
}

.navbar-doc table tr:last-child td:first-child {
  border-bottom-left-radius: 5px;
}

.navbar-doc table tr:last-child td:last-child {
  border-bottom-right-radius: 5px;
}

.navbar-doc table tr:not(:first-child) {
  border-top: 1px solid #e5ecef;
}

.navbar-doc code {
  background: #aed2f5;
  border-radius: 3px;
  color: #000000;
  line-height: 1;
  font-size: 1.2rem;
  padding: 1px 4px;
}

.navbar-doc p {
  font-size: 1.4rem;
  line-height: 1.5;
}

.menu-header {
  position: relative;
  background: #cecece;
  z-index: 999;
  width: 100%;
}

/* Main CSS */
.navbar-1 {
  display: flex;
  background: transparent;
  justify-content: center;
  align-items: center;
  padding: 8px 50px;
  flex-direction: column;
  position: relative;
  transition: 0.3slinear;
}

.navbar-1 ul {
  list-style: none;
}

.navbar-1 ul a {
  text-decoration: none;
}

.navbar-1 .navbar-toggler,
.navbar-1 .nav-link,
.navbar-1 .utils-search {
  color: #010244;
}

.navbar-1 .navbar-utils>* {
  cursor: pointer;
}

.navbar-1 .btn-search {
  font-size: 1.5rem;
  background: transparent;
  outline: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  list-style: none;
  font-family: "Source Sans 3";
}

.navbar-nav .nav-link {
  padding: 5px 10px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
  transition: 150ms ease;
}

.navbar-nav .nav-item {
  padding: 8px 15px;
  cursor: pointer;
  color: #010244;
  font-weight: 600;
  font-size: 18px;
  position: relative;
}

.navbar-nav .nav-item .dropdown .nav-item {
  border-bottom: 1px solid #b8b0b0;
}

.navbar-nav .nav-item a {
  color: #010244;
  font-weight: 600;
}

.navbar-nav>.nav-item:hover:after {
  transform: scaleX(1);
  opacity: 1;
}

.navbar-toggler {
  padding: 0.1rem 0.45rem;
  cursor: pointer;
  font-size: 1.5rem;
  background: none;
  outline: none;
  border: 1px solid #636363;
  border: none;
  border-radius: 3px;
  transition: 0.15s linear;
  display: none;
  margin-left: auto;
  margin-right: 20px;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.36);
}

/* Navbar options (bg options) */

.nav-link:focus,
.nav-link:hover {
  color: #faf233 !important;
}

@media (min-width: 992px) {
  .bg-blur {
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    background: rgba(255, 255, 255, 0.6);
    z-index: 999;
  }

  .bg-blur .navbar-toggler,
  .bg-blur .nav-link,
  .bg-blur .utils-search {
    color: #363636;
  }

  .bg-blur .nav-item:hover>.nav-link {
    color: #fcb505;
  }

  .bg-blur .nav-item:after {
    background: #faf233;
  }
}

/* Dropdown CSS */
.nav-item .dropdown {
  width: 251px;
  display: block;
  position: absolute;
  top: 48px;
  transition: 300ms;
  padding: 0px 0px !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  background: #cecece;
  border-radius: 0px;
  z-index: 999;
  box-shadow: 0 5px 5px 0px rgba(0, 0, 0, 0.15);
}

.nav-item .dropdown .nav-link {
  color: #fff;
}

.nav-item .dropdown .dropdown {
  top: 0;
  left: calc(100% + 20px);
  border-top: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.nav-item .dropdown .dropdown:before {
  top: 10px;
  left: -10px;
  border: 5px solid transparent;
  border-right-color: #000;
}

.nav-item .dropdown:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 10px;
  border: 5px solid transparent;
  border-bottom-color: #000;
  display: none;
}

.nav-item .dropdown .nav-item:not(:last-child) {
  margin-bottom: 5px;
}

.nav-item .dropdown>.nav-item:hover>.nav-link {
  color: #e21811;
}

li.menu-item.nav-item.menu-item--expanded.menu-item--active-trail.icon,
.is-active {
  color: #e21811 !important;
}

ul.dropdown .menu-item.nav-item.menu-item--active-trail a {
  color: #e21811 !important;
}

.nav-item:hover>.dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.nav-item:hover>a::before {
  transform: rotate(90deg);
}

.nav-close {
  margin-left: auto;
  margin-top: 10px;
  display: none;
}

.nav-close .btn-nav-close {
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 2.5rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  /* border: 1px solid #ffffff; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-close .btn-nav-close .close-btn {
  transform: rotate(45deg);
  color: #e21811;
}

.nav-close .btn-nav-close:hover,
.nav-close .btn-nav-close:focus {
  background: #363636;
  color: #e21811;
}

.nav-item.icon>a:before {
  content: "";
  position: absolute;
  right: -10px;
  top: calc(50% + 0px);
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: inherit;
  transition: 0.15s linear;
}

.nav-item.icon:hover>a::before {
  transform: rotate(90deg);
}

/* Responsive (navbar alignments options) */
@media (min-width: 992px) {

  .navbar-brand,
  .navbar-utils {
    flex: auto;
  }

  .navbar-utils {
    text-align: right;
  }

  .navbar-right .navbar-brand,
  .navbar-right .navbar-utils {
    flex: initial;
  }

  .navbar-right .navbar-nav {
    justify-content: flex-end;
    margin-right: 20px;
  }

  .navbar-left .navbar-nav {
    order: 1;
    justify-content: flex-start;
  }

  .navbar-left .navbar-brand {
    order: 2;
  }

  .navbar-left .navbar-utils {
    order: 3;
  }

  .navbar-right .dropdown .dropdown {
    left: unset;
    right: calc(100% + 20px);
    border-top: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
  }
}

/* Nav Option (Logo Center) */
@media (min-width: 992px) {
  .navbar-left .navbar-brand {
    text-align: right;
  }

  .navbar-left .navbar-toggler {
    display: block;
    margin-right: 0;
  }

  .navbar-left .navbar-nav {
    background: #ffffff;
    flex-direction: column;
    z-index: 99999;
    padding: 0 20px;
    opacity: 0;
    transition: 400ms ease;
    /* Sidebar */
    position: fixed;
    left: 0;
    top: 0;
    width: 300px;
    height: 100%;
    overflow-y: auto;
    box-shadow: 0px 0px 0 2000px rgba(0, 0, 0, 0.5);
    transform: translateX(-300px);
  }

  .navbar-left .navbar-nav .nav-link {
    margin: 10px 0;
    color: #636363;
    display: flex;
    align-items: center;
  }

  .navbar-left .navbar-nav>.nav-item:first-child {
    margin-top: 20px;
  }

  .navbar-left .navbar-nav>.nav-item:last-child {
    margin-bottom: 20px;
  }

  .navbar-left .navbar-nav .nav-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .navbar-left .navbar-nav .nav-item:hover>.nav-link {
    color: #e21811 !important;
  }

  .navbar-left .navbar-nav>.nav-item:after {
    display: none;
  }

  .navbar-left .navbar-nav .nav-close {
    display: block;
  }

  .navbar-left .navbar-nav.active {
    max-height: initial;
    opacity: 1;
    transform: translateX(0);
    left: 0;
    box-shadow: 0 0 0 10000px rgba(0, 0, 0, 0.5);
  }

  .navbar-left .nav-item .dropdown {
    padding: 0;
    position: initial;
    max-height: 0;
    width: initial;
    border: none;
    box-shadow: none;
  }

  .navbar-left .nav-item .dropdown .dropdown {
    border: none;
  }

  .navbar-left .nav-item .dropdown:before {
    display: none;
  }

  .navbar-left .nav-item:hover>.dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    max-height: initial;
  }

  .navbar-left .nav-item.icon a:before {
    top: unset;
    right: 0;
  }
}

/* Responsive navbar */
@media (max-width: 991px) {
  .navbar-toggler {
    display: block;
  }

  .navbar-nav {
    background: #cecece;
    flex-direction: column !important;
    z-index: 99999;
    padding: 0 20px;
    opacity: 0;
    transition: 400ms ease;
    /* Sidebar */
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    height: 100%;
    overflow-y: auto;
    transform: translateX(-300px);
  }

  .navbar-nav .nav-link {
    margin: 10px 0;
    color: #636363;
    display: flex;
    align-items: center;
  }

  .navbar-nav>.nav-item:first-child {
    margin-top: 20px;
  }

  .navbar-nav>.nav-item:last-child {
    margin-bottom: 20px;
  }

  .navbar-nav .nav-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .navbar-nav .nav-item:hover>.nav-link {
    color: #0d0a15;
  }

  .navbar-nav>.nav-item:after {
    display: none;
  }

  .navbar-nav .nav-close {
    display: block;
  }

  .navbar-nav .nav-item a:hover {
    color: #e21811 !important;
  }

  .navbar-nav.active {
    max-height: initial;
    opacity: 1;
    transform: translateX(0);
    left: 0;
    box-shadow: 0px 0px 0 10000px rgba(0, 0, 0, 0.5);
  }

  .nav-item .dropdown {
    padding: 0;
    position: initial;
    max-height: 0;
    width: initial;
    border: none;
    box-shadow: none;
  }

  .nav-item .dropdown .dropdown {
    border: none;
  }

  .nav-item .dropdown:before {
    display: none;
  }

  .nav-item:hover>.dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    max-height: initial;
  }

  .nav-item.icon a:before {
    top: unset;
    right: 0;
    transform: translateY(0px);
  }
}

/* nav bar */

/* meetings */
.event-list {
  display: flex;
  border: 1px dashed #b1b1b1;
  border-radius: 10px;
  padding: 10px 20px;
  background: #ffffff;
  flex-grow: 1;
  gap: 12px 20px;
  margin-bottom: 20px;
}

.event-list .event-date {
  background: rgb(225, 45, 33);
  background: linear-gradient(90deg,
      rgba(225, 45, 33, 1) 0%,
      rgba(166, 32, 23, 1) 51%);
  height: 100px;
  display: flex;
  flex-wrap: nowrap;
  text-align: center;
  padding: 15px 15px;
  flex-direction: column;
  border-radius: 8px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 8px;
}

.start-to-end h5,
.event-discription h5,
.event-metrials h5 {
  background: #ffffff;
  border-radius: 5px;
  border: 1px solid #509ed4;
  padding: 2px 9px;
  width: fit-content;
  font-size: 16px;
  color: #509ed4;
}

.event-list .event-date h3 {
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
}

.event-list .event-date h6 {
  margin-bottom: 0px;
  color: #fff;
}

.event-list .start-to-end {
  font-size: 16px;
  padding-right: 20px;
  border-right: 1px solid #e7e7eb;
}

.event-list .start-to-end p {
  margin-bottom: 5px;
  min-width: 150px;
  font-size: 14px;
}

.event-list .event-discription {
  min-width: auto;
  padding-right: 30px;
  max-width: max-content;
  border-right: 1px solid #e7e7eb;
}

.event-list .event-discription h2 {
  font-size: 22px;
}

.event-list .event-metrials {
  min-width: 350px;
  width: fit-content;
}

.event-list .event-metrials .meterial-list {
  display: flex;
  width: fit-content;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 5px;
  padding-right: 10px;
}

.event-list .event-metrials .meterial-list p {
  width: fit-content;
  margin-bottom: 0px;
  padding: 5px 10px;
  background: #dffaff;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #daeef9;
}

.event-list .event-metrials .meterial-list p a {
  color: #000;
  white-space: normal;
}

.event-list .event-metrials p a img {
  width: 20px;
}

.img-fluid {
  width: 100%;
}

@media (max-width: 1100px) {
  .event-list {
    flex-wrap: wrap;
  }

  .event-list .event-discription {
    border-right: 0px solid #e7e7eb;
    border-bottom: 1px solid #e7e7eb;
    width: 100%;
    min-width: 100%;
  }

  .event-list .start-to-end {
    border-right: 0px solid #e7e7eb;
    border-bottom: 1px solid #e7e7eb;
    width: 60%;
    min-width: 48%;
  }

  .container,
  .container-fluid,
  .container-sm {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .navbar-brand img {
    width: 100%;
  }
}

h3.mb-4 {
  margin-bottom: 10px !important;
  font-size: 20px !important;
}

h1,
.section-title {
  font-family: "Source Sans 3";
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
  color: #ffff !important;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 1rem !important;
}

.short-text-title {
  max-width: 715px;
  margin: 0 auto;
}

i.fa.fa-chevron-down.htmlcss-arrow.arrow {
  font-size: 12px;
  margin-left: 6px;
}

@media (max-width: 768px) {
  .event-list .event-metrials {
    min-width: auto;
    width: 100%;
  }

  .navbar-1 {
    padding: 8px 20px;
  }

  .navbar-toggler {
    margin-right: 0px !important;
  }
}

.fa,
.fas {
  font-weight: 400 !important;
}

@media (max-width: 991px) {
  .navbar-nav .nav-item:not(:last-child) {
    border-bottom: 1px solid rgb(255 255 255 / 12%);
  }
}

/* core start */
.messages--error {
  display: none;
}

/* core end */

.navbar-nav .nav-item a:hover {
  color: #e21811;
}

li.menu-item.nav-item.menu-item--expanded.icon:hover {
  color: #e21811;
}

.content {
  flex: 1;
  padding: 0px 15px;
}

a {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h2.section-title {
  margin-bottom: 15px;
}

.errin {
  color: red;
}

@media (max-width: 990px) {
  .navbar-1 {
    padding: 8px 20px !important;
  }

  .navbar-toggler {
    margin-right: 0px !important;
  }
}

@media (max-width: 768px) {
  .navbar-1 {
    padding: 8px 20px !important;
  }

  .navbar-toggler {
    margin-right: 0px !important;
  }
}


form#user-login-form {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 27px;
  background: #fff;
  border: 1px solid #e9e9e9;
  padding: 60px;
  border-radius: 7px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 4px 10px 0px;
}

h5.user-login-title {
  font-size: 32px;
  color: #2535a9;
  font-weight: 800;
}


.js-form-item.form-item.js-form-type-textfield.form-type-textfield.js-form-item-name.form-item-name {
  display: grid;
}


/* user login form */
.form-text {
  margin-top: .25rem;
  font-size: .875em;
  color: #6c757d;
  border: 1px solid #cecece;
  padding: 10px 15px;
}


input#edit-submit {
  padding: 8px 15px;
  background: #2535a9;
  border-radius: 4px;
  font-weight: 600;
  color: #fff;
  font-size: 16px;
  border: none;
  transition: 0.3s;
}

input#edit-submit:hover {
  background: #162379;
}

.js-form-item.form-item.js-form-type-password.form-type-password.js-form-item-pass.form-item-pass {
  display: grid;
}

h5.user-login-title {
  font-size: 32px;
  color: #072b91;
  font-weight: 800;
}