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

html,
body {
  width: 100%;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 25px;
  letter-spacing: 0px;
}

a {
  text-decoration: none;
}

a:focus,
a:hover {
  transition: all 0.5s ease-in-out;
  color: #cb212c !important;
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

iframe {
  width: 100%;
  border: none;
  display: block;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #cb212c;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

textarea:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=email]:focus {
  box-shadow: none;
}

textarea {
  resize: none;
}

input {
  box-shadow: none !important;
  outline: none !important;
}

.invalid-feedback {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
}

#btn-back-to-top {
  display: none;
  position: fixed;
  bottom: 10vh;
  right: 20px;
  border-radius: 100%;
  z-index: 999;
  background-color: #cb212c;
}

.border-left {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.border-top {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.main_top_fix {
  margin-top: 6rem;
}

.site_color_600 {
  color: #cb212c !important;
  font-weight: 600;
}

.btn-site {
  color: #0b0c26;
  background-color: #fff;
  border-color: #0b0c26;
}
.btn-site:hover {
  color: #fff !important;
  background-color: #cb212c;
  border-color: #cb212c;
}

.page__banner {
  width: 100%;
  display: block;
  position: relative;
  padding-top: 100px;
  padding-bottom: 85px;
}
.page__banner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page__banner .banner-text {
  color: #fff;
}
.page__banner .banner-text h1 {
  font-size: 2.5rem;
  font-weight: 600;
  text-transform: capitalize;
}
.page__banner .banner-text strong {
  font-weight: normal;
}
.page__banner .banner-text strong i {
  padding-right: 0.5rem;
  color: #cb212c;
}
.page__banner .banner-text span {
  text-transform: capitalize;
}

.page__error {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.page__error img {
  width: 50%;
  -o-object-fit: fill;
     object-fit: fill;
  height: auto;
}
.page__error h1 {
  font-size: 1.5rem;
  color: #0b0c26;
  text-align: center;
}
.page__error a {
  font-size: 1.1rem;
  text-align: center;
}

.page {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 1.5s ease-in-out;
}
.page::before {
  content: "";
  width: 100%;
  height: 100vh;
  position: absolute;
  top: -77px;
  left: 0%;
  background-color: #cb212c;
  z-index: 99999;
  transition: all 1.5s ease-in-out;
  transform: scale(1);
  transform-origin: top;
}
.page::after {
  content: "";
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0%;
  background-color: #cb212c;
  z-index: 99999;
  transition: all 1.5s ease-in-out;
  transform: scale(1);
  transform-origin: bottom;
}

.overflow-visible {
  transition: all 1.5s ease-in-out;
  overflow: visible;
}

.page__active::before {
  transform: scaleY(0);
}
.page__active::after {
  transform: scaleY(0);
}

header {
  position: relative;
}

main {
  position: relative;
  min-height: calc(100vh - calc(3.2rem + 6rem + 4rem));
}

footer {
  position: relative;
}

.float-over-carousel {
  margin-top: -4.6rem;
}

@media (max-width: 992px) {
  .float-over-carousel {
    margin-top: 1rem;
  }
}
.page__topbar {
  width: 100%;
  height: 3.2rem;
  display: grid;
  grid-template-columns: 23% 77%;
  color: #fff;
}
.page__topbar .topbar-left {
  background-color: #cb212c;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 0.8rem;
  padding-right: 2rem;
  letter-spacing: 1.5px;
}
.page__topbar .topbar-right {
  font-size: 0.8rem;
  background-color: #0b0c26;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 6rem;
}
.page__topbar .topbar-right span {
  padding: 0 1rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.page__topbar .topbar-right a {
  color: #fff;
}
.page__topbar .topbar-right .social-icons {
  padding: 0 1rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (max-width: 992px) {
  .page__topbar {
    position: fixed;
    bottom: 100px;
    left: 0;
    background-color: #0b0c26;
    transform: translate(-100%);
    transition: all 0.8s ease-in-out;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    z-index: 9999;
  }
  .page__topbar .topbar-left {
    background-color: #cb212c;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    padding-right: 0;
    padding: 0.5rem 2rem;
    width: 100%;
  }
  .page__topbar .topbar-right {
    font-size: 0.8rem;
    background-color: #0b0c26;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    gap: 1rem;
    align-items: flex-start;
    padding-right: 0;
    width: 100%;
    padding: 1rem 3rem;
  }
  .page__topbar .topbar-right .border-left {
    border: none;
  }
  .page__topbar .topbar-right span {
    padding: 0 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }
  .page__topbar .topbar-right a {
    color: #fff;
  }
  .page__topbar .topbar-right .social-icons {
    padding: 0 1rem;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
  .page__topbar.embed_topbar {
    transform: translate(0);
    transition: all 1.5s ease-in-out;
  }
}
.page__navbar {
  width: 100%;
  height: 6rem;
  display: grid;
  grid-template-columns: 23% 77%;
  position: relative;
  background-color: #fff;
  z-index: 1;
  border-bottom: 1px solid rgba(203, 33, 44, 0.4);
  transition: all 0.4s ease-in-out;
}
.page__navbar .navbar-left {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 1rem;
}
.page__navbar .navbar-left .navbar-left_logo {
  width: 260px;
  text-align: right;
}
.page__navbar .navbar-left .navbar-left_logo img {
  width: 100%;
}
.page__navbar.page__fixed-header {
  height: calc(6rem* 0.8);
  transition: all 0.4s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.6);
}
.page__navbar.page__fixed-header .navbar-right .navbar-links a {
  line-height: calc(6rem* 0.8);
}
.page__navbar .navbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8rem;
}
.page__navbar .navbar-right .navbar-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page__navbar .navbar-right .navbar-links .navbar-link {
  position: relative;
}
.page__navbar .navbar-right .navbar-links .navbar-link.active a::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  transform: translate(0%, -100%);
  width: 50%;
  height: 3px;
  background-color: #cb212c;
  transition: all 1s ease-in-out;
}
.page__navbar .navbar-right .navbar-links .navbar-link.active a::after {
  content: "";
  position: absolute;
  bottom: 25%;
  right: 0;
  transform: translate(0%, -100%);
  width: 50%;
  height: 3px;
  background-color: #cb212c;
  transition: all 1s ease-in-out;
}
.page__navbar .navbar-right .navbar-links .navbar-link.active a:hover::before {
  left: 100%;
  transform: translate(-100%, -100%);
}
.page__navbar .navbar-right .navbar-links .navbar-link.active a:hover::after {
  right: 100%;
  transform: translate(100%, -100%);
}
.page__navbar .navbar-right .navbar-links a {
  padding: 0 1.5rem;
  display: block;
  line-height: 6rem;
  z-index: 1;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #0b0c26;
}
.page__navbar .navbar-right .nav-toggler {
  width: 35px;
  height: 25px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-content: center;
  cursor: pointer;
}
.page__navbar .navbar-right .nav-toggler span {
  background-color: #0b0c26;
  height: 3px;
  width: 35px;
  transition: all 0.4s ease-in-out;
}
.page__navbar .navbar-right .nav-toggler span:nth-child(2) {
  width: 25px;
  transition: all 0.5s ease-in;
}
.page__navbar .navbar-right .nav-toggler.toggler-active span:first-child {
  transform: rotate(135deg) translate(9px, -7px);
}
.page__navbar .navbar-right .nav-toggler.toggler-active span:last-child {
  transform: rotate(-135deg) translate(8px, 6px);
}
.page__navbar .navbar-right .nav-toggler.toggler-active span:nth-child(2) {
  transition: all 0.2s ease-out;
  transform: scale(0);
}

@media (max-width: 992px) {
  main {
    margin-top: calc(6rem* 0.8);
  }
  .page__navbar {
    grid-template-columns: 1fr 0.3fr;
    height: 6rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #fff;
  }
  .page__navbar .navbar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0;
  }
  .page__navbar .navbar-left .navbar-left_logo {
    padding-left: 1.5rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    width: 250px;
    text-align: left;
  }
  .page__navbar.page__fixed-header {
    height: calc(6rem* 0.8);
  }
  .page__navbar.page__fixed-header .navbar-right .navbar-links {
    top: calc(6rem* 0.8);
  }
  .page__navbar.page__fixed-header .navbar-right .navbar-links a {
    line-height: 2.5rem;
  }
  .page__navbar .navbar-right {
    padding-right: 1.5rem;
  }
  .page__navbar .navbar-right .nav-toggler {
    display: flex;
  }
  .page__navbar .navbar-right .navbar-links {
    position: absolute;
    top: 6rem;
    left: 0;
    background-color: #0b0c26;
    transform: translate(-100%);
    transition: all 1s ease-in-out;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 100vh;
    padding-top: 1rem;
  }
  .page__navbar .navbar-right .navbar-links li {
    width: 100%;
    padding-left: 1rem;
  }
  .page__navbar .navbar-right .navbar-links a {
    padding: 0 1.5rem;
    display: block;
    line-height: 2.5rem;
    z-index: 1;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .page__navbar .navbar-right .navbar-links .navbar-link.active a {
    color: #cb212c;
  }
  .page__navbar .navbar-right .navbar-links .navbar-link.active a::before {
    display: none;
  }
  .page__navbar .navbar-right .navbar-links .navbar-link.active a::after {
    display: none;
  }
  .page__navbar .navbar-right .navbar-links.navbar-links_active {
    transform: translate(0);
  }
}
.page__footer .footer-bottom {
  width: 100%;
  padding: 0 2rem;
  min-height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0b0c26;
  color: #fff;
  font-size: 0.83rem;
}
.page__footer .footer-bottom .footer-bottom_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page__footer .footer-bottom .footer-bottom_content .footer-nav {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
.page__footer .footer-bottom .footer-bottom_content .footer-nav li {
  padding: 0 0.5rem;
}
.page__footer .footer-bottom .footer-bottom_content a {
  color: #fff;
}
.page__footer .footer-bottom .footer-bottom_content a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .page__footer .footer-bottom {
    padding: 0.5rem 0;
    text-align: center;
  }
  .page__footer .footer-bottom .footer-bottom_content {
    flex-direction: column;
    gap: 1rem;
  }
}
.page__index-carousel {
  width: 100%;
  position: relative;
}
.page__index-carousel #carouselSection_sm {
  display: none;
}

@media (max-width: 576px) {
  #carouselSection_sm {
    display: block !important;
  }
  #carouselSection_lg {
    display: none;
  }
}
.page__index-about {
  padding: 5rem 0;
}
.page__index-about .index-about_image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.page__index-about .index-about_image img {
  padding: 0.3rem;
  border: 1px solid rgba(203, 33, 44, 0.5);
  border-radius: 5px;
}
.page__index-about .index-about_content .about_content--header strong {
  color: #cb212c;
  font-weight: 700;
  font-size: 0.9rem;
}
.page__index-about .index-about_content .about_content--header h1 {
  font-size: 2rem;
  font-weight: 800;
}
.page__index-about .index-about_content .about_content--text p {
  font-size: 0.95rem;
}
.page__index-about .index-about_content .about_content--text u {
  float: right;
}
.page__index-about .index-about_content .about_content--text u a {
  color: #cb212c;
  font-weight: 500;
}

