@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Muli:300,400,600,700,800,900");
html {
  font-size: 18px;
}
@media (max-width: 1200px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Rajdhani", sans-serif;
  max-width: 2000px;
  margin: auto;
}

img {
  max-width: 100%;
}

ul {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: clamp(30px, 1.05rem + 2.7vw, 54px);
}

h2 {
  font-size: clamp(20px, 3.2vw, 38px);
}

h3 {
  font-size: calc(1.12rem + 0.75vw);
}

h4 {
  font-size: clamp(18px, 2vw, 20px);
}

p {
  font-size: 16px;
  line-height: 1.6;
  color: #374454;
  font-family: "Muli", sans-serif;
}

ul {
  font-family: "Muli", sans-serif;
}

.content_heading {
  color: #cb2026;
}
.content_heading h2 {
  font-weight: 700;
  padding-bottom: 5px;
  margin-bottom: 12px;
}
.content_heading h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #cb2026;
  margin-bottom: 12px;
}

.container {
  padding: 0 20px;
}

.container_right {
  width: 100%;
  margin-left: auto;
  padding-left: var(--bs-gutter-x, 0.75rem);
  padding-right: var(--bs-gutter-x, 0.75rem);
}
@media (min-width: 576px) {
  .container_right {
    max-width: calc(540px + 50% - 270px);
  }
}
@media (min-width: 768px) {
  .container_right {
    max-width: calc(720px + 50% - 360px);
  }
}
@media (min-width: 992px) {
  .container_right {
    max-width: calc(960px + 50% - 480px);
  }
}
@media (min-width: 1200px) {
  .container_right {
    max-width: calc(1140px + 50% - 570px);
  }
}
@media (min-width: 1400px) {
  .container_right {
    max-width: calc(1321px + 50% - 660.5px);
  }
}

.section {
  padding: calc(2rem + 1.5vw) 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.section_heading {
  text-align: center;
  margin-bottom: calc(1.5rem + 1vw);
  color: #cb2026;
}
.section_heading h2 {
  font-weight: 700;
  padding-bottom: 2px;
  margin-bottom: 10px;
  position: relative;
}
.section_heading h2::before, .section_heading h2::after {
  height: 2px;
  left: 50%;
  background-color: currentColor;
  position: absolute;
  content: "";
  transform: translate(-50%, 0);
}
.section_heading h2::before {
  width: 100px;
  top: 100%;
}
.section_heading h2::after {
  width: 60px;
  top: calc(100% + 7px);
}
@media screen and (min-width: 992px) {
  .section_heading p {
    width: 65%;
    margin: auto;
  }
}
.section_heading.themeWhite {
  color: #fff;
}

.smallNote {
  font-size: 10px;
  display: block;
}

.theme_button {
  border-radius: 5px;
  min-width: 140px;
  line-height: 1;
  padding: 14px 6px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  transition: 0.2s;
  color: #fff;
  font-weight: 500;
  border: none;
}
.theme_button svg {
  max-width: 0;
  max-height: 0;
}
.theme_button:hover {
  color: #fff;
}
.theme_button:hover svg {
  margin-left: 10px;
  max-width: 16px;
  max-height: 16px;
  fill: currentColor;
}
.theme_button.primaryBtn {
  background-color: #283089;
}
.theme_button.primaryBtn:hover {
  background-color: #cb2026;
}
.theme_button.secondaryBtn {
  background-color: #cb2026;
}
.theme_button.secondaryBtn:hover {
  background-color: #283089;
}

.bgTheme {
  background-color: #f2f5f9;
}

.waveSection {
  position: relative;
  margin-top: 6%;
  z-index: 1;
}

.waveTop {
  position: absolute;
  bottom: 100%;
  transform: translateY(38%);
  left: 0;
  width: 100%;
  z-index: -1;
}
.waveTop img {
  width: 100%;
}

.header {
  padding: 0.4rem 1rem;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 9;
  background-color: #fff;
  box-shadow: 0 2px 10px -9px rgb(51, 61, 86);
}
.header .navbar {
  padding: 0;
}
.header .navbar-nav {
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
}
.header .navbar-toggler:focus {
  box-shadow: none;
}
.header .navbar-brand {
  line-height: 1;
  padding: 0;
}
.header .navbar-brand span {
  font-size: 2rem;
  font-weight: 700;
  color: #cb2026;
}
.header .navbar-brand img {
  height: 56px;
}
@media screen and (max-width: 767px) {
  .header .navbar-brand img {
    height: 50px;
  }
}
.header .nav-item {
  margin: 0 0.55rem;
}
.header .nav-link {
  color: #374454;
  position: relative;
  padding: 2px 0.1rem !important;
}
.header .nav-link::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  border-bottom: 2px solid currentColor;
  width: 0;
  transition: width 0.2s linear;
}
.header .nav-link:hover {
  color: #283089;
}
.header .nav-link:hover::after {
  width: 100%;
}

