@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&display=swap");
html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #FCFBFD;
  font-family: "Manrope", sans-serif;
  position: relative;
}

.overflow-hidden {
  overflow: hidden !important;
}

* {
  transition: 0.2s;
}

a {
  text-decoration: none;
  color: #000;
}

p {
  margin-bottom: 0;
}

i {
  cursor: pointer;
}

@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
@keyframes scrollVertical {
  from {
    height: 0%;
  }
  to {
    height: 100%;
  }
}
@keyframes scrollHorizontal {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes zoomLeft {
  0% {
    left: -60px;
  }
  100% {
    left: 0px;
  }
}
@keyframes zoomRight {
  0% {
    right: -60px;
  }
  100% {
    right: 0px;
  }
}
@keyframes scrollFeature {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  to {
    -webkit-mask-position: -50%;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@media (max-width: 576px) {
  .col-reverse {
    flex-direction: column-reverse !important;
  }
}

mark {
  padding: 0;
  background: #ED1927;
  background: linear-gradient(45deg, #ED1927 0%, #FFA0A0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-radius: 0;
}

.solid-action-btn {
  background-color: #ED1927;
  color: #ffffff;
  border: none;
  margin-left: 1rem;
  border-radius: 10px;
  padding: 8px 16px;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.13);
  font-size: 18px;
  font-weight: 500;
}
.solid-action-btn:hover {
  box-shadow: 0 8px 16px rgba(237, 25, 39, 0.5);
  transform: translateY(-2px);
  color: #ffffff;
}

.outline-btn {
  background-color: transparent;
  color: #ED1927;
  border: 2px solid #ED1927;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  box-shadow: none;
}
.outline-btn:hover {
  background-color: #ED1927;
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(237, 25, 39, 0.5);
  transform: translateY(-2px);
}

.heading {
  font-size: 42px;
  font-weight: 800;
  margin: 16px 0;
}
@media (max-width: 576px) {
  .heading {
    font-size: 30px;
    text-align: center;
  }
}

.sub-heading {
  font-size: 18px;
  color: #36485C;
}
@media (max-width: 576px) {
  .sub-heading {
    font-size: 17px;
    text-align: center;
  }
}

.blur-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  overflow: auto;
  animation-name: fadeIn;
  animation-duration: 0.3s;
  z-index: 1000;
}
.blur-overlay .dialog-box {
  background-color: #ffffff;
  margin: auto 10px;
  width: 700px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
  animation-name: fadeUp;
  animation-duration: 0.5s;
  z-index: 10000;
  padding: 16px 25px;
}
.blur-overlay .dialog-box .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blur-overlay .dialog-box .head h5 {
  font-weight: bold;
}
.blur-overlay .dialog-box .head .close {
  padding: 0px 8px;
  cursor: pointer;
}
.blur-overlay .dialog-box .content {
  margin: 1rem 0;
}
.blur-overlay .dialog-box .content input::-moz-placeholder {
  color: #C5C5C5;
  font-size: 14px;
}
.blur-overlay .dialog-box .content input::placeholder {
  color: #C5C5C5;
  font-size: 14px;
}
.blur-overlay .dialog-box .content input:focus, .blur-overlay .dialog-box .content textarea:focus {
  border-color: #ED1927 !important;
  box-shadow: none;
}
.blur-overlay .dialog-box .content input[type=number]::-webkit-outer-spin-button,
.blur-overlay .dialog-box .content input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.blur-overlay .dialog-box .content .solid-action-btn {
  padding: 0.75rem 3rem;
}
.blur-overlay .dialog-box .content .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}
.blur-overlay .dialog-box .content .loading::before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: loading 1s linear infinite;
}
.blur-overlay .dialog-box .content .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.blur-overlay .dialog-box .content .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.blur-overlay .thankyou-box {
  width: 550px;
}
.blur-overlay .thankyou-box .img {
  margin: auto;
  width: 150px;
  height: 150px;
}
.blur-overlay .thankyou-box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.blur-overlay .thankyou-box .content h3 {
  line-height: 1.5;
  font-weight: 800;
}
.blur-overlay .thankyou-box .content p {
  font-size: 14px;
}
.blur-overlay .thankyou-box .solid-action-btn {
  border-radius: 5px;
  font-size: 14px;
  margin-bottom: 16px;
}
.blur-overlay .thankyou-box .mssg {
  font-size: 14px;
  text-align: center;
}
.blur-overlay .thankyou-box .mssg a {
  color: #ED1927;
}

