/* Define Material Design color variables */
:root {
  --light-sprimary: #f6f4fe;
  --sprimary: #571615;
  --bg-sprimary: #571615;
  --dark-sprimary: #32236f;
  --body-text-sprimary: #3e3f66;
  --text-white: #ffffff;
  --bg-white: #ffffff;
  --slider-dots-color: #d4d2dd;
  --light-bg: #dfdaf3;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.7;
  font-family: "Poppins", sans-serif;
  color: var(--body-text-sprimary);
  background-color: var(--light-sprimary);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 5px 20px;
  font-weight: 500;
  color: #130C40;
}

.topbar {
  background: #32236f;
  padding-top: 12px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar .container ul.social-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar .container ul.social-icons li {
  padding: 0 0 10px 0;
}
.topbar .container ul.social-icons li a {
  color: #571615;
  background-color: #ffffff;
  display: block;
  width: 37px;
  height: 37px;
  text-align: center;
  line-height: 37px;
  font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  margin-right: 10px;
  transition: 0.4s all;
}
.topbar .container ul.social-icons li a:hover {
  background-color: #571615;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .topbar .container ul.social-icons {
    width: 80px;
  }
}
.topbar .topbar-left-side {
  color: #ffffff;
}

@media screen and (min-width: 768px) {
  ul.social-icons {
    width: 80px;
  }
}
/* styles.css */
@media screen and (min-width: 768px) {
  .topbar {
    padding-top: 0;
  }
}
/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.primary-link-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #571615;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.primary-link-button:hover {
  background-color: #2e0c0b;
  transform: translateY(-2px);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  color: #fff;
}
.primary-link-button:active {
  transform: translateY(0);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.banner_section {
  margin-top: 70px;
  position: relative;
}
.banner_section .container {
  position: relative;
}
.banner_section .row {
  align-items: center;
}
.banner_section::after {
  content: "";
  display: block;
  background-image: url("../images/banner-shape.690ff6cfe7eb.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 200px;
  background-position: center;
  margin-top: -50px;
}
.banner_section .banner_text {
  margin-top: -50px;
}
.banner_section .banner_text h1 {
  color: #571615;
  font-size: 45px;
  letter-spacing: -1.5px;
  font-weight: 700;
}
.banner_section .app_btn {
  display: flex;
  align-items: center;
}
.banner_section .app_btn li .primary-link-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #571615;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.banner_section .app_btn li .primary-link-button:hover {
  background-color: #2e0c0b;
  transform: translateY(-2px);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
.banner_section .app_btn li .primary-link-button:active {
  transform: translateY(0);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}
.banner_section .app_btn li .secondary-link-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #32236f;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.banner_section .app_btn li .secondary-link-button:hover {
  background-color: #211748;
  transform: translateY(-2px);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
.banner_section .app_btn li .secondary-link-button:active {
  transform: translateY(0);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Style the card container */
.service .section__title {
  color: #018e42;
}
.service .section__heading {
  color: #571615;
  font-size: 40px;
  font-weight: 700;
}
.service .service-right-card .list_block_content_item {
  display: flex;
}
.service .service-right-card .list_block_content_item .list_block_content_item_icon {
  background-color: #32236f;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-right: 4px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.service .service-card {
  margin: 14px auto;
  display: flex;
  flex-direction: column;
  width: 300px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.service .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  background-image: url("../images/stfrancis-service-bg.13f0ae760a93.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.service .service-card:hover h2 a {
  color: #ffffff;
}
.service .service-card:hover p {
  color: #ffffff;
}

/* Style the card icon */
.card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  border-radius: 8px 8px 0 0;
}
.card-icon img {
  width: 48px;
  height: 48px;
  fill: #fff;
}

/* Style the card content */
.card-content {
  padding: 16px;
}
.card-content .card-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}
.card-content .card-description {
  font-size: 14px;
  color: #777;
}

.innerpage {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: -96px;
}
.innerpage::before {
  content: "";
  background-color: rgba(202, 202, 202, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.innerpage .innerpage__text {
  text-align: left;
  z-index: 1000;
  position: relative;
}
.innerpage .innerpage__text h1 {
  color: #51372c;
  font-size: 55px;
  font-weight: 700;
}
.innerpage .innerpage__text ul {
  display: flex;
  justify-content: start;
  align-items: center;
}
.innerpage .innerpage__text ul li {
  margin: 0 5px;
}
.innerpage .innerpage__text ul li a {
  color: #51372c;
  font-size: 14px;
  transition: 0.4s all;
}
.innerpage .innerpage__text ul li span {
  color: #51372c;
  font-size: 14px;
  transition: 0.4s all;
}

.app_solution_section .row {
  align-items: center;
}
.app_solution_section .row .app_text p {
  padding-right: 40px;
}
.app_solution_section .row .app_text .section_title {
  text-align: left;
  margin-bottom: 20px;
}
.app_solution_section .row .app_text .section_title h2 {
  letter-spacing: -1px;
}
.app_solution_section .row .app_images {
  position: relative;
}
.app_solution_section .row .app_images::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 570px;
  height: 570px;
  border-radius: 100%;
  background-color: var(--bg-white);
  z-index: -1;
}
.app_solution_section .row .app_images ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.app_solution_section .row .app_images ul li {
  position: relative;
}
.app_solution_section .row .app_images ul li a {
  position: relative;
}
.app_solution_section .row .app_images ul li img {
  max-width: 100%;
}
.app_solution_section .row .app_images ul li:first-child {
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
}
.app_solution_section .row .app_images ul li:nth-child(2) {
  left: -5px;
  cursor: pointer;
}
.app_solution_section .row .app_images ul li:nth-child(3) {
  right: -5px;
}

/* -------------Modern-Ui-Section-Css-Start---------------- */
/* modern ui section wraper */
.mission_vision_section .row {
  align-items: center;
}

.mission_vision_section .list_block_content {
  margin-top: 45px;
}

/* modern ui text */
.mission_vision_section .section_title {
  text-align: left;
}

.mission_vision_section .ui_text {
  padding-right: 75px;
}

/* modern ui list */
.mission_vision_section .list_block_content li {
  padding-left: 40px;
  position: relative;
  margin-bottom: 25px;
}

.mission_vision_section .list_block_content li::before {
  position: absolute;
  left: 0;
  top: 5px;
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.mission_vision_section .list_block_content li h4 {
  font-size: 20px;
  color: var(--dark-sprimary);
  font-weight: 600;
  margin-bottom: 8px;
}

.mission_vision_section .list_block_content li p {
  margin-bottom: 0;
}

/* modern ui images */
.mission_vision_section .sect_images {
  display: flex;
  position: relative;
}

.mission_vision_section .sect_images::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 570px;
  height: 570px;
  border-radius: 100%;
  background-color: var(--bg-white);
  z-index: -1;
}

.mission_vision_section .sect_images .right_img img:nth-child(3) {
  margin-left: -140px;
  margin-top: -20px;
}

.mission_vision_section .sect_images .right_img img:nth-child(2) {
  margin-left: -90px;
  margin-top: -20px;
}

.mission_vision_section .sect_images .right_img img:nth-child(1) {
  position: relative;
  top: 15px;
  z-index: 99;
  margin-left: -15px;
}

.blog_detail_section {
  margin-bottom: 40px;
}
.blog_detail_section .blog_inner_pannel {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 145px 120px;
  margin-top: -120px;
  position: relative;
  box-shadow: 0 8px 30px rgba(192, 186, 215, 0.4196078431);
}

.m_img > div > iframe {
  width: 100% !important;
  height: 100%;
}

.csr_section ul {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.csr_section ul li a {
  display: inline-block;
  padding: 12px 24px;
  background-color: #571615;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  margin: 1.5rem 0;
}
.csr_section ul li a:hover {
  background-color: #2e0c0b;
  transform: translateY(-2px);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.fluidsection {
  margin: 140px auto;
}/*# sourceMappingURL=stfrancis.css.map */