/* Googlefont Poppins CDN Link */
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Rajdhani:wght@300;400;500;600;700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --bg-primary: #36c6ff;
  --bg-primary2: #0197d3;
  --bg-primary3: #d9f0f9;
  --bg-hover-200: rgba(54 198 255 / 11%);
  --text-black: #000;
  --font-Roboto: "Roboto", sans-serif;
  --Font-quicksand: "Quicksand", sans-serif;
  --Font-Rajdhani: "Rajdhani", sans-serif;
  --Font-Power-Grotesk: "Power Grotesk";
  --Font-Neue-Power: "Neue Power";
}

* {
  font-family: "Poppins", sans-serif;
}

@media (min-width: 576px) {
  .container {
    max-width: 1536px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1664px;
    padding-left: 7rem;
    padding-right: 7rem;
  }
}
a {
  text-decoration: none;
}

ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.btn.btn-primary {
  padding: 8px 3rem;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--text-black);
  line-height: 150%;
  font-weight: 500;
  font-size: 1.25rem;
  background-color: var(--bg-primary);
  border: 1px solid var(--bg-primary);
  border-radius: 0.5rem;
  white-space: nowrap;
  transition: all 0.3s ease;
  font-family: var(--font-Roboto);
}
.btn.btn-primary:hover {
  background-color: var(--bg-primary2);
  border-color: var(--bg-primary2);
  color: var(--text-black);
}

.btn.btn-border {
  padding: 8px 3rem;
  width: -moz-fit-content;
  width: fit-content;
  color: #000;
  line-height: 150%;
  font-weight: 500;
  font-size: 1.25rem;
  background-color: transparent;
  border: 2px solid #000;
  border-radius: 0.5rem;
  white-space: nowrap;
  transition: all 0.3s ease;
  font-family: var(--font-Roboto);
}
.btn.btn-border:hover {
  background-color: transparent;
  border-color: var(--bg-primary);
  color: var(--bg-primary);
}

.dropdown.industries-btn .dropdown-menu {
  transform: translate(0px, 48px) !important;
  inset: 0px auto auto 0px !important;
}

.heading-main {
  text-align: center;
  padding-bottom: 40px;
}
.heading-main .h-top-title {
  line-height: 1rem;
  display: block;
  font-size: 0.875rem;
  color: var(--bg-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-Roboto);
  margin-bottom: 1.5rem;
}
.heading-main h2 {
  color: #000;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.025em;
  font-family: var(--Font-Neue-Power);
  margin-bottom: 1.5rem;
}
.heading-main h2 span {
  color: var(--bg-primary);
  font-family: var(--Font-Neue-Power);
}
.heading-main p {
  color: #45484c;
  line-height: 150%;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0px;
  font-family: var(--font-Roboto);
}

.soft-deve-btn {
  color: var(--bg-primary);
  border: 2px solid var(--bg-primary);
  line-height: 118%;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--Font-Neue-Power);
  padding: 0.8rem 1.5rem;
  display: inline-block;
  border-radius: 30px;
  margin-bottom: 2rem;
  cursor: auto;
}
.soft-deve-btn:active {
  border-color: var(--bg-primary) !important;
  color: var(--bg-primary) !important;
}
.soft-deve-btn:hover {
  border-color: var(--bg-primary);
  color: var(--bg-primary);
}