@media (max-width: 992px) {
  .page__index-about .index-about_content .about_content--header {
    margin-top: 2rem;
  }
}
@media (max-width: 576px) {
  .page__index-about .index-about_content .about_content--header h1 {
    font-size: 1.5rem;
  }
  .page__index-about .about_content--text p {
    font-size: 0.85rem !important;
  }
}
.page__index-vision {
  background: linear-gradient(to right, rgba(11, 12, 38, 0.9), rgba(11, 12, 38, 0.9)), url("/static/images/bank/bgimage.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 5rem;
}
.page__index-vision .index-vision {
  padding: 5rem 0;
}
.page__index-vision .index-vision > .row {
  gap: 4rem;
}
.page__index-vision .index-vision > .row > span {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 1px;
}
.page__index-vision .index-vision .index-vision_content .content_title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.page__index-vision .index-vision .index-vision_content .content_title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.page__index-vision .index-vision .index-vision_content .content_title .content-icon {
  background-color: #cb212c;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  padding: 0.5rem;
  width: 100px;
  height: 100px;
}
.page__index-vision .index-vision .index-vision_content .content_title .content-icon img {
  width: 90%;
}
.page__index-vision .index-vision .index-vision_content .content_title h2 {
  color: #fff;
  font-size: 1.3rem;
}
.page__index-vision .index-vision .index-vision_content .content-text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}
.page__index-vision .index-vision .index-vision_content .content-text p {
  color: #fff;
  margin: auto 0;
}