.footer {
  font-family: "Inter", sans-serif;
  padding: clamp(40px, 4.5vw, 60px) 0 1rem;
  background-color: #cb2026;
  color: #fff;
  margin-top: 10px;
}
.footer .footer_row {
  display: flex;
  justify-content: space-between;
  --colPadding: 1.4rem;
  margin: 0 calc(-1 * var(--colPadding));
}
.footer .footer_col {
  padding: 0 var(--colPadding);
  max-width: 25%;
}
.footer .footer_colInner {
  height: 100%;
}
.footer .footer_colInner h5 {
  margin-bottom: 1.9rem;
}
.footer .footer_colInner ul {
  list-style: none;
  padding: 0;
}
.footer .footer_colInner a {
  display: flex;
  white-space: nowrap;
  transition: 0.2s linear;
}
.footer .footer_colInner a:hover {
  color: #283089;
}
.footer .footer_colInner span {
  font-size: 14px;
}
.footer .footer_colInner svg {
  fill: currentColor;
  width: 16px;
  margin-right: 10px;
}
.footer .footer_colInner .smallNote {
  margin-top: 3px;
}
.footer .footer_links ul li {
  margin-bottom: 10px;
}
.footer .footer_links ul li a {
  padding: 3px 0;
  font-size: 14px;
}
.footer .footer_contact ul li {
  margin: 0;
  padding: 0.8rem 0;
  font-size: 14px;
  position: relative;
}
.footer .footer_contact ul li::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-bottom: 1px solid #d4d6dc;
  width: 100%;
  left: 0;
}
.footer .footer_contact ul li:first-child {
  padding-top: 0;
}
.footer .footer_contact ul li:last-child {
  padding-bottom: 0;
}
.footer .footer_contact ul li:last-child::after {
  display: none;
}
.footer .social p {
  color: #fff;
}
.footer .social_icons {
  display: flex;
}
.footer .social_icons .icon {
  cursor: pointer;
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  margin-right: 12px;
  border: 1px solid transparent;
  transition: 0.15s linear;
}
.footer .social_icons .icon svg {
  max-height: 20px;
  width: 25px;
  color: #cb2026;
  margin-right: 0;
  transition: 0.15s linear;
}
.footer .social_icons .icon:hover {
  border: 1px solid #fff;
  background-color: transparent;
}
.footer .social_icons .icon:hover svg {
  color: #fff;
}
.footer .copyright {
  text-align: center;
  color: #fff;
  margin-top: 3rem;
}
.footer .copyright p {
  font-size: 14px;
  color: inherit;
}
@media screen and (max-width: 1200px) {
  .footer .footer_row {
    flex-wrap: wrap;
  }
  .footer .footer_row .footer_col {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 1rem;
  }
  .footer .footer_row .footer_col h5 {
    margin-bottom: 8px;
  }
  .footer .footer_col4 {
    flex-basis: 60%;
    margin-bottom: 1rem;
  }
  .footer .footer_contact ul li {
    padding: 0.7rem 0;
  }
}
.footer .subscribe input {
  border-radius: 4px 0 0 4px;
  border-right: none;
}
.footer .subscribe button {
  border-radius: 0 4px 4px 0;
}

.banner {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
  max-height: 1000px;
  display: flex;
  align-items: center;
  position: relative;
}
.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.banner .banner_content {
  position: relative;
  z-index: 1;
  color: #fff;
}
.banner .banner_content h1 {
  color: inherit;
  font-weight: 800;
}
.banner .banner_content p {
  color: inherit;
}
.banner .banner_btns {
  font-weight: 500;
}

.aboutUs {
  margin-top: 40px;
}
.aboutUs .aboutImg img {
  border-radius: 4px;
}
.aboutUs .aboutUs_content h2 {
  font-weight: 700;
}

