@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
.siteHeader {
  position: relative;
}
.siteHeader__nav {
  background: #fff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  padding: 10px 0px;
}
.siteHeader__navRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.siteHeader__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #000;
  font-size: 1.15rem;
}
.siteHeader__logo img {
  height: 100px;
  width: auto;
}
.siteHeader__logo b {
  font-weight: 700;
}
@media (max-width: 1600px) {
  .siteHeader__logo img {
    height: 80px;
  }
}
@media (max-width: 767px) {
  .siteHeader__logo img {
    height: 60px;
  }
}
.siteHeader__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
}
@media (max-width: 1200px) {
  .siteHeader__links {
    gap: 22px;
  }
}
.siteHeader__links a {
  color: #000;
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.siteHeader__links a:hover, .siteHeader__links a.active {
  color: #770008;
}
@media (max-width: 1600px) {
  .siteHeader__links a {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .siteHeader__links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    -webkit-transition: max-height 0.35s ease-in-out;
    transition: max-height 0.35s ease-in-out;
    z-index: 9;
  }
  .siteHeader__links a {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .siteHeader__links.isOpen {
    max-height: 400px;
  }
}
.siteHeader__accentBar {
  display: block;
  width: 100%;
  height: 3px;
  background: #770008;
}

.crossLine {
  display: none;
  background: #fff;
  position: relative;
  padding: 0;
  width: 30px;
  height: 22px;
  cursor: pointer;
  border: none;
}
@media (max-width: 991px) {
  .crossLine {
    display: inline-block;
  }
}
.crossLine:focus, .crossLine:hover {
  outline: none;
}
.crossLine .line {
  display: block;
  background: #000;
  height: 2px;
  width: 26px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.crossLine .line.crossLine1 {
  top: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.crossLine .line.crossLine2 {
  top: 45%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.crossLine .line.crossLine3 {
  bottom: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.crossLine.active .line.crossLine1 {
  top: 45%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.crossLine.active .line.crossLine2 {
  opacity: 0;
}
.crossLine.active .line.crossLine3 {
  bottom: 45%;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  color: #666666;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

p {
  font-size: 24px;
  line-height: 32px;
  color: #666666;
  margin-bottom: 30px;
}
@media (max-width: 1600px) {
  p {
    font-size: 20px;
    line-height: 26px;
  }
}
@media (max-width: 991px) {
  p {
    font-size: 16px;
    line-height: 22px;
  }
}

ul {
  padding-left: 0px;
  margin-bottom: 0px;
}
ul li {
  font-size: 16px;
  line-height: 20px;
}

@media (max-width: 767px) {
  .container {
    padding: 0 25px;
  }
}
@media screen and (min-width: 1300px) {
  .container {
    max-width: 1270px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1500px) {
  .container {
    max-width: 1400px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1700px) {
  .container {
    max-width: 1600px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1800px) {
  .container {
    max-width: 1720px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 2000px) {
  .container {
    max-width: 1920px;
    margin: 0 auto;
  }
}
.buttons a {
  margin: 5px 5px;
}

.textCenter {
  text-align: center;
}

.textLeft {
  text-align: left;
}

.textRight {
  text-align: right;
}

.pink-bg {
  background: #FFF2F3;
}

.gray-bg {
  background: #E8E8E8;
}

.max90 {
  max-width: 90%;
}

.max80 {
  max-width: 80%;
}

.max800 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1600px) {
  .max80 {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .max80, .max90 {
    max-width: 100%;
  }
}
.myBtn {
  background: #D1960F;
  padding: 15px 30px;
  color: #fff;
  display: inline-block;
  font-size: 18px;
  border-radius: 60px;
  text-transform: uppercase;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.myBtn svg {
  margin-left: 10px;
}
.myBtn:hover, .myBtn:focus {
  color: #fff;
}
@media (max-width: 1600px) {
  .myBtn {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .myBtn {
    font-size: 14px;
  }
}

.bullets {
  list-style: none;
}
.bullets li {
  padding-left: 20px;
}
.bullets li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 7px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #000;
}

.titleFont {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 70px;
  line-height: 80px;
  letter-spacing: 0%;
  margin-bottom: 50px;
  color: #232323;
}
@media (max-width: 1600px) {
  .titleFont {
    font-size: 56px;
    line-height: 66px;
  }
}
@media (max-width: 1200px) {
  .titleFont {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 991px) {
  .titleFont {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 30px;
  }
  .titleFont br {
    display: none;
  }
}
@media (max-width: 767px) {
  .titleFont {
    font-size: 30px;
    line-height: 36px;
  }
}

.subTitle {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 30px;
  color: #232323;
}
.subTitle span {
  color: #7a1010;
  font-weight: 700;
}
@media (max-width: 1600px) {
  .subTitle {
    font-size: 28px;
    line-height: 36px;
  }
}
@media (max-width: 1200px) {
  .subTitle {
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .subTitle {
    font-size: 22px;
    line-height: 30px;
  }
}

.max1200 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 120px 0px;
}
.section.paddb0 {
  padding-bottom: 0px !important;
}
.section.paddT0 {
  padding-top: 0px !important;
}
@media (max-width: 1600px) {
  .section {
    padding: 100px 0px;
  }
}
@media (max-width: 1200px) {
  .section {
    padding: 80px 0px;
  }
}
@media (max-width: 991px) {
  .section {
    padding: 60px 0px;
  }
}

.hero {
  position: relative;
  width: 100%;
  background-color: #7a1010;
  overflow: hidden;
}
.hero__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  min-height: 480px;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .hero__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    min-height: auto;
  }
}
.hero__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42%;
          flex: 0 0 42%;
  max-width: 42%;
  background-color: #7a1010;
  color: #fff;
  padding: 70px 60px 70px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 2;
}
.hero__content::after {
  content: "";
  position: absolute;
  top: 0;
  right: -60px;
  width: 120px;
  height: 100%;
  background-color: #7a1010;
  z-index: 1;
}
@media (max-width: 991px) {
  .hero__content::after {
    display: none;
  }
}
@media (max-width: 1600px) {
  .hero__content {
    padding: 60px 50px 60px 70px;
  }
}
@media (max-width: 1200px) {
  .hero__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 46%;
            flex: 0 0 46%;
    max-width: 46%;
    padding: 50px 40px 50px 50px;
  }
}
@media (max-width: 991px) {
  .hero__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    padding: 48px 32px;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .hero__content {
    padding: 40px 24px;
  }
}
@media (max-width: 575px) {
  .hero__content {
    padding: 32px 20px;
  }
}
.hero__title {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 4.375rem;
  line-height: 1.15;
  margin-bottom: 26px;
}
@media (max-width: 1600px) {
  .hero__title {
    font-size: 3.85rem;
  }
}
@media (max-width: 1200px) {
  .hero__title {
    font-size: 3rem;
  }
}
@media (max-width: 991px) {
  .hero__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .hero__title {
    font-size: 1.55rem;
    line-height: 1.25;
    margin-bottom: 18px;
  }
}
.hero__desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #f0e4e4;
  max-width: 380px;
  margin-bottom: 36px;
}
@media (max-width: 1200px) {
  .hero__desc {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .hero__desc {
    margin-bottom: 28px;
  }
}
@media (max-width: 767px) {
  .hero__desc {
    font-size: 0.95rem;
  }
}
@media (max-width: 575px) {
  .hero__desc {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }
}
.hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .hero__actions {
    gap: 12px;
  }
}
@media (max-width: 575px) {
  .hero__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}
.hero__image-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58%;
          flex: 0 0 58%;
  max-width: 58%;
  position: relative;
  overflow: hidden;
}
.hero__image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 1200px) {
  .hero__image-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 54%;
            flex: 0 0 54%;
    max-width: 54%;
  }
}
@media (max-width: 991px) {
  .hero__image-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    height: 360px;
  }
}
@media (max-width: 767px) {
  .hero__image-wrap {
    height: 280px;
  }
}
@media (max-width: 575px) {
  .hero__image-wrap {
    height: 220px;
  }
}
@media (max-width: 767px) {
  .hero__content {
    padding: 20px 20px;
  }
}

.innerbanner .hero__title {
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .innerbanner .hero__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.btn-pill {
  background-color: #1c1c1c;
  display: inline-block;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 15px 35px;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.btn-pill.maroon {
  background: #7a1010;
}
.btn-pill.black {
  background: #1A1A18;
}
.btn-pill.white {
  background: #fff;
  color: #1A1A18;
}
.btn-pill:hover {
  background-color: #000;
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media (max-width: 991px) {
  .btn-pill {
    padding: 12px 22px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .btn-pill {
    text-align: center;
  }
}

.service-bg {
  background: url(../images/servicebg.jpg) no-repeat;
  background-size: cover;
}

.aboutsec .titleFont {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.abtImage {
  float: left;
  margin-right: 50px;
  margin-bottom: 50px;
  max-width: 40%;
}
@media (max-width: 767px) {
  .abtImage {
    float: inherit;
    max-width: 100%;
  }
}

#accordionExample .accordion-item {
  border: 0px;
  background: transparent;
  border-bottom: 1px solid #fff !important;
}
#accordionExample .accordion-item .accordion-header {
  border: 0;
  background-color: transparent;
}
#accordionExample .accordion-item .accordion-header button {
  display: block;
  width: 100%;
  text-align: left;
  border-radius: 0;
  text-decoration: inherit;
  color: #0B0B45;
  font-size: 32px;
  line-height: 32px;
  font-family: "Urbanist", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: normal;
  word-break: break-word;
  padding: 30px 20px;
  background: transparent;
  border: 0px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  font-weight: 600;
  color: #000000;
}
#accordionExample .accordion-item .accordion-header button.collapsed {
  color: #666666;
}
#accordionExample .accordion-item .accordion-header button.collapsed::after {
  font-family: FontAwesome;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
#accordionExample .accordion-item .accordion-header button:hover {
  text-decoration: inherit;
}
#accordionExample .accordion-item .accordion-header button span.loc {
  display: block;
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  padding-left: 50px;
}
@media (max-width: 1600px) {
  #accordionExample .accordion-item .accordion-header button {
    font-size: 26px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  #accordionExample .accordion-item .accordion-header button {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  #accordionExample .accordion-item .accordion-header button {
    padding: 20px 0px;
  }
}
#accordionExample .accordion-item .accordion-body {
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
#accordionExample .accordion-item .accordion-body .image img {
  min-width: 300px;
  border-radius: 20px;
}
#accordionExample .accordion-item .accordion-body .link {
  color: #666666;
  font-weight: 600;
}
#accordionExample .accordion-item .accordion-body p {
  font-size: 22px;
  line-height: 30px;
  color: #000000;
  margin-bottom: 20px;
}
@media (max-width: 1600px) {
  #accordionExample .accordion-item .accordion-body p {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 1200px) {
  #accordionExample .accordion-item .accordion-body p {
    font-size: 14px;
    line-height: 22px;
  }
}
#accordionExample .accordion-item .accordion-body .font30 {
  margin-bottom: 10px !important;
}
#accordionExample .accordion-item .accordion-body strong, #accordionExample .accordion-item .accordion-body .font30 {
  color: #6D5737;
}
@media (max-width: 767px) {
  #accordionExample .accordion-item .accordion-body {
    padding: 10px 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #accordionExample .accordion-item .accordion-body .font30 {
    margin-bottom: 10px;
  }
  #accordionExample .accordion-item .accordion-body .tagLine {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 575px) {
  #accordionExample .accordion-item:last-child {
    margin-bottom: 0px;
  }
}