@media (max-width: 992px) {
  .page__index-vision {
    padding-bottom: 0;
  }
  .page__index-vision .index-vision .index-vision_content .content_title::after {
    border: none;
  }
  .page__index-vision .index-vision .index-vision_content .content_title .content-icon {
    width: 70px;
    height: 70px;
  }
}
.page__index-services {
  padding-bottom: 3rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.page__index-services .row > * {
  padding-left: 0;
  padding-right: 0;
}
.page__index-services .index-services_image {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}
.page__index-services .index-services_image img {
  border-top: 1rem solid #cb212c;
  width: 75%;
  margin-top: -3.5rem;
  z-index: 1;
}
.page__index-services .index-services_content {
  display: block;
}
.page__index-services .index-services_content .service_content-float {
  padding: 4rem;
  background-color: #fff;
  position: relative;
}
.page__index-services .index-services_content .service_content-float .services_content--header {
  position: absolute;
  top: -3.5rem;
  padding: 4rem 0rem 0 4rem;
  left: 0;
  z-index: 1;
  background-color: #fff;
  width: 100%;
}
.page__index-services .index-services_content .service_content-float .services_content--header strong {
  color: #cb212c;
  font-weight: 700;
  font-size: 0.9rem;
}
.page__index-services .index-services_content .service_content-float .services_content--header h2 {
  font-size: 2rem;
  font-weight: 800;
}
.page__index-services .index-services_content .service_content-float .services_content--text ul {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
  gap: 2rem;
}
.page__index-services .index-services_content .service_content-float .services_content--text ul li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 3rem;
}
.page__index-services .index-services_content .service_content-float .services_content--text ul li i {
  font-size: 1.3rem;
  color: #cb212c;
  padding-top: 0.3rem;
}
.page__index-services .index-services_content .service_content-float .services_content--text ul li strong {
  display: block;
}
.page__index-services .index-services_content .service_content-float .services_content--text ul li span {
  color: #888;
}