.banner-section {
  background-image: url("../images/industries/hitech_and_software/home-banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 7rem 0px;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-position: bottom;
}
.banner-section:after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 100%;
  background-image: linear-gradient(to right, #000000, rgba(0, 0, 0, 0.61), rgba(255, 255, 255, 0));
  z-index: -1;
}
.banner-section .banner-inner {
  width: 100%;
}
.banner-section .banner-content h1 {
  font-size: 64px;
  color: #fff;
  letter-spacing: 0.025em;
  line-height: 1.15;
  font-family: var(--Font-Neue-Power);
  font-weight: 700;
  margin-bottom: 2rem;
}
.banner-section .banner-content h1 span {
  color: var(--bg-primary);
  display: block;
  font-family: var(--Font-Neue-Power);
}
.banner-section .banner-content p {
  color: #f5f5f5;
  margin-bottom: 0px;
  line-height: 160%;
  font-weight: 400;
  font-size: 1.125rem;
  font-family: var(--font-Roboto);
}

.challenge-section {
  padding: 7rem 0px;
  background-color: #fff;
}
.challenge-section .challenges-content {
  max-width: 849px;
  margin: 0px auto 0px;
}
.challenge-section .heading-main {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 7rem;
}
.challenge-section .heading-main .h-top-title {
  color: #6a7267;
}
.challenge-section .challenge-card {
  display: block;
  height: 100%;
  padding: 2rem;
  background-color: #eff0f2;
  border-radius: 0.5rem;
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.challenge-section .challenge-card:hover {
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 0 #000, 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0);
  transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(1.05) scaleY(1.05);
}
.challenge-section .chall-icon {
  margin-bottom: 2rem;
}
.challenge-section .chall-icon svg {
  width: 3rem;
  height: 3rem;
  fill: var(--bg-primary);
}
.challenge-section .challenge-card-body h2 {
  color: #000;
  line-height: 130%;
  font-weight: 700;
  font-size: 1.5rem;
  font-family: var(--Font-Neue-Power);
  margin-bottom: 0.5rem;
}
.challenge-section .challenge-card-body p {
  color: #232426;
  line-height: 160%;
  font-weight: 400;
  font-size: 1.125rem;
  margin-bottom: 0px;
  font-family: var(--font-Roboto);
}

.whats-you-section {
  padding: 7rem 0px;
  background-color: #000;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.whats-you-section:after {
  content: "";
  position: absolute;
  width: 76%;
  max-width: 100%;
  height: 800px;
  left: 0px;
  right: 0px;
  top: 282px;
  background-image: url("../images/ai-concept.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  background-position: center;
  opacity: 33%;
  margin: auto;
}
.whats-you-section .whats-you-content {
  row-gap: 24rem;
  flex-direction: column;
  display: flex;
  width: 100%;
}
.whats-you-section .heading-main {
  padding-bottom: 7rem;
  max-width: 568px;
  margin: auto;
}
.whats-you-section .heading-main .h-top-title {
  color: var(--bg-primary);
}
.whats-you-section .heading-main h2 {
  color: #fff;
}
.whats-you-section .heading-main p {
  color: #fff;
}
.whats-you-section .whats-you-list {
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  max-width: 28rem;
}
.whats-you-section .whats-you-list li:last-child .whats-you-list-row {
  border-bottom: 0px;
  padding-bottom: 0px;
}
.whats-you-section .whats-you-list li p {
  margin-bottom: 0px;
}
.whats-you-section .whats-you-list li .whats-you-list-row {
  padding: 1rem 0px;
  border-bottom: 1px solid #45484c;
  display: flex;
  align-items: center;
}
.whats-you-section .whats-you-list li .whats-you-list-row svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--bg-primary);
  margin-right: 0.5rem;
}
.whats-you-section .whats-you-list li .text-neutral-light {
  color: #f8f9fa;
  line-height: 24px;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-Roboto);
  display: block;
}
.whats-you-section .whats-you-details {
  display: flex;
  justify-content: end;
  padding-top: 7rem;
}

.lets-break-section {
  padding: 7rem 0px;
}
.lets-break-section .heading-main {
  text-align: left;
  max-width: 577px;
}
.lets-break-section .heading-main .h-top-title {
  margin-bottom: 3rem;
}
.lets-break-section .heading-main h2 {
  font-size: 40px;
  white-space: pre-line;
  line-height: 1.3;
  font-weight: normal;
  margin-bottom: 3rem;
  font-family: var(--Font-Power-Grotesk);
}
.lets-break-section .heading-main p {
  color: #000;
  margin-bottom: 3rem;
  max-width: 372px;
}
.lets-break-section .lets-break-right {
  overflow: hidden;
}
.lets-break-section .lets-break-right img {
  width: 100%;
  border-radius: 63px;
}
.lets-break-section .industries-btn {
  display: inline-block;
}
.lets-break-section .industries-btn .btn-secondary {
  background-color: #fff;
  padding: 0.5rem 1rem;
  border: 1px solid #8a9197;
  border-radius: 0.5rem;
  align-items: center;
  display: flex;
  color: #000;
  font-size: 1.125rem;
  line-height: 1.75rem;
  white-space: nowrap;
  font-weight: 700;
  flex: 1 1 0%;
  min-width: 211px;
  justify-content: center;
  position: relative;
  padding-right: 37px;
}
.lets-break-section .industries-btn .dropdown-toggle::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230bb2b1' class='size-6 stroke-%5B1.5px%5D duration-150 rotate-0 text-green-400'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m8.25 4.5 7.5 7.5-7.5 7.5'%3E%3C/path%3E%3C/svg%3E%0A");
  border: 0px;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 15px;
  transition: all 0.4s ease-in-out;
}
.lets-break-section .industries-btn .show::after {
  transform: rotate(90deg);
}
.lets-break-section .industries-btn .dropdown-menu {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border: 0px;
  border-radius: 0px;
  padding: 0.25rem;
  padding-top: 18px;
  width: 100%;
}
.lets-break-section .industries-btn .dropdown-menu li {
  border-bottom: 1px solid rgb(245, 245, 245);
}
.lets-break-section .industries-btn .dropdown-menu li .dropdown-item {
  padding: 0.5rem 0px;
  width: 100%;
  border: 0 solid #e5e7eb;
  text-align: left;
  line-height: 24px;
  font-size: 14px;
  font-family: var(--font-Roboto);
  padding-left: 1.5rem;
  border-left: 3px solid #fff;
  white-space: normal;
  word-break: break-word;
}
.lets-break-section .industries-btn .dropdown-menu li .dropdown-item:hover {
  border-left: 3px solid var(--bg-primary);
  background-color: var(--bg-hover-200);
}