header {
  background-color: transparent;
}
header .navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 10px 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.062745098);
}
header .navbar .container {
  padding: 0;
}
header .navbar .container .navbar-brand img {
  width: 150px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
header .navbar .container .navbar-collapse {
  justify-content: end;
}
header .navbar .container .navbar-collapse .nav-item {
  position: relative;
}
header .navbar .container .navbar-collapse .nav-item .nav-link {
  color: #000000;
  font-weight: 500;
  padding: 0 1.25rem;
  cursor: pointer;
}
header .navbar .container .navbar-collapse .nav-item .nav-link::after {
  display: none;
}
header .navbar .container .navbar-collapse .nav-item .nav-link img {
  transform: rotate(180deg);
}
header .navbar .container .navbar-collapse .nav-item .hover-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  z-index: 1000;
  background-color: #fff;
  left: 0;
  right: 0;
  top: 40px;
  border-radius: 5px;
  box-shadow: 0px 2px 10px 4px rgba(0, 0, 0, 0.1490196078);
  width: -moz-max-content;
  width: max-content;
}
header .navbar .container .navbar-collapse .nav-item .hover-menu ul {
  padding: 0;
}
header .navbar .container .navbar-collapse .nav-item .hover-menu li {
  list-style: none;
}
header .navbar .container .navbar-collapse .nav-item .hover-menu li .nav-link {
  padding: 16px;
}
header .navbar .container .navbar-collapse .nav-item .hover-menu li:hover {
  background-color: #ED1927;
}
header .navbar .container .navbar-collapse .nav-item .show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header .navbar .container .d-flex {
  align-items: center;
}
header .navbar .container .d-flex button {
  font-size: 16px;
  border-radius: 10px;
  padding: 8px 30px;
}
header .active-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.7490196078);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.062745098);
  z-index: 10;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transition: all 0.5s ease-in-out;
}
@media (max-width: 991px) {
  header {
    padding: 0;
  }
  header .navbar, header .active-head {
    padding: 16px 16px 16px 5px;
  }
  header .navbar-brand {
    padding: 0.15rem 1rem;
    margin: 0 !important;
  }
  header .menu-toggle {
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
  }
  header .menu-toggle .bar {
    height: 4px;
    background-color: #333;
    border-radius: 2px;
    transition: 0.4s;
  }
  header .active .bar:nth-child(1) {
    transform: rotate(45deg) translate(9px, 5px);
  }
  header .active .bar:nth-child(2) {
    opacity: 0;
  }
  header .active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -6px);
  }
  header .navbar-toggler .hidden {
    display: none;
  }
  header .navbar-toggler .hidden .fa-times {
    font-size: 1.5em;
    color: #ED1927;
    clip-path: unset !important;
  }
  header .navbar-collapse {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 100px;
    background-color: #fff;
  }
  header .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 1rem !important;
    border-bottom: 1px solid #e1e1e1;
    font-size: 14px;
  }
  header .navbar-collapse .navbar-nav .hover-menu {
    width: 100% !important;
    top: 40px !important;
    z-index: 10;
  }
  header .d-flex {
    align-items: flex-start !important;
  }
  header .d-flex .nav-item {
    width: 100%;
  }
  header .d-flex .btn {
    padding: 1rem;
  }
  header .d-flex .btn .solid-action-btn {
    display: block;
    font-size: 14px;
    width: 100%;
    border-radius: 5px;
    margin: 0;
  }
}

section {
  padding: 50px 0 25px;
}
@media (max-width: 576px) {
  section {
    text-align: center;
  }
  section .solid-action-btn {
    display: inline;
  }
}

.lp-hero-section {
  background-image: url("../image/hero-bg.svg");
  background-repeat: no-repeat;
  background-position: 0 300px;
  background-size: contain;
}
.lp-hero-section .label {
  border: 1px solid #d7d7d7;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 25px;
  width: -moz-fit-content;
  width: fit-content;
}
.lp-hero-section .intro {
  margin: 2rem auto;
  max-width: 85%;
  height: 620px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2705882353);
}
.lp-hero-section .intro video, .lp-hero-section .intro iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 576px) {
  .lp-hero-section .intro {
    height: 300px;
  }
}