@media (max-width: 992px) {
  .page__index-services {
    padding-top: 3rem;
  }
  .page__index-services .row > * {
    padding: 0.5rem;
  }
  .page__index-services .index-services_image img {
    border-top-width: 5px;
    margin-top: 0rem;
  }
  .page__index-services .index-services_content .service_content-float {
    padding: 0;
    background-color: #fff;
    position: relative;
  }
  .page__index-services .index-services_content .service_content-float .services_content--header {
    position: relative;
    top: 0;
    padding: 0.5rem;
    left: 0;
  }
  .page__index-services .index-services_content .service_content-float .services_content--header h2 {
    font-size: 1.3rem;
  }
  .page__index-services .index-services_content .service_content-float .services_content--text ul {
    margin-top: 1rem;
  }
  .page__index-services .index-services_content .service_content-float .services_content--text ul li {
    gap: 1rem;
  }
}
.page__index-facilities .card {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.page__index-facilities .card .card-header {
  padding: 1.5rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  background-color: #fff;
}
.page__index-facilities .card .card-body {
  padding: 0;
  overflow: hidden;
}
.page__index-facilities .card .card-body img {
  transition: all 0.5s ease-in-out;
}
.page__index-facilities .card .card-body img:hover {
  transform: scale(1.05);
}

.page__index-schemes {
  margin: 2rem auto;
  width: 100%;
}
.page__index-schemes .index-scheme_images {
  position: relative;
}
.page__index-schemes .index-scheme_images #schemeimages .carousel-item {
  border-radius: 20px;
}
.page__index-schemes .index-scheme_images img {
  border-radius: 20px;
}
.page__index-schemes .index-scheme_images .slide-btns {
  position: absolute;
  bottom: 0rem;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-content: center;
  gap: 2rem;
}
.page__index-schemes .index-scheme_images .slide-btns span {
  border-radius: 100%;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid #cb212c;
  padding: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.page__index-schemes .index-scheme_images .slide-btns span i {
  font-size: 1.2rem;
  font-weight: 900;
  color: #222;
}
.page__index-schemes .schemes_header {
  border-bottom: 3px solid #cb212c;
}
.page__index-schemes .index-scheme_content {
  margin-top: -2px;
}
.page__index-schemes .index-scheme_content .table > :not(caption) > * > * {
  padding: 0.1rem 0.5rem;
  font-size: 15px;
}
.page__index-schemes .index-scheme_content .sidehead {
  background-color: #cb212c;
}
.page__index-schemes .index-scheme_content .sidehead h6 {
  text-align: center;
  color: #fff;
}
.page__index-schemes .index-scheme_content .divider-light {
  border-top: 4px solid #fff;
}

@media (max-width: 992px) {
  .page__index-schemes #schemeimages {
    display: none;
  }
}
.page__index-contact {
  margin: 2rem auto;
  width: 100%;
}
.page__index-contact .contact-info {
  border-top: 1px solid rgba(203, 33, 44, 0.3);
  border-bottom: 1px solid rgba(203, 33, 44, 0.3);
  padding: 3rem 0;
}
.page__index-contact .contact-info h2 {
  font-size: 1.4rem;
  font-weight: 700;
  padding-bottom: 1rem;
}
.page__index-contact .contact-info a {
  color: #0b0c26;
  font-size: 1.2rem;
  color: #cb212c;
}

@media (max-width: 992px) {
  .page__index-contact .contact-info {
    gap: 1rem;
  }
  .page__index-contact .contact-info h2 {
    padding-bottom: 0.5rem;
  }
}
.page__about .about-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #0b0c26;
  padding: 1rem 2rem;
}
.page__about .about-section-header h4 {
  color: #fff;
  font-weight: 600;
  margin: auto 0;
}
.page__about .about-section-header span {
  width: 100px;
  border-top: 2px dashed #cb212c;
}
.page__about .about-section {
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.page__about .about-section .about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.page__about .about-section .about-content .about-content_header h1 {
  font-size: 2rem;
  font-weight: 800;
}
.page__about .about-section .about-content .about-content_text p {
  font-size: 0.95rem;
}
.page__about .history-section {
  padding: 2rem 0;
}
.page__about .history-section .history-text {
  padding: 1rem;
}
.page__about .history-section .history-images div {
  position: relative;
  z-index: 1;
}
.page__about .history-section .history-images div::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 2rem;
  width: 92%;
  height: 95%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: -1;
  box-shadow: 2px 3px 9px rgba(0, 0, 0, 0.2);
}
.page__about .history-section .history-images div:first-child {
  transform: rotate(-5deg) translateX(-5%);
}
.page__about .history-section .history-images div:last-child {
  transform: rotate(5deg) translateX(15%);
}
.page__about .directors-section .directors {
  padding: 2rem 1rem;
}
.page__about .directors-section .directors > div {
  margin-bottom: 4rem;
}
.page__about .directors-section .directors .team-box {
  width: 100%;
  height: 100%;
}
.page__about .directors-section .directors .team-box .team-image {
  overflow: hidden;
  width: 100%;
}
.page__about .directors-section .directors .team-box .team-image img {
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.page__about .directors-section .directors .team-box .team-image img:hover {
  transform: scale(1.05);
}
.page__about .directors-section .directors .team-box .team-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  margin-top: 1rem;
}
.page__about .directors-section .directors .team-box .team-info strong {
  font-size: 1.1rem;
  color: #0b0c26;
  transition: all 0.5s ease-in-out;
}
.page__about .directors-section .directors .team-box .team-info span {
  color: #888;
}
.page__about .directors-section .directors .team-box:hover .team-info strong {
  color: #cb212c;
}
.page__about .branches-section {
  margin-bottom: 2rem;
}
.page__about .branches-section .branches .branch-box {
  min-height: 200px;
  margin-top: 2rem;
}
.page__about .branches-section .branches .branch-box i {
  color: #cb212c;
}
.page__about .branches-section .branches .branch-box a {
  color: #0b0c26;
  font-weight: 500;
}
.page__about .branches-section .branches .branch-box .card-header {
  text-align: center;
  background-color: #cb212c;
  color: #fff;
  font-weight: 500;
  font-size: 1.2rem;
}
.page__about .branches-section .branches .branch-box .card-footer .row div {
  display: flex;
  flex-direction: column;
}
.page__about .services-section {
  margin-bottom: 2rem;
}
.page__about .services-section .services {
  padding: 2rem;
}
.page__about .services-section .services .accordion-button:not(.collapsed) {
  color: #cb212c;
  font-weight: 600;
}
.page__about .services-section .services .accordion-button:focus {
  box-shadow: none;
}