#accordionExample.visionAccordion .accordion-item {
  border-bottom: 1px solid #EFEFEF !important;
}
#accordionExample.visionAccordion .accordion-item .accordion-body {
  padding: 0px 20px 40px 20px;
}
#accordionExample.visionAccordion .accordion-item .accordion-header button.collapsed::after {
  background: url(../images/plus.png) no-repeat;
  background-size: contain;
}
#accordionExample.visionAccordion .accordion-button:not(.collapsed)::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: url(../images/plus.png) no-repeat;
  background-size: contain;
}

.mb30 {
  margin-bottom: 30px;
}

.whiteBox {
  -webkit-box-shadow: 0px 4px 30px 10px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 4px 30px 10px rgba(0, 0, 0, 0.1019607843);
  height: 100%;
  background: #fff;
  border-radius: 40px;
  padding: 40px;
}
.whiteBox img {
  margin-bottom: 30px;
}
.whiteBox p {
  margin-bottom: 0px;
}

.recovery-section {
  border-radius: 60px;
  padding-left: 40px;
  padding-right: 40px;
  background: #E8E8E8;
}

.testimonialSlider {
  padding-right: 50px;
  margin-bottom: 0px !important;
}
.testimonialSlider .slick-dots {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.testimonialSlider .slick-dots li button {
  font-size: 0px;
  background: #D9D9D9;
  border-radius: 50%;
}
.testimonialSlider .slick-dots li.slick-active button {
  background: #770008;
}

.testimonial {
  background: #FFF2F3;
  padding: 70px 50px;
  border-radius: 30px;
  position: relative;
}
.testimonial::after {
  content: "";
  background: url(../images/quote.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  max-width: 300px;
  display: block;
  background-position: top right;
}
.testimonial p {
  font-weight: 500;
  font-style: Italic;
  font-size: 32px;
  line-height: 42px;
}
.testimonial span {
  color: #666666;
  font-size: 22px;
  line-height: 22px;
}
@media (max-width: 1200px) {
  .testimonial {
    padding: 50px 30px;
  }
  .testimonial p {
    font-size: 24px;
    line-height: 32px;
  }
  .testimonial span {
    font-size: 18px;
    line-height: 20px;
  }
  .testimonial::after {
    max-width: 200px;
  }
}
@media (max-width: 767px) {
  .testimonial {
    padding: 30px 30px;
  }
  .testimonial p {
    font-size: 20px;
    line-height: 30px;
  }
  .testimonial span {
    font-size: 16px;
  }
}

.siteFooter {
  background: #1A1A18;
}
.siteFooter .titleFont {
  color: #B0B0B0;
}

.siteFooter__main {
  border-top: 1px solid rgba(255, 242, 243, 0.1);
  margin-top: 60px;
  padding: 60px 0px;
}
.siteFooter__main .col-lg-4, .siteFooter__main .col-lg-5, .siteFooter__main .col-lg-3 {
  margin: 0px;
}
.siteFooter__main .siteFooter__heading {
  color: #6B6B6B;
}
.siteFooter__main .siteFooter__contactCols {
  color: #D1D1D1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.siteFooter__main .siteFooter__contactCols p {
  color: #D1D1D1;
  margin: 0;
}
.siteFooter__main .siteFooter__contactCols .siteFooter__reach a {
  color: #D1D1D1;
  display: inline-block;
}
.siteFooter__main .siteFooter__contactCols .siteFooter__reach a:first-child {
  margin-bottom: 20px;
}
.siteFooter__main .siteFooter__contactCols p, .siteFooter__main .siteFooter__contactCols a {
  font-size: 22px;
  line-height: 30px;
}
@media (max-width: 1600px) {
  .siteFooter__main .siteFooter__contactCols p, .siteFooter__main .siteFooter__contactCols a {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .siteFooter__main .siteFooter__contactCols p, .siteFooter__main .siteFooter__contactCols a {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 991px) {
  .siteFooter__main {
    margin-top: 40px;
    padding: 40px 0px;
  }
  .siteFooter__main .siteFooter__contactCols {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 767px) {
  .siteFooter__main .siteFooter__contactCols .siteFooter__reach {
    margin-bottom: 40px;
  }
}

.siteFooter__bottom {
  border-top: 1px solid rgba(217, 217, 217, 0.2);
}
.siteFooter__bottom p {
  margin: 0px;
  padding: 20px 0px;
}
@media (max-width: 767px) {
  .siteFooter__bottom p {
    font-size: 14px;
    line-height: 20px;
  }
}

.siteFooter__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.siteFooter__linkList {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  margin-top: -10px;
}
.siteFooter__linkList li {
  padding: 10px 0px 10px 0px;
  min-width: 20%;
}
.siteFooter__linkList li.active a {
  color: #fff;
  text-decoration: underline;
}
.siteFooter__linkList li a {
  color: #D1D1D1;
  padding: 5px 0px;
  font-size: 22px;
  line-height: 30px;
}
@media (max-width: 1600px) {
  .siteFooter__linkList li a {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .siteFooter__linkList li a {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .siteFooter__linkList {
    margin-bottom: 20px;
  }
}

.btnsRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 991px) {
  .btnsRow {
    gap: 10px;
  }
}

@media (max-width: 991px) {
  .statsSection__row {
    row-gap: 0px;
  }
}

@media (max-width: 767px) {
  .mob-row-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.statCard .countNum, .statCard h3 {
  font-weight: 400;
  font-size: 90px;
  line-height: 90px;
  color: #9B9B9B;
  font-family: "DM Serif Display", serif;
}
.statCard p {
  color: #000;
}
@media (max-width: 1600px) {
  .statCard .countNum, .statCard h3 {
    font-size: 75px;
    line-height: 80px;
  }
}
@media (max-width: 1200px) {
  .statCard .countNum, .statCard h3 {
    font-size: 60px;
    line-height: 70px;
  }
}
@media (max-width: 991px) {
  .statCard .countNum, .statCard h3 {
    font-size: 46px;
    line-height: 56px;
  }
  .statCard p {
    margin-bottom: 0px;
  }
}

.whitetext {
  color: #Fff;
}

.capabilities-card {
  background: #770008;
  border-radius: 30px;
  padding: 100px 40px;
  position: relative;
  z-index: 1;
}
.capabilities-card .subTitle {
  color: #fff;
}
.capabilities-card p:last-child {
  margin-bottom: 0pxs;
}
.capabilities-card .capability-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px 0px;
}
.capabilities-card .capability-list li {
  background: rgba(255, 255, 255, 0.1019607843);
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  padding: 20px 25px;
  color: #fff;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
@media (max-width: 991px) {
  .capabilities-card {
    padding: 50px 30px;
  }
  .capabilities-card .capability-list li {
    font-size: 18px;
    line-height: 18px;
    padding: 15px 22px;
  }
}

.capabilities-sec {
  position: relative;
}
.capabilities-sec .row {
  position: relative;
  z-index: 1;
}
.capabilities-sec::after {
  content: "";
  background: #fff;
  height: 30%;
  width: 100%;
  position: absolute;
  right: 0px;
  left: 0px;
  bottom: 0px;
  z-index: 0;
}

.team-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.team-list li {
  list-style: none;
}
.team-list li img {
  border-radius: 30px;
  margin-bottom: 15px;
}
.team-list li p {
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  color: #000000;
  margin-bottom: 5px;
}
.team-list li span {
  display: block;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  color: #666666;
}
@media (max-width: 1200px) {
  .team-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .team-list li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3%;
            flex: 0 0 33.3%;
    max-width: 100%;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .team-list li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .team-list li p {
    font-size: 18px;
    line-height: 20px;
  }
  .team-list li span {
    font-size: 16px;
    line-height: 18px;
  }
}

.nav-pills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.nav-pills li button {
  padding: 30px;
  font-weight: 400;
  background: transparent !important;
  font-size: 32px;
  line-height: 32px;
  text-align: center;
}
@media (max-width: 1600px) {
  .nav-pills li button {
    font-size: 28px;
    line-height: 30px;
    padding: 20px 25px;
  }
}
@media (max-width: 1200px) {
  .nav-pills li button {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 991px) {
  .nav-pills li button {
    font-size: 20px;
    line-height: 24px;
    padding: 15px 20px;
  }
}
@media (max-width: 767px) {
  .nav-pills li button {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 575px) {
  .nav-pills li button {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .nav-pills {
    gap: 12px;
  }
}

.serviceTabs .nav-pills li button {
  border: 1px solid #770008 !important;
  border-radius: 10px !important;
  color: #232323;
}
.serviceTabs .nav-pills li button.active, .serviceTabs .nav-pills li button:hover {
  background: #770008 !important;
  color: #fff;
}

.tab-content img {
  border-radius: 30px;
}

.specList {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.specList li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 100%;
  padding: 0 15px;
  margin: 15px 0px;
}
.specList li .whiteBox {
  -webkit-box-shadow: 0px 4px 30px 10px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 4px 30px 10px rgba(0, 0, 0, 0.1019607843);
  height: 100%;
  background: #fff;
  border-radius: 40px;
  padding: 60px 30px;
  position: relative;
  min-height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.specList li .whiteBox span {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 250px;
  line-height: 250px;
  position: absolute;
  right: -5%;
  top: -35%;
  opacity: 3%;
}
.specList li .whiteBox p {
  margin-bottom: 0px;
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
  text-align: center;
  color: #232323;
}
@media (max-width: 1600px) {
  .specList li .whiteBox {
    padding: 40px 25px;
  }
  .specList li .whiteBox span {
    font-size: 200px;
    line-height: 200px;
  }
  .specList li .whiteBox p {
    font-size: 28px;
    line-height: 38px;
  }
}
@media (max-width: 1200px) {
  .specList li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3%;
            flex: 0 0 33.3%;
    max-width: 33.3%;
  }
}
@media (max-width: 991px) {
  .specList li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .specList li .whiteBox p {
    font-size: 24px;
    line-height: 34px;
  }
  .specList li .whiteBox span {
    font-size: 150px;
    line-height: 150px;
  }
}
@media (max-width: 575px) {
  .specList li {
    padding: 0 10px;
    margin: 10px 0px;
  }
  .specList li .whiteBox {
    min-height: 120px;
    padding: 20px;
    border-radius: 20px;
  }
  .specList li .whiteBox p {
    font-size: 20px;
    line-height: 30px;
  }
  .specList li .whiteBox span {
    font-size: 120px;
    line-height: 120px;
  }
}

.specList1 {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1600px;
  margin: 0 auto;
}
.specList1 li {
  padding: 20px 30px;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: #fff;
  border-radius: 50px;
  background: #770008;
}
@media (max-width: 1600px) {
  .specList1 {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 991px) {
  .specList1 {
    gap: 15px;
  }
  .specList1 li {
    font-size: 20px;
    line-height: 24px;
    padding: 12px 20px;
  }
}
@media (max-width: 767px) {
  .specList1 li {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 575px) {
  .specList1 li {
    font-size: 16px;
    line-height: 20px;
  }
}

.industriesTab .nav-pills {
  border-bottom: 2px solid rgba(119, 0, 8, 0.1);
}
.industriesTab .nav-pills li button {
  color: #919191;
}
.industriesTab .nav-pills li button.active, .industriesTab .nav-pills li button:hover {
  color: #770008 !important;
}

.featureList__card {
  background: #F4F4F4;
  border-radius: 30px;
  padding: 60px 30px;
}
.featureList__card .featureList__item {
  border-bottom: 1px solid #D6D6D6;
  padding: 30px;
}
.featureList__card .featureList__item:last-child {
  border: 0px;
}
.featureList__card .featureList__item h4 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 32px;
  color: #000000;
  margin-bottom: 10px;
}
.featureList__card .featureList__item p {
  margin-bottom: 0px;
  font-weight: 600;
  font-size: 22px;
  line-height: 22px;
  color: #666666;
}

.contactSection {
  padding: 60px 0;
  background: #fff;
}
@media (max-width: 767px) {
  .contactSection {
    padding: 40px 0;
  }
}
.contactSection__heading {
  font-weight: 700;
  text-align: center;
  font-size: 2rem;
  line-height: 1.35;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .contactSection__heading {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}
.contactSection__infoRow {
  margin-bottom: 50px;
}
.contactSection__panel {
  background: #7a1010;
  border-radius: 30px;
  overflow: hidden;
}

.infoCard {
  background: #FFF2F3;
  border-radius: 30px;
  padding: 60px 40px;
  height: 100%;
}
.infoCard__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #7a1010;
  font-size: 1.3rem;
  margin-bottom: 30px;
}
.infoCard__icon img {
  height: 80px;
}
@media (max-width: 1600px) {
  .infoCard__icon img {
    height: 60px;
    width: 60px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.infoCard h6 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
  color: #979797;
}
.infoCard p, .infoCard a {
  color: #666666;
  margin-bottom: 0px;
}
.infoCard__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.infoCard__social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.8rem;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.infoCard__social a:hover {
  background: #7a1010;
}
@media (max-width: 1200px) {
  .infoCard {
    padding: 30px;
  }
}

.contactForm {
  padding: 44px 40px;
}
@media (max-width: 991px) {
  .contactForm {
    padding: 34px 28px;
  }
}
@media (max-width: 767px) {
  .contactForm {
    padding: 26px 20px;
  }
}
.contactForm input, .contactForm textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 0.9rem;
}
.contactForm input::-webkit-input-placeholder, .contactForm textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contactForm input::-moz-placeholder, .contactForm textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contactForm input:-ms-input-placeholder, .contactForm textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contactForm input::-ms-input-placeholder, .contactForm textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contactForm input::placeholder, .contactForm textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contactForm input:focus, .contactForm textarea:focus {
  outline: none;
  border-color: #fff;
}
.contactForm textarea {
  resize: vertical;
  min-height: 100px;
}

.contactMap {
  height: 100%;
  min-height: 340px;
}
@media (max-width: 991px) {
  .contactMap {
    min-height: 300px;
  }
}
.contactMap iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}
@media (max-width: 991px) {
  .contactMap iframe {
    min-height: 300px;
  }
}

#pills-tabContent .titleFont {
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 30px;
}
@media (max-width: 1600px) {
  #pills-tabContent .titleFont {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 1200px) {
  #pills-tabContent .titleFont {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 991px) {
  #pills-tabContent .titleFont {
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=style.css.map */