body {
  font-family: "Roboto", sans-serif;
}

.font-nunito {
  font-family: 'Nunito', sans-serif;
}

.grecaptcha-badge {
  z-index: 99;
}
section h1,
section h2,
section h3,
section h4,
section h5,
section h6,
section p {
  color: #211e1f;
}

section h1,
section h2,
section h3,
section h4,
section h5,
section h6 {
  margin-bottom: 0;
}

p:last-of-type,
p:has(+ ul) {
  margin-bottom: 0;
}

ul li {
  color: #211e1f;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px;
}

li::marker {
  font-size: 12px;
}

section {
  padding: 100px 30px;
}

.wrapper {
  max-width: 1576px;
  margin: 0 auto;
}

.bg-white {
  background-color: #ffffff;
}

.bg-gray {
  background-color: #f8f8f8;
}

.bg-blue-gradient {
  background: radial-gradient(
    54.6% 135.64% at 4.11% 9.66%,
    #0484fc 0%,
    #0369c9 60.33%,
    #024f96 100%
  );
}

.bg-blue-gradient .text-white *,
.bg-blue-gradient .heading-content * {
  color: #ffffff;
}

/* Button global style  */
.cta {
  padding: 15px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50px;
  transition: 0.3s;
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
}

.content-btn {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.btn-blue {
  min-width: 238px;
  background: #0484fc;
  border-color: transparent;
  color: #fff;
}

.btn-blue-gradient {
  min-width: 238px;
  background: linear-gradient(268deg, #40a3ff 0%, #0484fc 50%, #0369c9 100%);
  color: #fff;
}

.btn-blue:hover,
.btn-blue-gradient:hover {
  background: #04cffc;
  box-shadow: 0 4px 40px 0 rgba(4, 207, 252, 0.7);
}

.btn-orange-outline {
  min-width: 238px;
  border: 1px solid #f15e22;
  color: #211e1f;
}

.btn-orange-outline:hover {
  border-color: transparent;
  background: #f90;
  box-shadow: 0 4px 40px 0 rgba(255, 153, 0, 0.7);
}

.btn-orange {
  min-width: 238px;
  background: #f15e22;
  color: #fff;
}

.btn-orange:hover {
  background: #f90;
  box-shadow: 0 4px 40px 0 rgba(255, 153, 0, 0.7);
}

@media (max-width: 767px) {
  .content-btn {
    flex-direction: column;
  }

  .btn-blue-gradient,
  .btn-orange {
    min-width: 100%;
  }
}
/* Button global style  */

/* Hero Banner global styles */
section.hero-banner {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding-top: 0;
  padding-bottom: 0;
}

section.hero-banner .hero-inner {
  display: flex;
  align-items: center;
  gap: 50px;
  /* position: relative; */
}

section.hero-banner .hero-content {
  max-width: 712px;
  margin-right: auto;
  width: 50%;
  padding-top: 100px;
  padding-bottom: 100px;
}

section.hero-banner .hero-content h1 {
  font-size: 64px;
  margin-bottom: 24px;
}

section.hero-banner .hero-content .hero-description {
  margin-bottom: 50px;
}

section.hero-banner .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

section.hero-banner .hero-image {
  width: 50%;
}

section.hero-banner .hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: -10px 14px 27px 0 rgba(63, 64, 64, 0.35);
  position: relative;
  z-index: 1;
}

section.hero-banner .hero-bg {
  position: absolute;
  top: 0;
  right: -50px;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    270deg,
    #0484fc 0%,
    #0369c9 32.61%,
    #024f96 65.21%
  );
  clip-path: polygon(16% 0%, 100% 0%, 100% 100%, 16% 100%, 0% 50%);
}

/* Hero Banner global styles */

/* Cards global styles */
section.plain-card .heading-content,
section.faqs .heading-content {
  text-align: center;
  margin-bottom: 50px;
}

section.plain-card .heading-content h2,
section.faqs .heading-content h2 {
  margin-bottom: 24px;
}

section.plain-card .card-heading {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

section.plain-card .card-heading .card-heading {
  max-width: 473px;
  margin-right: auto;
}

section.plain-card .bottom-btn,
section.plain-card .card-btn {
  margin-top: 50px;
}

section.plain-card .bottom-btn a {
  max-width: 200px;
  min-width: fit-content;
  margin: 0 auto;
}

section .card-container {
  height: 100%;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(33, 30, 31, 0.15);
}

section .card-container .card-icon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-bottom: 50px;
}

section.pricing .card-container {
  height: unset;
}

section.pricing .row .col-height:nth-of-type(2) .card-container {
  border: 2px solid #f15e22;
  box-shadow: 0 0 50px 0 rgba(255, 255, 255, 0.9);
}

section.pricing .col-height:nth-of-type(2) .card-btn {
  margin-top: 90px;
}