@media (max-width: 992px) {
  .page__about .about-section .about-content .about-content_header {
    margin-top: 2rem;
  }
  .page__about .about-section .about-content .about-content_header h1 {
    font-size: 1.5rem;
  }
  .page__about .history-section .history-images div:first-child {
    transform: rotate(0deg) translateX(0);
  }
  .page__about .history-section .history-images div:last-child {
    transform: rotate(0deg) translateX(0);
  }
}
@media (max-width: 576px) {
  .about-section-header h4 {
    font-size: 1.3rem;
    padding: 1rem 0;
  }
  .about-section-header span {
    display: none;
  }
  .page__about .about-section .about-content .about-content_header h1 {
    font-size: 1.2rem;
  }
  .page__about .about-section .about-content_text p {
    font-size: 0.85rem !important;
  }
  .page__about .services-section {
    margin-bottom: 2rem;
  }
  .page__about .services-section .services {
    padding: 0.5rem;
  }
}
.gallery-box {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.gallery-box .title {
  transition: all 0.5s ease-in-out;
  position: absolute;
  z-index: 0;
  background: linear-gradient(to top, black, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  width: 100%;
  bottom: 0;
  transform: translateY(15rem);
  left: 0;
  right: 0;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-box .title span {
  font-size: 1.5rem;
  color: #fff;
}
.gallery-box:hover .title {
  transform: translateY(0rem);
}

.page__contact .contact-details {
  padding: 2rem;
}
.page__contact .contact-details .contact-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
}
.page__contact .contact-details .contact-info {
  padding-top: 2rem;
}
.page__contact .contact-details .contact-info i {
  font-size: 1.1rem;
  color: #cb212c;
  margin-right: 0.5rem;
}
.page__contact .contact-details .contact-info strong {
  font-size: 1.15rem;
}
.page__contact .contact-details .contact-info div {
  padding: 1rem 0;
}
.page__contact .contact-details .contact-info p {
  width: 70%;
  font-size: 0.9rem;
  color: #666;
}
.page__contact .contact-details .contact-info p a {
  color: #0b0c26;
}
.page__contact .contact-form-section {
  position: relative;
  background-color: #0b0c26;
  padding: 0 2rem;
}
.page__contact .contact-form-section .contact-form-success {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: fixed;
  top: 50%;
  left: 38%;
  transform-origin: center;
  -webkit-animation: backInUp;
          animation: backInUp;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
}
.page__contact .contact-form-section .contact-form-success .alert-success {
  background-color: #52b69a !important;
  color: #fff !important;
  font-weight: 500;
}
.page__contact .contact-form-section .contact-form label {
  color: #fff;
  font-size: 0.8rem;
  transition: all 0.5s ease-in-out;
}
.page__contact .contact-form-section .contact-form input,
.page__contact .contact-form-section .contact-form textarea {
  width: 100%;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 1.5rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  background-color: transparent;
  margin-top: 1rem;
}
.page__contact .contact-form-section .contact-form input:focus,
.page__contact .contact-form-section .contact-form textarea:focus {
  border-bottom: 1px solid #cb212c;
}
.page__contact .contact-form-section .contact-form .input-control {
  position: relative;
}
.page__contact .contact-form-section .contact-form .input-control label {
  position: absolute;
  top: 3rem;
  left: 1rem;
}
.page__contact .contact-form-section .contact-form .form-group.row:nth-child(3) {
  display: none;
}
.page__contact .contact-form-section .contact-form button {
  border: none;
  box-shadow: none;
  outline: none;
  background-color: #cb212c;
  color: #fff;
  font-weight: 600;
  width: 200px;
  height: 50px;
  padding: 1rem 2rem;
  transition: all 0.5s ease-in-out;
  position: relative;
}
.page__contact .contact-form-section .contact-form button::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 0px;
  height: 0px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}
.page__contact .contact-form-section .contact-form button::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 0px;
  height: 0px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}
.page__contact .contact-form-section .contact-form button:focus {
  transform: scale(0.95);
}
.page__contact .contact-form-section .contact-form button:hover::before {
  opacity: 1;
  width: 206px;
  height: 56px;
}
.page__contact .contact-form-section .contact-form button:hover::after {
  opacity: 1;
  width: 206px;
  height: 56px;
}

@media (max-width: 992px) {
  .page__contact .contact-details .contact-info p {
    width: 100%;
  }
  .page__contact .contact-form-section .contact-form-success {
    top: 50%;
    left: 4%;
  }
  .page__contact .contact-form-section .contact-form-success .alert-success {
    background-color: #52b69a !important;
    color: #fff !important;
    font-weight: 500;
  }
  .page__contact .contact-form-section .contact-form {
    padding-bottom: 2rem;
  }
  .page__contact .contact-form-section .contact-form button::before {
    opacity: 1;
    width: 206px;
    height: 56px;
  }
  .page__contact .contact-form-section .contact-form button::after {
    opacity: 1;
    width: 206px;
    height: 56px;
  }
}
.auth-bg {
  background-image: url("/static/images/auth-img.jpg");
  background-size: cover;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", sans-serif;
}
.auth-bg .authentication-page-content {
  height: calc(100% - 48px);
  background-color: #fff;
  border-radius: 16px;
  margin: 24px;
}
.auth-bg .form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #dbe2f1;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.auth-bg .form-label,
.auth-bg .form-check-label {
  font-weight: 500;
  font-size: 14px;
}
.auth-bg .text-muted {
  font-size: 14px;
  color: #9397ab !important;
}
.auth-bg .btn {
  box-shadow: none;
  outline: none;
}
.auth-bg .btn-primary {
  background-color: #cb212c;
  border-color: #cb212c;
  padding: 1rem 0;
}