.our-clients {
  position: relative;
  overflow: hidden;
}
.our-clients .heading {
  font-weight: 800;
  font-size: 25px;
  line-height: 34px;
}
.our-clients .clients {
  padding: 2rem 0;
}
.our-clients .clients .item {
  border-radius: 8px;
  text-align: center;
  height: 80px;
  overflow: hidden;
  border: 2px solid #eee;
  background-color: #fff;
}
.our-clients .clients .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 576px) {
  .our-clients .col-12 {
    text-align: center;
  }
}

.our-legacy {
  overflow: hidden;
}
.our-legacy .sub-heading {
  line-height: 34px;
  margin: 30px 0;
  text-align: justify;
  padding-right: 25px;
}
.our-legacy .solid-action-btn {
  display: block;
  font-size: 16px;
  border-radius: 10px;
  padding: 8px 16px;
  margin: 16px 0;
}
.our-legacy .solid-action-btn i {
  margin-left: 5px;
}
.our-legacy img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
@media (max-width: 576px) {
  .our-legacy {
    text-align: center;
  }
  .our-legacy .solid-action-btn {
    display: inline;
  }
}

.why-choose-us {
  overflow: hidden;
}
.why-choose-us .hidden-column {
  display: none;
}
.why-choose-us .view-more-container {
  text-align: center;
  margin-top: 20px;
}
.why-choose-us .view-more-container button {
  font-weight: 700;
  font-size: 16px;
  background-color: #eee;
  color: #ED1927;
  border-radius: 20px;
  border: none;
  padding: 8px 12px;
}
.why-choose-us .info .imgdesk {
  display: block;
  background-color: #f2f2f2;
  padding: 12px;
  border-radius: 8px;
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin: auto;
}
.why-choose-us .info .imgdesk img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.why-choose-us .info .title {
  font-weight: 800;
  margin: 27px 0 9px;
}
.why-choose-us .info small {
  font-size: 14px;
  line-height: 1;
}
.why-choose-us .info .learnmore {
  display: block;
  font-weight: 800;
  font-size: 14px;
  color: #ED1927;
  margin-top: 16px;
}
.why-choose-us .info .yellow {
  background-color: #FEE8E8;
}
@media (max-width: 576px) {
  .why-choose-us .info {
    padding: 0 10px;
  }
}

.what-we-offer {
  overflow: hidden;
}
.what-we-offer .btn-light {
  background-color: #fff;
  color: #3A444D;
  border: 1px solid #d7d7d7;
  box-shadow: none;
}
.what-we-offer .carousel-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: auto;
  overflow: hidden;
}
.what-we-offer .carousel-container .progress-bar-container {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 2;
}
.what-we-offer .carousel-container .progress-bar-container .progress-bar {
  flex: 1;
  background: #D9D9D9;
  margin: 0 16px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  overflow: hidden;
}
.what-we-offer .carousel-container .progress-bar-container .progress-bar span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background-color: red;
  transition: width 0s;
  border-radius: 10px;
}
.what-we-offer .carousel-container .slides {
  display: flex;
  transition: transform 0.5s ease;
}
.what-we-offer .carousel-container .slides .slide {
  display: flex;
  flex-shrink: 0;
  width: 100%;
  height: 600px;
  padding: 40px;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
.what-we-offer .carousel-container .slides .slide .text {
  padding-right: 40px;
  width: 50%;
}
.what-we-offer .carousel-container .slides .slide .text .label {
  display: block;
  border: 1px solid #d7d7d7;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 25px;
  width: -moz-fit-content;
  width: fit-content;
}
.what-we-offer .carousel-container .slides .slide .text h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}
.what-we-offer .carousel-container .slides .slide .text p {
  font-size: 16px;
  margin: 16px 0;
}
.what-we-offer .carousel-container .slides .slide .text ul {
  list-style: none;
  margin: 30px 0;
  padding-left: 0;
}
.what-we-offer .carousel-container .slides .slide .text ul li {
  margin-bottom: 10px;
}
.what-we-offer .carousel-container .slides .slide .text ul li i {
  color: #333;
  margin-right: 8px;
}
.what-we-offer .carousel-container .slides .slide .solid-action-btn {
  margin: auto 0;
}
.what-we-offer .carousel-container .slides .slide img {
  flex: 1;
  width: 50%;
  height: auto;
  max-height: 100%;
  border-radius: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right center;
     object-position: right center;
}
@media (max-width: 768px) {
  .what-we-offer .btn-light {
    font-size: 14px;
  }
  .what-we-offer .carousel-container .progress-bar-container .progress-bar {
    margin: 0 8px;
  }
  .what-we-offer .carousel-container .slides .slide {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    height: -moz-max-content;
    height: max-content;
  }
  .what-we-offer .carousel-container .slides .slide img {
    display: none;
  }
  .what-we-offer .carousel-container .slides .slide .text {
    width: 100%;
    padding-right: 0;
  }
  .what-we-offer .carousel-container .slides .slide .text .label {
    display: inline-block;
  }
}