.vision .visionCard {
  padding: 2rem 1rem;
  box-shadow: 0 0 20px -4px rgba(65, 74, 86, 0.3215686275);
  border-radius: 6px;
  border: 1px solid #e7e7e7;
  text-align: center;
  background-color: #fff;
}
.vision .visionCard h5 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.review .testimonial-single {
  text-align: center;
  width: 80%;
  margin: auto;
}
.review .testimonial-single p {
  font-size: 15px;
  color: #4e4e4e;
  margin: 15px 0px 11px;
  position: relative;
}
.review .testimonial-single > h5 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #4a4a4a;
}
.review .testimonial-single > h6 {
  font-size: 16px;
  color: #4e4e4e;
  font-weight: 400;
}
.review .testimonial-single-img {
  text-align: center;
  padding: 10px 0px;
}
.review .testimonial-single-img img {
  display: inline !important;
  width: 100px !important;
  height: 100px;
  border-radius: 50%;
}

.services .serviceBox_layer {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #cb2026;
  padding: 1rem 1.3rem;
  transition: 0.2s linear;
  overflow-y: auto;
}
.services .serviceBox_layer h6 {
  color: #fff;
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 600;
}
.services .serviceBox_layer p {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}
.services .serviceBox {
  box-shadow: 0px 0px 15px -5px rgba(0, 0, 0, 0.3);
  border: 1px solid #dedede;
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
  position: relative;
  cursor: pointer;
}
.services .serviceBox:hover .serviceBox_layer {
  top: 0;
}
.services .serviceBox_img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 200px;
}
.services .serviceBox_content {
  padding: 10px;
  text-align: center;
}
.services .serviceBox_content h6 {
  font-size: 1rem;
  font-weight: 600;
}

.offer .offer_content ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.offer .offer_content ul li {
  display: flex;
  align-items: baseline;
  margin-bottom: 14px;
  font-size: 16px;
}
.offer .offer_content ul li::before {
  content: "";
  width: 0.7em;
  border-bottom: 1px solid currentColor;
  margin: 0 12px 0 0;
  transform: translateY(-0.25em);
  flex-shrink: 0;
}

.projects .tableOuter {
  overflow-x: auto;
}
.projects table {
  font-family: "Muli", sans-serif;
  border-color: #4a4a4a;
  font-size: 16px;
}
@media screen and (max-width: 1200px) {
  .projects table {
    font-size: 14px;
  }
}
.projects table thead th {
  color: #fff;
  background-color: #283089;
}
.projects table tbody th {
  min-width: 200px;
}
.projects table tbody tr td:nth-child(1), .projects table tbody tr td:nth-child(2) {
  min-width: 150px;
}
.projects table > :not(:first-child) {
  border-top-width: 1px;
}
.projects table > :not(caption) > * > * {
  padding: 0.8rem;
}

.contactUs {
  font-family: "Muli", sans-serif;
}
.contactUs .contactUs_wrapper {
  padding: 1rem;
  border: 1px solid #dedede;
  border-radius: 6px;
  background-color: #fff;
}
.contactUs .contactPage_img {
  height: 100%;
  border: 1px solid #dedede;
  overflow: hidden;
  border-radius: 6px;
}
.contactUs .contactPage_img iframe {
  min-height: 300px;
}
.contactUs .contactPage_form {
  padding: 1rem;
  overflow-y: auto;
  max-height: 100%;
}
@media screen and (max-width: 767px) {
  .contactUs .contactPage_form {
    width: 100%;
  }
}
.contactUs label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.1rem;
}
.contactUs input,
.contactUs textarea,
.contactUs select {
  box-shadow: none;
  font-size: 14px;
}
.contactUs input:focus,
.contactUs textarea:focus,
.contactUs select:focus {
  box-shadow: none;
}
.contactUs textarea {
  max-height: 200px;
  min-height: 100px;
}

.termsCondition .termsContainer {
  width: 90%;
  margin: auto;
}
.termsCondition .termsContainer h5 {
  font-size: 1rem;
  margin: 0 0 10px;
}
.termsCondition .termsContainer h5:not(:first-child) {
  margin-top: 1.5rem;
}
.termsCondition .termsContainer ul {
  padding-left: 1rem;
}
.termsCondition .termsContainer p,
.termsCondition .termsContainer ul {
  font-size: 12px;
}

.faq .faq_accordian .accordion-item {
  border-radius: 4px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid #cb2026;
}
.faq .faq_accordian .accordion-button {
  background-color: #cb2026;
  color: #fff;
  padding: 14px 16px;
}
.faq .faq_accordian .accordion-button.collapsed {
  background-color: #cb2026;
  border-color: #cb2026;
}
.faq .faq_accordian .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}
.faq .faq_accordian .accordion-button::after {
  display: none;
}
/*# sourceMappingURL=style.css.map */