.info-box {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
  background-color: #fff;
  display: flex;
  margin-bottom: 1rem;
  min-height: 80px;
  padding: 0.5rem;
  position: relative;
  width: 100%;
}

.info-box .progress {
  background-color: rgba(0, 0, 0, 0.125);
  height: 2px;
  margin: 5px 0;
}

.info-box .progress .progress-bar {
  background-color: #fff;
}

.info-box .info-box-icon {
  border-radius: 0.25rem;
  align-items: center;
  display: flex;
  font-size: 1.875rem;
  justify-content: center;
  text-align: center;
  width: 70px;
}

.info-box .info-box-icon > img {
  max-width: 100%;
}

.info-box .info-box-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.8;
  flex: 1;
  padding: 0 10px;
}

.info-box .info-box-number {
  display: block;
  margin-top: 0.25rem;
  font-weight: 700;
}

.info-box .info-box-text,
.info-box .progress-description {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.info-box .info-box .bg-gradient-primary,
.info-box .info-box .bg-primary {
  color: #fff;
}

.info-box .info-box .bg-gradient-primary .progress-bar,
.info-box .info-box .bg-primary .progress-bar {
  background-color: #fff;
}

.info-box .info-box .bg-gradient-secondary,
.info-box .info-box .bg-secondary {
  color: #fff;
}

.info-box .info-box .bg-gradient-secondary .progress-bar,
.info-box .info-box .bg-secondary .progress-bar {
  background-color: #fff;
}

.info-box .info-box .bg-gradient-success,
.info-box .info-box .bg-success {
  color: #fff;
}

.info-box .info-box .bg-gradient-success .progress-bar,
.info-box .info-box .bg-success .progress-bar {
  background-color: #fff;
}

.info-box .info-box .bg-gradient-info,
.info-box .info-box .bg-info {
  color: #fff;
}

.info-box .info-box .bg-gradient-info .progress-bar,
.info-box .info-box .bg-info .progress-bar {
  background-color: #fff;
}

.info-box .info-box .bg-gradient-warning,
.info-box .info-box .bg-warning {
  color: #1f2d3d;
}

.info-box .info-box .bg-gradient-warning .progress-bar,
.info-box .info-box .bg-warning .progress-bar {
  background-color: #1f2d3d;
}

.info-box .info-box .bg-danger,
.info-box .info-box .bg-gradient-danger {
  color: #fff;
}

.info-box .info-box .bg-danger .progress-bar,
.info-box .info-box .bg-gradient-danger .progress-bar {
  background-color: #fff;
}

.info-box .info-box .bg-gradient-light,
.info-box .info-box .bg-light {
  color: #1f2d3d;
}

.info-box .info-box .bg-gradient-light .progress-bar,
.info-box .info-box .bg-light .progress-bar {
  background-color: #1f2d3d;
}

.info-box .info-box .bg-dark,
.info-box .info-box .bg-gradient-dark {
  color: #fff;
}

.info-box .info-box .bg-dark .progress-bar,
.info-box .info-box .bg-gradient-dark .progress-bar {
  background-color: #fff;
}

.info-box .info-box-more {
  display: block;
}

.info-box .progress-description {
  margin: 0;
}

@media (min-width: 768px) {
  .col-lg-2 .info-box .progress-description,
.col-md-2 .info-box .progress-description,
.col-xl-2 .info-box .progress-description {
    display: none;
  }
  .col-lg-3 .info-box .progress-description,
.col-md-3 .info-box .progress-description,
.col-xl-3 .info-box .progress-description {
    display: none;
  }
}
@media (min-width: 992px) {
  .col-lg-2 .info-box .progress-description,
.col-md-2 .info-box .progress-description,
.col-xl-2 .info-box .progress-description {
    font-size: 0.75rem;
    display: block;
  }
  .col-lg-3 .info-box .progress-description,
.col-md-3 .info-box .progress-description,
.col-xl-3 .info-box .progress-description {
    font-size: 0.75rem;
    display: block;
  }
}
@media (min-width: 1200px) {
  .col-lg-2 .info-box .progress-description,
.col-md-2 .info-box .progress-description,
.col-xl-2 .info-box .progress-description {
    font-size: 1rem;
    display: block;
  }
  .col-lg-3 .info-box .progress-description,
.col-md-3 .info-box .progress-description,
.col-xl-3 .info-box .progress-description {
    font-size: 1rem;
    display: block;
  }
}
.dark-mode .info-box {
  background-color: #343a40;
  color: #fff;
}

.dark-mode .info-box .info-box .bg-gradient-primary,
.dark-mode .info-box .info-box .bg-primary {
  color: #fff;
}

.dark-mode .info-box .info-box .bg-gradient-primary .progress-bar,
.dark-mode .info-box .info-box .bg-primary .progress-bar {
  background-color: #fff;
}

.dark-mode .info-box .info-box .bg-gradient-secondary,
.dark-mode .info-box .info-box .bg-secondary {
  color: #fff;
}

.dark-mode .info-box .info-box .bg-gradient-secondary .progress-bar,
.dark-mode .info-box .info-box .bg-secondary .progress-bar {
  background-color: #fff;
}

.dark-mode .info-box .info-box .bg-gradient-success,
.dark-mode .info-box .info-box .bg-success {
  color: #fff;
}

.dark-mode .info-box .info-box .bg-gradient-success .progress-bar,
.dark-mode .info-box .info-box .bg-success .progress-bar {
  background-color: #fff;
}

.dark-mode .info-box .info-box .bg-gradient-info,
.dark-mode .info-box .info-box .bg-info {
  color: #fff;
}

.dark-mode .info-box .info-box .bg-gradient-info .progress-bar,
.dark-mode .info-box .info-box .bg-info .progress-bar {
  background-color: #fff;
}

.dark-mode .info-box .info-box .bg-gradient-warning,
.dark-mode .info-box .info-box .bg-warning {
  color: #1f2d3d;
}

.dark-mode .info-box .info-box .bg-gradient-warning .progress-bar,
.dark-mode .info-box .info-box .bg-warning .progress-bar {
  background-color: #1f2d3d;
}

.dark-mode .info-box .info-box .bg-danger,
.dark-mode .info-box .info-box .bg-gradient-danger {
  color: #fff;
}

.dark-mode .info-box .info-box .bg-danger .progress-bar,
.dark-mode .info-box .info-box .bg-gradient-danger .progress-bar {
  background-color: #fff;
}

.dark-mode .info-box .info-box .bg-gradient-light,
.dark-mode .info-box .info-box .bg-light {
  color: #1f2d3d;
}

.dark-mode .info-box .info-box .bg-gradient-light .progress-bar,
.dark-mode .info-box .info-box .bg-light .progress-bar {
  background-color: #1f2d3d;
}

.dark-mode .info-box .info-box .bg-dark,
.dark-mode .info-box .info-box .bg-gradient-dark {
  color: #fff;
}

.dark-mode .info-box .info-box .bg-dark .progress-bar,
.dark-mode .info-box .info-box .bg-gradient-dark .progress-bar {
  background-color: #fff;
}

.page .menubar {
  display: none;
}

.admin .menubar {
  display: flex;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9997;
  height: 3.5rem;
  background-color: #ececec;
  border-bottom: 2px solid rgb(216, 202, 1);
  transition: all 0.5s;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  padding-left: 20px;
  /* Toggle Sidebar Button */
  /* Search Bar */
}
.admin .menubar .logo {
  line-height: 1;
}
@media (min-width: 1200px) {
  .admin .menubar .logo {
    width: 280px;
  }
}
.admin .menubar .logo img {
  max-height: 26px;
  margin-right: 6px;
}
.admin .menubar .logo span {
  font-size: 1.2rem;
  font-weight: 700;
  color: #012970;
  font-family: "Nunito", sans-serif;
}
.admin .menubar .menubar-nav ul {
  list-style: none;
}
.admin .menubar .menubar-nav > ul {
  margin: 0;
  padding: 0;
}
.admin .menubar .menubar-nav .nav-icon {
  font-size: 20px;
  color: #012970;
}
.admin .menubar .menubar-nav .nav-profile {
  color: #012970;
}
.admin .menubar .menubar-nav .nav-profile img {
  max-height: 36px;
}
.admin .menubar .menubar-nav .nav-profile span {
  font-size: 14px;
  font-weight: 600;
}
.admin .menubar .menubar-nav .badge-number {
  position: absolute;
  inset: 4px 6px auto auto;
  font-weight: normal;
  font-size: 11px;
  padding: 3px 6px;
}
.admin .menubar .menubar-nav .messages .message-item {
  padding: 15px 10px;
  transition: 0.3s;
}
.admin .menubar .menubar-nav .messages .message-item a {
  display: flex;
}
.admin .menubar .menubar-nav .messages .message-item i {
  margin: 0 20px 0 10px;
  max-height: 40px;
}
.admin .menubar .menubar-nav .messages .message-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}
.admin .menubar .menubar-nav .messages .message-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}
.admin .menubar .menubar-nav .messages .message-item:hover {
  background-color: #f6f9ff;
}
.admin .menubar .menubar-nav .messages.dropdown-menu {
  min-width: 20rem;
}
.admin .menubar .menubar-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
}
.admin .menubar .menubar-nav .profile .dropdown-menubar h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color: #444444;
}
.admin .menubar .menubar-nav .profile .dropdown-menubar span {
  font-size: 14px;
}
.admin .menubar .menubar-nav .profile .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}
.admin .menubar .menubar-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
  color: #cb212c;
}
.admin .menubar .menubar-nav .profile .dropdown-item:hover {
  background-color: #f6f9ff;
}
.admin .menubar .menubar-nav .dropdown-menu {
  border-radius: 4px;
  padding: 10px 0;
  -webkit-animation-name: dropdown-animate;
  animation-name: dropdown-animate;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}