.our-products {
  overflow: hidden;
}
.our-products .bento-grid {
  height: 100%;
}
.our-products .bento-grid .bentoCard {
  border-radius: 20px;
  padding: 30px;
}
.our-products .bento-grid .bentoCard .img-stack {
  width: 100%;
}
.our-products .bento-grid .bentoCard .img-stack img {
  width: 100%;
}
.our-products .bento-grid .box1 {
  height: 70%;
}
.our-products .bento-grid .box2 {
  height: 30%;
}
.our-products .bento-grid .box3 {
  height: 26%;
}
.our-products .bento-grid .box4 {
  height: 74%;
}
@media (max-width: 1200px) {
  .our-products .bento-grid .box1, .our-products .bento-grid .box2, .our-products .bento-grid .box3, .our-products .bento-grid .box4 {
    height: auto;
  }
}
.our-products .flex-card {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
}
.our-products .bento-grid .bento-box {
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.our-products .bento-grid .bento-box img {
  max-width: 100%;
  border-radius: 10px;
}
.our-products .bento-grid .bento-box h4 {
  font-weight: 700;
}
.our-products .bento-grid .bento-box .img-stack {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.our-products .bento-grid .bg-red {
  background-color: #e10600;
}
.our-products .bento-grid .bg-dark {
  background-color: #2c2f35;
}
@media (max-width: 991px) {
  .our-products .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .our-products .bento-grid {
    grid-template-columns: 1fr;
  }
}

.our-locations {
  overflow: hidden;
}

.lets-connect {
  overflow: hidden;
  padding-bottom: 70px;
}
.lets-connect .container {
  background: #3A444D;
  border-radius: 16px;
  padding: 3rem;
}
.lets-connect .container .heading, .lets-connect .container .sub-heading {
  color: #fff;
}
.lets-connect .container img {
  width: 70%;
}
@media (max-width: 576px) {
  .lets-connect .container {
    padding: 1rem;
  }
  .lets-connect .container img {
    width: 100%;
  }
}

.about-hero {
  position: relative;
  background-image: none;
  overflow: hidden;
}
.about-hero .content {
  padding: 2rem;
}
.about-hero img {
  width: 100%;
  height: auto;
}
.about-hero .experience-banner {
  color: #2e2e2e;
  text-align: center;
}
.about-hero .experience-banner .top-text,
.about-hero .experience-banner .bottom-text {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
}
.about-hero .experience-banner img {
  width: 300px;
}
.about-hero .experience-banner .about-ts {
  font-size: 14px;
}
@media (max-width: 576px) {
  .about-hero .content {
    padding: 1rem;
    margin-bottom: 16px;
  }
  .about-hero .experience-banner img {
    width: 100%;
  }
}

.key-features {
  padding: 70px 0;
  overflow: hidden;
}
.key-features .card {
  padding: 25px;
  min-height: 400px;
  border-radius: 16px;
}
.key-features .card .card-head {
  display: block;
  background-color: #FEE8E8;
  padding: 20px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  overflow: hidden;
  margin: auto;
}
.key-features .card .card-head img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.key-features .card .bg-red {
  background-color: #ED1927;
}
.key-features .card .card-body {
  text-align: center;
}
.key-features .card .card-body h4 {
  font-size: 24px;
  font-weight: 700;
  margin: 16px 0;
  line-height: 35px;
}
.key-features .card .card-body p {
  font-size: 14px;
  color: #36485C;
  line-height: 20px;
  margin-bottom: 0;
}
.key-features .card:hover {
  box-shadow: 8px 8px 0px #ED1927;
  transform: translateY(-2px);
}

.usps {
  overflow: hidden;
}
.usps .container .cards .image-container {
  width: 350px;
  height: 100px;
  transition: height 0.3s ease;
  overflow: hidden;
  border-radius: 10px;
  transition: background 0.5s ease-in-out;
}
.usps .container .cards .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.usps .container .cards .card-header {
  padding: 0;
  border: none;
  background: none;
  font-size: 24px;
  font-weight: 800;
}
.usps .container .cards .card {
  background: #3A444D;
  color: #fff;
  border-radius: 24px;
  cursor: pointer;
  transition: max-height 0.5s ease-in-out, padding 0.3s ease-in-out;
  overflow: hidden;
  max-height: 200px;
  padding: 16px 32px;
  margin-bottom: 10px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: unset;
}
.usps .container .cards .card .card-content {
  display: none;
}
.usps .container .cards .active {
  max-height: 500px;
  padding: 30px;
  color: #fff;
  border: none;
}
.usps .container .cards .active .content {
  width: 50%;
}
.usps .container .cards .active .image-container {
  height: 300px;
}
.usps .container .cards .active .card-header {
  margin-bottom: 20px;
}
.usps .container .cards .active .card-content {
  display: block;
}
@media (max-width: 576px) {
  .usps {
    padding: 30px 0;
  }
  .usps .container .cards .card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .usps .container .cards .card .image-container {
    width: 100%;
    height: 200px;
  }
  .usps .container .cards .card .content {
    width: 100%;
  }
  .usps .container .cards .card .content .card-header {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .usps .container .cards .card .content .card-content {
    font-size: 14px;
    margin-bottom: 16px;
  }
}

.accreditation {
  overflow: hidden;
  padding: 70px 0;
}
.accreditation .info-card {
  background-color: #ED1927;
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  height: 500px;
}
.accreditation .info-card .info {
  position: absolute;
  left: 0;
  top: 10%;
  background-color: #fff;
  color: #ED1927;
  font-weight: 800;
  font-size: 16px;
  padding: 16px;
  border-radius: 0 16px 16px 0;
}
.accreditation .info-card .img {
  position: absolute;
  bottom: 2%;
  text-align: center;
  margin: 16px 0;
  left: 5%;
  right: 5%;
}
.accreditation .info-card .img img {
  width: 100%;
  margin: auto;
}
.accreditation .info-card:hover {
  box-shadow: 0px 8px 16px #ED1927;
  transform: translateY(-4px);
}
@media (max-width: 576px) {
  .accreditation {
    padding: 30px 0;
  }
  .accreditation .info .bold-heading {
    font-size: 25px !important;
    margin-bottom: 0 !important;
  }
  .accreditation .info .sub-title {
    font-size: 14px !important;
  }
  .accreditation .info .txt-cta {
    font-size: 14px !important;
  }
  .accreditation .info-card {
    height: 400px;
  }
}

.our-presence {
  overflow: hidden;
}
.our-presence .qrPointers {
  display: flex;
  justify-content: space-evenly;
}
.our-presence .qrPointers .pointer {
  margin: 0 10px 10px 0;
  border: 1px solid #D7D7D7;
  padding: 16px;
  border-radius: 10px;
}
.our-presence .qrPointers .pointer img {
  width: 60%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 10px;
}
.our-presence .qrPointers .pointer h5 {
  font-size: 45px;
  font-weight: 700;
  color: #ED1927;
  margin-bottom: 5px;
}
.our-presence .qrPointers .pointer p {
  font-size: 14px;
  color: #000000;
  margin: 0;
}
@media (max-width: 576px) {
  .our-presence .qrPointers {
    flex-direction: column;
  }
  .our-presence .qrPointers .pointer {
    margin: 0 0 10px 0;
    text-align: center;
  }
  .our-presence .qrPointers .pointer img {
    width: 80%;
    margin: 16px auto;
  }
  .our-presence .qrPointers .pointer h5 {
    font-size: 30px;
  }
}

.products-list {
  overflow: hidden;
}
.products-list .card {
  border: none;
  background-color: transparent;
}
.products-list .card img {
  width: 100%;
  border-radius: 12px;
}
.products-list .card .body {
  margin: 16px 0;
}
.products-list .card .body .content {
  padding: 16px 0 0;
  font-weight: 800;
  color: #36485C;
  font-size: 20px;
  margin-bottom: 20px;
}
.products-list .card .footer {
  margin-top: 16px;
}
.products-list .card .footer .solid-action-btn {
  font-weight: 700;
  font-size: 16px;
  background-color: #3A444D;
  color: #fff;
  margin: 0;
}
.products-list .blog-post .head {
  height: 300px;
  overflow: hidden;
}
.products-list .blog-post .head img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 576px) {
  .products-list .card {
    text-align: center;
  }
}

.facilities-section {
  overflow: hidden;
}
.facilities-section .facilities {
  border: 1px solid #D7D7D7;
  padding: 16px 40px;
  border-radius: 16px;
  margin-bottom: 20px;
}
.facilities-section .facilities .heading {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}

.facilities-usps, .lease-usps {
  overflow: hidden;
}
.facilities-usps .card, .lease-usps .card {
  min-height: 400px;
  padding: 30px;
  border-radius: 16px;
}
.facilities-usps .card .card-body .card-title, .lease-usps .card .card-body .card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.facilities-usps .card:hover, .lease-usps .card:hover {
  background-color: #FEE8E8;
  box-shadow: 0px 8px 16px #3A444D;
  transform: translateY(-4px);
}

.lease-usps {
  overflow: hidden;
}
.lease-usps .card {
  min-height: 300px;
}
.lease-usps .card .card-head {
  width: 80px;
  height: 80px;
  border: 1px solid #D7D7D7;
  border-radius: 10px;
}
.lease-usps .card .card-head img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.lease-usps .card .card-body {
  padding: 1rem 0;
}
.lease-usps .card:hover {
  background-color: unset;
}

.leasing-solutions {
  overflow: hidden;
}
.leasing-solutions .card {
  min-height: 820px;
}
.leasing-solutions .card .card-head {
  width: 100%;
  height: 400px;
}
.leasing-solutions .card .card-head img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
.leasing-solutions .card .card-body ul {
  padding-left: 16px;
  line-height: 25px;
}
.leasing-solutions .card:hover {
  box-shadow: unset;
  transform: unset;
}

.map-container {
  position: relative;
  /* Positions based on your image */
}
.map-container img {
  width: 100%;
  height: auto;
  display: block;
}
.map-container .pin {
  position: absolute;
}
.map-container .pin i {
  color: #ED1927;
  font-size: 30px;
  animation: bounce 1.5s ease-in-out infinite;
}
.map-container .dadri {
  top: 24%;
  left: 34%;
}
.map-container .kolkata {
  top: 44%;
  right: 33%;
}
.map-container .chennai {
  top: 73%;
  left: 37%;
}
.map-container .mumbai {
  top: 59%;
  left: 22%;
}
.map-container .mundra {
  top: 45%;
  left: 12%;
}
@media (max-width: 576px) {
  .map-container .pin i {
    font-size: 20px;
  }
}

.blogs .label {
  background-color: #FEE8E8 !important;
  color: #ED1927;
}
.blogs .card {
  border: none;
  background-color: transparent;
}
.blogs .card .head {
  height: 200px;
  overflow: hidden;
  border-radius: 15px;
}
.blogs .card .head img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
}
.blogs .card .body {
  margin-bottom: 16px;
}
.blogs .card .body .category {
  color: #ED1927;
  font-weight: 600;
  font-size: 12px;
}
.blogs .card .body .time {
  color: #949494;
  font-size: 12px;
}
.blogs .card .body .card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.blogs .card .body .card-text {
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.blogs .card .footer {
  text-align: end;
}
.blogs .card .footer .solid-action-btn {
  background-color: #fff;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  border: 1px solid #eee;
  padding: 8px 12px;
  box-shadow: none;
  margin-left: 0;
}
.blogs .card .footer .solid-action-btn:hover {
  background-color: #ED1927;
  color: #fff;
}
@media (max-width: 576px) {
  .blogs .card {
    text-align: center;
  }
}

.blog-detail {
  overflow: hidden;
}
.blog-detail .row {
  align-items: baseline;
}
.blog-detail .blog-img {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 15px;
}
.blog-detail .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.blog-detail .recents .imgdesk {
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 16px;
}
.blog-detail .recents .imgdesk img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.blog-detail .recents .recent-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.login {
  text-align: center;
  padding-bottom: 50px;
}
.login .col-6 {
  background-color: #fff;
  padding: 2rem 0;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.13);
  border-radius: 12px;
}
.login form {
  text-align: left;
  padding: 2rem;
}
.login form input, .login form textarea, .login form select {
  border: 1px solid #D7D7D7;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 16px;
  width: 100%;
  margin-bottom: 16px;
}
.login form input:focus, .login form textarea:focus, .login form select:focus {
  border-color: #ED1927;
  box-shadow: 0 0 0 2px rgba(237, 25, 39, 0.2);
}
.login form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.login form .solid-action-btn {
  margin-left: 0;
  width: 100%;
}
@media (max-width: 576px) {
  .login form {
    padding: 2rem 0;
  }
}

.contact-us {
  overflow: hidden;
}
.contact-us .container {
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1882352941);
  padding: 20px 40px;
  margin-top: 30px;
}
.contact-us form {
  padding: 2rem;
}
.contact-us form input, .contact-us form textarea {
  border: 1px solid #D7D7D7;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 16px;
  width: 100%;
  margin-bottom: 16px;
}
.contact-us form input:focus, .contact-us form textarea:focus {
  border-color: #ED1927;
  box-shadow: 0 0 0 2px rgba(237, 25, 39, 0.2);
}
.contact-us form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}
.contact-us form .loading::before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: loading 1s linear infinite;
}
.contact-us form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.contact-us form .solid-action-btn {
  margin-left: 0;
}
@media (max-width: 576px) {
  .contact-us form {
    padding: 2rem 0;
  }
}