.why-choose-section {
  padding: 7rem 0px;
  background-color: var(--bg-primary3);
}
.why-choose-section .heading-main {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 7rem;
}
.why-choose-section .heading-main h2 {
  color: #0d2e1c;
}
.why-choose-section .heading-main p {
  color: #0d2e1c;
  font-size: 1.125rem;
}
.why-choose-section .heading-main .h-top-title {
  color: #0d2e1c;
}
.why-choose-section .why-choose-card {
  display: block;
  height: 100%;
  padding: 2rem;
  background-color: #265550;
  border-radius: 0.5rem;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.why-choose-section .why-choose-card:hover {
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 0 #000, 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0);
  transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(1.05) scaleY(1.05);
}
.why-choose-section .why-choose-icon {
  margin-bottom: 2rem;
}
.why-choose-section .why-choose-icon svg {
  width: 3rem;
  height: 3rem;
  fill: var(--bg-primary);
}
.why-choose-section .why-choose-card-body h2 {
  color: #fff;
  line-height: 130%;
  font-weight: 700;
  font-size: 1.5rem;
  font-family: var(--Font-Neue-Power);
  margin-bottom: 0.5rem;
}
.why-choose-section .why-choose-card-body p {
  color: #fff;
  line-height: 150%;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0px;
  font-family: var(--font-Roboto);
}

@media (max-width: 1279px) {
  .banner-section {
    padding: 9rem 0px 7rem;
  }
  .banner-section .banner-content h1 {
    font-size: 48px;
  }
  .banner-section .banner-content h1 span {
    display: inline-block;
  }
  .heading-main h2 {
    font-size: 40px;
  }
  .challenge-section {
    padding: 3rem 0px;
  }
  .challenge-section .heading-main {
    padding-bottom: 3rem;
  }
  .whats-you-section {
    padding: 3rem 0px;
  }
  .whats-you-section:after {
    top: 181px;
    width: 100%;
  }
  .whats-you-section .heading-main {
    padding-bottom: 3rem;
  }
  .whats-you-section .whats-you-details {
    padding-top: 3rem;
  }
  .lets-break-section {
    padding: 3rem 0px;
  }
  .lets-break-section .heading-main h2 {
    font-size: 32px;
  }
  .why-choose-section {
    padding: 3rem 0px;
  }
  .why-choose-section .heading-main {
    padding-bottom: 3rem;
  }
}
@media (max-width: 991px) {
  .banner-section {
    min-height: 100%;
  }
  .lets-break-section .heading-main h2 {
    margin-bottom: 2rem;
  }
  .lets-break-section .heading-main p {
    margin-bottom: 2rem;
  }
  .lets-break-section .heading-main .h-top-title {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .btn.btn-primary {
    font-size: 1.1rem;
    padding: 8px 2rem;
  }
  .btn.btn-border {
    font-size: 1.1rem;
    padding: 8px 2rem;
  }
  .soft-deve-btn {
    margin-bottom: 1.5rem;
    padding: 0.6rem 1rem;
    font-size: 14px;
  }
  .heading-main h2 {
    font-size: 24px;
  }
  .banner-section {
    padding: 7rem 0px;
  }
  .banner-section .banner-content h1 {
    font-size: 35px;
    margin-bottom: 1.5rem;
  }
  .challenge-section .challenge-card {
    padding: 1.25rem;
  }
  .challenge-section .chall-icon {
    margin-bottom: 1rem;
  }
  .challenge-section .challenge-card-body h2 {
    font-size: 1.3rem;
    line-height: 120%;
  }
  .challenge-section .challenge-card-body p {
    font-size: 1rem;
    line-height: 153%;
  }
  .lets-break-section .heading-main .h-top-title {
    margin-bottom: 1.5rem;
  }
  .lets-break-section .heading-main h2 {
    font-size: 24px;
    margin-bottom: 1.5rem;
  }
  .lets-break-section .heading-main p {
    margin-bottom: 1.5rem;
  }
  .lets-break-section .lets-break-right img {
    border-radius: 35px;
  }
  .why-choose-section .why-choose-card {
    padding: 1.25rem;
  }
  .why-choose-section .why-choose-card-body h2 {
    font-size: 1.3rem;
    line-height: 120%;
  }
  .why-choose-section .why-choose-card-body p {
    font-size: 1rem;
    line-height: 153%;
  }
  .why-choose-section .why-choose-icon {
    margin-bottom: 1rem;
  }
  .servi-technology-btn {
    gap: 0.6rem !important;
  }
  .industries-btn .btn-secondary {
    font-size: 1rem !important;
    line-height: 1.4rem !important;
    min-width: 164px !important;
  }
  .industries-btn .dropdown-menu {
    padding-top: 10px !important;
  }
  .industries-btn .dropdown-menu li .dropdown-item {
    padding-left: 0.3rem !important;
  }
  .dropdown.industries-btn .dropdown-menu {
    transform: translate(0px, 42px) !important;
  }
  .whats-you-section .whats-you-content {
    row-gap: 10rem;
  }
  .whats-you-section:after {
    background-size: contain;
    top: 0px;
  }
}/*# sourceMappingURL=homepage.css.map */