.admin .menubar .menubar-nav .dropdown-menu .dropdown-header,
.admin .menubar .menubar-nav .dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px 25px;
}
.admin .menubar .menubar-nav .dropdown-menu .dropdown-footer a {
  color: #444444;
  text-decoration: underline;
}
.admin .menubar .menubar-nav .dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}
.admin .menubar .menubar-nav .dropdown-menu .dropdown-divider {
  color: #a5c5fe;
  margin: 0;
}
.admin .menubar .menubar-nav .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}
.admin .menubar .menubar-nav .dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}
.admin .menubar .menubar-nav .dropdown-menu .dropdown-item:hover {
  background-color: #f6f9ff;
}
.admin .page__topbar {
  margin-top: 3.5rem;
}
.admin .page__fixed-header {
  position: relative;
  height: 6rem;
}
.admin .page__fixed-header .navbar-right .navbar-links a {
  line-height: 6rem;
}
.admin .main_top_fix {
  margin-top: 0;
}
.admin.page {
  overflow: visible;
}
.admin.page::before {
  display: none;
}
.admin.page::after {
  display: none;
}

@media (min-width: 768px) {
  .admin .menubar .menubar-nav .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
  }
}
@-webkit-keyframes dropdown-animate {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
  0% {
    opacity: 0;
  }
}
@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
  0% {
    opacity: 0;
  }
}
@media (max-width: 992px) {
  .admin .menubar .menubar-nav .messages.dropdown-menu {
    min-width: 20rem;
    transform: translate3d(37px, 43px, 0px) !important;
  }
  .admin .page__navbar {
    position: relative;
    margin-top: 3.5rem;
    height: 6rem;
  }
  .admin .page__navbar .navbar-right .navbar-links {
    top: 6rem;
  }
  .admin .page__fixed-header {
    position: relative;
    height: 6rem;
  }
  .admin main {
    margin-top: 0;
  }
}
.edit-comp-btn {
  display: none;
}