section.pricing .row .col-height:first-child .card-container,
section.pricing .row .col-height:nth-of-type(3) .card-container {
  margin-top: 20px;
}

section.pricing .card-container .p-height {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

section.pricing .card-container .p-height ul li:not(:last-child) {
  padding-bottom: 24px;
}

section.pricing .card-container .p-height ul {
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
}

section.pricing .card-container .p-height ul li {
  position: relative;
  padding-left: 39px;
}

section.pricing .card-container .p-height ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: no-repeat center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 21C13.1819 21 14.3522 20.7672 15.4442 20.3149C16.5361 19.8626 17.5282 19.1997 18.364 18.364C19.1997 17.5282 19.8626 16.5361 20.3149 15.4442C20.7672 14.3522 21 13.1819 21 12C21 10.8181 20.7672 9.64778 20.3149 8.55585C19.8626 7.46392 19.1997 6.47177 18.364 5.63604C17.5282 4.80031 16.5361 4.13738 15.4442 3.68508C14.3522 3.23279 13.1819 3 12 3C9.61305 3 7.32387 3.94821 5.63604 5.63604C3.94821 7.32387 3 9.61305 3 12C3 14.3869 3.94821 16.6761 5.63604 18.364C7.32387 20.0518 9.61305 21 12 21ZM11.768 15.64L16.768 9.64L15.232 8.36L10.932 13.519L8.707 11.293L7.293 12.707L10.293 15.707L11.067 16.481L11.768 15.64Z' fill='%23F15E22'/%3E%3C/svg%3E");
}

section.pricing .card-container .card-icon {
  margin-bottom: 24px;
}

section .card-container .card-icon h3 {
  font-size: 30px !important;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
}

section .card-container .price, section .card-container .price .font-nunito {
  font-size: 50px !important;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 24px;
}

section .card-container .price span {
  font-size: 20px !important;
}

section .card-container h3 {
  margin-bottom: 24px;
}

section .card-container .card-btn a {
  min-width: unset;
  max-width: 200px;
}

section.integrated-sol .card-container img {
  width: 100%;
  border-radius: 30px;
}
section.integrated-sol .col-lg-6 .card-heading {
  max-width: 610px;
  margin-right: auto;
}


section.integrated-sol .card-heading p, section.pricing .heading-content p  {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}

section.integrated-sol .card-container .card-btn a,
section.pricing .card-container .card-btn a {
  max-width: 100%;
}

section.testimonials .card-container .card-icon {
  margin-bottom: 20px;
}

section.testimonials .card-container .card-icon + .p-height {
  margin-bottom: 50px;
}

section.testimonials .card-container .p-height:last-of-type p:first-child {
  margin-bottom: 0;
  font-size: 20px !important;
  font-weight: 700;
  line-height: normal;
}

section.testimonials .heading-content p {
  color: #3F4040;
}

section.gallery .gallery-item img {
  border-radius: 20px;
  box-shadow: 0 4.709px 9.418px 0 rgba(33, 33, 33, 0.05);
  width: 100%;
}
/* Cards global styles */

/* Content right/left global styles */
section .row-content {
  margin-bottom: 50px;
}

section .row-content img,
section .row-content-card img {
  background-color: #fff;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 0 10px 0 rgba(33, 33, 33, 0.05);
}

section .row-content .heading-content {
  height: 100%;
  max-width: 705px;
}

section .row-content.con-right .heading-content {
  margin-left: auto;
}

section .row-content.con-left .heading-content {
  margin-right: auto;
}

section .row-content-card .heading-content {
  height: 100%;
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(33, 30, 31, 0.15);
  display: flex;
  align-items: center;
}

section .row-content-card .heading-content h2,
section .row-content .heading-content h2 {
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  section .row-content-card img,
  section .row-content img {
    margin-bottom: 24px;
  }
}

@media (min-width: 992px) {
  section .row-content .heading-content {
    display: flex;
    align-items: center;
    gap: 24px;
  }
}
/* Content right/left global styles */

/* FAQS global styles */
section.faqs .accordion .accordion-item:not(:last-child) {
  margin-bottom: 24px;
}

section.faqs .accordion .accordion-item {
  border-radius: 20px;
  border: 1px solid rgba(33, 30, 31, 0.15);
}

section.faqs .accordion .accordion-button {
  background: none;
  box-shadow: none;
  padding: 30px 30px 24px;
  gap: 24px;
}

section.faqs .accordion .accordion-button.collapsed {
  padding-bottom: 30px;
}
section.faqs .accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='21' viewBox='0 0 22 13' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.785 0.487951L21.2133 9.91628L18.8567 12.2729L10.6067 4.02295L2.35667 12.2729L0 9.91628L9.42833 0.487951C9.74088 0.175499 10.1647 -2.67029e-05 10.6067 -2.67029e-05C11.0486 -2.67029e-05 11.4725 0.175499 11.785 0.487951Z' fill='black'/%3E%3C/svg%3E");
  transform: rotate(180deg);
  background-position: center;
}
section.faqs .accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
}