footer {
  padding: 70px 0px;
  overflow: hidden;
  background-color: #3A444D;
}
footer .brand-info, footer .links {
  background-color: rgba(255, 255, 255, 0.1254901961);
  padding: 2rem;
  border-radius: 16px;
  color: #fff;
  font-size: 14px;
  line-height: 30px;
}
footer .brand-info .brand, footer .links .brand {
  background-color: #FFFFFF;
  display: inline-block;
}
footer .brand-info .btn-light, footer .links .btn-light {
  background-color: #fff;
  color: #3A444D;
}
footer .brand-info li, footer .links li {
  list-style: none;
}
footer .brand-info li a, footer .links li a {
  color: #fff;
}
footer .brand-info li a:hover, footer .links li a:hover {
  color: #ED1927;
}
footer .brand-info li a i, footer .links li a i {
  font-size: 40px;
  margin: 0 16px 0 0;
}
footer .box1 {
  height: 75%;
}
footer .box2 {
  height: 20%;
}
footer .links li {
  list-style: none;
  margin-bottom: 10px;
}
footer .links li a {
  color: #fff;
}
footer .links li a:hover {
  color: #ED1927;
}
footer .links li a i {
  font-size: 60px;
  margin: 16px 0;
}
@media (max-width: 576px) {
  footer {
    padding: 70px 0px 30px;
  }
  footer .flex-icons {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }
  footer .flex-icons li a i {
    font-size: 50px;
  }
  footer .box1 {
    height: auto;
    margin: 16px 0;
  }
  footer .box2 {
    height: auto;
    margin: 16px 0;
  }
}

.footer-bottom {
  text-align: center;
  padding: 5px 0;
  background-color: #ED1927;
  color: #fff;
  font-size: 14px;
}
.footer-bottom a {
  color: #ED1927;
  font-weight: 600;
}
.footer-bottom a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=main.css.map */