@media (min-width: 992px) {
  .offcanvas.offcanvas-end {
    width: 600px;
  }
}
.messages {
  overflow: scroll;
}
.messages .message-item {
  position: relative;
}
.messages .message-item .message-status {
  position: absolute;
  bottom: 0.3rem;
  right: 0.3rem;
  font-size: 0.7rem;
  cursor: pointer;
}
.messages .message-item .message-status.read {
  color: #4a4a4b;
}
.messages .message-item .message-status.unread {
  color: #52b69a;
}
.messages .message-item:hover {
  background-color: rgba(0, 0, 0, 0.1) !important;
}

.messages_list .message-item {
  transition: all 0.5s ease-in-out;
  position: relative;
}

.border-left-1 {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.logo-hover {
  position: relative;
}
.logo-hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9995;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 1;
  transition: all 0.5s ease-in-out;
  border: 4px solid #0b0c26;
}

.edit-mode-on {
  position: relative;
}
.edit-mode-on::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9995;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.5s ease-in-out;
  border: 4px solid #0b0c26;
}
.edit-mode-on .edit-comp-btn {
  display: block;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9996;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease-in-out;
  padding: 0.5rem 1rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: 6px 6px 4px rgba(0, 0, 0, 0.3);
}
.edit-mode-on .edit-comp-btn i {
  font-size: 1rem;
}
.edit-mode-on:hover .edit-comp-btn {
  opacity: 1;
}
.edit-mode-on:hover::after {
  opacity: 1;
}
.edit-mode-on .modal .form-group.row {
  margin-bottom: 1rem;
}

.modal {
  z-index: 9999 !important;
}
.modal .modal-dialog-scrollable .modal-content {
  max-height: 85vh;
  overflow: auto;
}
.modal .modal-header--sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 9999;
}
.modal .modal-footer--sticky {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  background-color: #fff;
  z-index: 9999;
}
.modal .border-left-1 {
  border-left: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.modal .icon-center {
  position: relative;
  cursor: pointer;
}
.modal .icon-center .fa-pen-to-square {
  z-index: 1;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 1s ease-in-out;
  font-size: 2rem;
  color: #cb212c;
}
.modal .icon-center::after {
  z-index: 0;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.modal .icon-center:hover::after {
  opacity: 1;
}
.modal .icon-center:hover .fa-pen-to-square {
  opacity: 1;
}

.editor-modal.modal-dialog {
  max-width: 80% !important;
  margin: 1.75rem auto;
  max-height: 50vh;
}
.editor-modal.modal-dialog img {
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 0.3rem;
  border-radius: 5px;
}
.editor-modal.modal-dialog .facility-image img {
  border: none;
  padding: 0;
  border-radius: 0;
}
.editor-modal.modal-dialog .social-icons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
.editor-modal.modal-dialog .social-icons li {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 0 0.5rem;
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.editor-modal.modal-dialog .social-icons li i {
  color: #cb212c;
  font-size: 1.3rem;
  text-align: center;
  flex: 0.1;
}
.editor-modal.modal-dialog .social-icons li input {
  border: none;
  box-shadow: none;
  outline: none;
  flex: 0.8;
  border-left: 1px solid rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1rem;
}
.editor-modal.modal-dialog .social-icons li span {
  font-size: 0.9rem;
  text-align: center;
}

.user {
  padding-top: 3.5rem;
  width: 100%;
  height: calc(100vh - 3.5rem);
}

.admin .page__topbar {
  margin-top: 0rem;
}

@media (max-width: 992px) {
  .admin .page__navbar {
    margin-top: 0rem;
  }
}