section.faqs .accordion .accordion-body {
  padding: 0 30px 30px;
  max-width: 1496px;
}
/* FAQS global styles */

/* Footer CTA global styles */
section.footer-cta {
  background: radial-gradient(
    54.6% 135.64% at 4.11% 9.66%,
    #0484fc 0%,
    #0369c9 60.33%,
    #024f96 100%
  );
  position: relative;
}

section.footer-cta .wrapper {
  position: relative;
  z-index: 1;
}

section.footer-cta .bg-blue-gradient {
  position: absolute;
  background: linear-gradient(
    270deg,
    rgba(2, 79, 150, 0.6) 0%,
    rgba(3, 105, 201, 0.6) 32.61%,
    rgba(4, 132, 252, 0.6) 65.21%
  );
  clip-path: polygon(37% 0%, 100% 0%, 100% 100%, 16% 100%, 0% 100%);
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 729px;
}

section.footer-cta h2 {
  margin-bottom: 24px;
}

section.footer-cta a.cta {
  color: #fff;
  min-width: 238px;
}

section.footer-cta .footer-content * {
  color: #fff;
}

section.footer-cta .footer-content {
  max-width: 798px;
}

section.footer-cta .footer-content ul {
  margin-bottom: 0;
}

section.footer-cta .footer-btn {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: end;
}
/* Footer CTA global styles */

/* RESPONSIVE */
@media (min-width: 1200px) {
  .col-five {
    width: 20%;
  }
  .integrated-sol .col-lg-6 {
    width: 41.6%;
  }

  .integrated-sol .col-lg-3 {
    width: 29.2%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .col-five {
    width: 33.33333333%;
  }

  .col-three {
    width: 50%;
  }

  .integrated-sol .col-lg-6 {
    width: 100%;
  }

  .integrated-sol .col-lg-3 {
    width: 50%;
  }

  .integrated-sol .row:has(.card-heading) .col-height {
    margin-top: 50px;
  }

  section.gallery .gallery-item {
    width: 25%;
  }
}

@media (max-width: 1500px) {
  section.footer-cta .bg-blue-gradient {
    max-width: 629px;
    clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 16% 100%, 0% 100%);
  }
}

@media (max-width: 1335px) {
  section.footer-cta .bg-blue-gradient {
    max-width: 529px;
  }
}

@media (max-width: 1199px) {
  section {
    padding: 70px 30px;
  }

  section.hero-banner .hero-content {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  section.hero-banner .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 0;
  }

  section.hero-banner .hero-buttons {
    justify-content: center;
  }

  section.hero-banner .hero-content,
  section.hero-banner .hero-image {
    width: 100%;
    max-width: 100%;
  }

  section.hero-banner .hero-image {
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  section.hero-banner .hero-inner > .hero-bg {
    display: none;
  }

  section.hero-banner .hero-image > .hero-bg {
    width: 100%;
  }

  section .row-content.con-right .heading-content,
  section .row-content.con-left .heading-content {
    max-width: 100%;
  }

  section.footer-cta .bg-blue-gradient {
    max-width: 429px;
    clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 16% 100%, 0% 100%);
  }

  section.integrated-sol .col-lg-6 .card-heading {
    max-width: 100%;
    text-align: center;
  }

  section .card-container .price {
    font-size: 40px !important;
  }
}

@media (max-width: 991px) {
  section.plain-card .card-heading,
  section.footer-cta .footer-content {
    text-align: center;
  }

  section.footer-cta .footer-btn {
    justify-content: center;
  }

  section.footer-cta .bg-blue-gradient {
    display: none;
  }

  section.plain-card .card-heading .card-heading {
    max-width: 100%;
  }

  section.plain-card .row:has(.card-heading) .card-heading + .col-height, section.pricing .col-height:nth-of-type(2) .card-btn {
    margin-top: 50px;
  }

  section.pricing .row .col-height:first-child .card-container,
  section.pricing .row .col-height:nth-of-type(3) .card-container {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  section {
    padding: 50px 20px;
  }

  section.hero-banner .hero-content {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  section.hero-banner .hero-image {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  section.hero-banner .hero-content .hero-description,
  section .card-container .card-icon {
    margin-bottom: 30px;
  }

  section.plain-card .bottom-btn,
  section.plain-card .card-btn,
  section.plain-card .row:has(.card-heading) .card-heading + .col-height,
  section.pricing .col-height:nth-of-type(2) .card-btn {
    margin-top: 30px;
  }

  section .row-content-card .heading-content {
    display: block;
  }

  section .card-container .card-icon p {
    font-size: 20px !important;
  }

  section .card-container .price {
    font-size: 30px !important;
  }
}
