/* =============================================================================
   responsive.css — Global Responsive Overrides
   All site-wide breakpoint rules live here.
   Component-specific breakpoints belong in components.css alongside their block.
   ============================================================================= */

.CustomContainer {
  max-width: 85%;
  margin: auto;
}

/*Blog Main Page Start*/

.rightInfo .swiper{
	padding: 0px 40px 0px 0px;
}


.main-bg-banner {
  background-image: url(/wp-content/uploads/2026/06/Background-1-scaled-1.webp);
  height: 400px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main-bg-banner h1 {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 54px;
  text-align: center;
  color: #000;
}
.main-bg-banner p {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  color: #000;
  width: 100%;
  margin: auto;
}
.main-bg-banner .search-form {
  width: 100%;
  margin: auto;
}
.cus--search {
  width: 100%;
  display: flex;
  margin: 40px auto;
  position: relative;
}

.searchTerm {
  width: 100%;
  border: 2px solid #dadada;
  padding: 5px 20px;
  height: 55px;
  border-radius: 0px;
  outline: none;
  color: #000 !important;
  font-size: 18px;
  border-radius: 0;
}
.searchButton {
  width: auto;
  height: 55px;
  border: 0px;
  background: #ed2a32;
  color: #fff !important;
  border-radius: 0;
  cursor: pointer;
  font-size: 18px;
  transition: 0.5s;
  padding: 0px 20px;
  position: absolute;
  right: 0px;
}
.searchButton:hover {
  background: #000;
}

.showing-text {
  text-align: center;
}

.cus-search-sec {
  padding: 60px 0px;
}
.featuredSec {
  padding: 50px 0;
  background: linear-gradient(0deg, #ffffff 0%, #edf0f3 100%);
}
.featuredSec .mainGrid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 50px;
}
.featuredSec .mainGrid .leftInfo {
  position: relative;
  box-shadow: 20px 20px 70px 0px #00000033;
  border-radius: 20px;
}
.featuredSec .mainGrid .leftInfo .featuredInfo::before {
  content: "";
  background-image: url("/blog/wp-content/uploads/2026/03/Blog-Author-1.png");
  position: absolute;
  width: 88px;
  height: 176px;
  background-size: contain;
  left: -45px;
}
.featuredSec .mainGrid .featuredInfo {
  box-shadow: 2px 2px 5px 0px #ffffff80 inset;

  backdrop-filter: blur(25px);
  border-radius: 20px;
  padding: 30px 30px 60px 80px;
  position: relative;
}
.featuredSec .mainGrid .leftInfo::before {
  content: "";
  background-color: #ec1c24;
  width: 70px;
  height: 70px;
  position: absolute;
  border-radius: 70px;
  bottom: -35px;
  right: 80px;
}
.featuredSec .mainGrid .featuredInfo h2 {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #252425;
  margin: 12px 0px;
}
.featuredSec .mainGrid .featuredInfo h2 a{
	  color: #252425 !important;
}
.featuredSec .mainGrid .featuredInfo hr {
  width: 60px;
  margin: 12px 0;
  border-top: 4px solid #ec1c24;
}
.featuredSec .mainGrid .featuredInfo p {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #252425;
}
.featuredSec .mainGrid .featuredInfo span {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  color: #252425;
}
.featuredSec .mainGrid .featuredInfo span svg {
  margin-right: 5px;
}
.featuredSec .mainGrid .featuredInfo .btnWrapper {
  margin-top: 30px;
}
.featuredSec .mainGrid .featuredInfo .btnWrapper a {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 16px;
  color: #252425;
}
.featuredSec .mainGrid .featuredInfo .btnWrapper a svg {
  margin-left: 5px;
}
.featuredSec .mainGrid .rightInfo .arrow-wrap {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 25px;
}
.featuredSec .mainGrid .rightInfo .arrow-wrap button {
  border: 1px solid #000;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.featuredSec .mainGrid .rightInfo .arrow-wrap button i {
  font-size: 15px;
}
.featuredSec .mainGrid .rightInfo .articleSlider {
  height: 100%;
}
.featuredSec .mainGrid .rightInfo .articleSlider .slick-list,
.featuredSec .mainGrid .rightInfo .articleSlider .slick-track {
  height: 100%;
}
.featuredSec .mainGrid .rightInfo .articleSlider .single {
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  margin: 0 10px;
  position: relative;
}
.featuredSec .mainGrid .rightInfo .articleSlider .single::before {
  content: "";
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 30%,
    rgba(255, 255, 255, 0) 70%,
    rgba(0, 0, 0, 1)
  );
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 20px;
}
.featuredSec .mainGrid .rightInfo .articleSlider .single span {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.featuredSec .mainGrid .rightInfo .articleSlider .single span svg {
  margin-right: 5px;
}
.featuredSec .mainGrid .rightInfo .articleSlider .single h3 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  line-height: 30px;
  margin-top: 10px;
}
.featuredSec .mainGrid .rightInfo .articleSlider .single .info {
  position: relative;
  z-index: 1;
}
.featuredSec .mainGrid .rightInfo .articleSlider .single .btnWrapper {
  position: relative;
  z-index: 1;
}
.featuredSec .mainGrid .rightInfo .articleSlider .single .btnWrapper a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.featuredSec .mainGrid .rightInfo .articleSlider .single .btnWrapper a svg {
  margin-left: 5px;
}
.category-blogs {
  margin-bottom: 50px;
}
.cat-blogs-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cat-blogs-head h3 {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 30px;
  text-align: left;
  text-transform: uppercase;
  color: #ed2a32;
}
.cat-blogs-head p {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 20px;
  text-align: left;
  color: #000;
}
.cat-blogs-head p a {
  color: #000;
  text-decoration: none;
}
.name-date {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.name-date h5 {
  margin: 0px;
  font-family: Montserrat;
  font-weight: normal;
  font-size: 14px !important;
  text-align: left;
  color: #ed2a32 !important;
}
.name-date h5 i {
  margin-right: 10px;
}
.sec-post {
  padding: 50px 0;
}
.gridWrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.blog--cards {
  background: #fff;
  border: 1px solid #dadada;
  border-radius: 20px;
  height: 100%;
}
.category--cards a {
  text-decoration: none;
  color: #000 !important;
}
.blog--cards a {
  text-decoration: none;
  /* display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 10px; */
}
.blog--cards a img {
  border-radius: 20px;
  height: 300px;
  object-fit: cover;
}
.blog--cards h6 a {
  color: #ed2a32 !important;
}
.blog--cards h6 {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 14px;
  text-align: left;
  color: #000 !important;
  border-bottom: 1px solid #ff6000;
  width: fit-content;
}
.blog--cards h4 {
  font-family: Montserrat;
  font-weight: bold;
  font-size: 18px;
  text-align: left;
  color: #000;
  line-height: 1.2;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-info .author-img img {
  width: 30px;
  height: 30px;
  border-radius: 30px;
}

.author-info h5 {
  font-family: Montserrat;
  font-weight: bold;
  font-size: 14px;
  color: #000;
  margin: 0;
}

.blog--cards p {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  color: #000;
  line-height: 1.5;
  padding-bottom: 10px;
}
.blog--cards hr {
  width: 100%;
  border-color: #dadada;
}

.date-readmore {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.date-readmore h5 {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 14px;
  color: #252425;
}
.date-readmore h5 i {
  margin-right: 5px;
}
.date-readmore a {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 14px;
  color: #252425 !important;
}
.date-readmore a i {
  color: #ec1c24;
  margin-left: 5px;
}
.blog--cards .card--info {
  padding: 25px 35px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.articleSec {
  padding-top: 80px;
  padding-bottom: 20px;
}
.articleSec h2 {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 28px;
  color: #252425;
}
.articleSec .articleTabs {
  padding: 15px 0 30px;
  border-bottom: 1px solid #dadada;
}
.articleSec .articleTabs ul {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}
.articleSec .articleTabs ul li a {
  color: #252425;
  text-decoration: none !important;
  border: 1px solid #ec1c24;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: 0.5s;
  display: block;
}
.articleSec .articleTabs ul li a:hover {
  background-color: #ec1c24;
  color: #fff;
}
/* Blog Main Pahe end */

/* CATEGORY PAGE */
.categoryMain {
  padding: 50px 0;
}
.categoryMain .categoryGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  padding-bottom: 20px;
  margin-top: 40px;
}
.catBanner {
  padding: 60px 0;
}
.catBanner h1 {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 54px;
  text-align: center;
  color: #000;
}
/* CATEGORY PAGE END */

/* SEARCH PAGE */
.search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  padding-bottom: 20px;
  margin-top: 40px;
}
.cus-search-sec .showing-text {
  font-weight: 500;
  font-size: 16px;
  color: #000000;
}

/* SEARCH PAGE END */

/* SINGLE POST PAGE */
.singleBanner {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #edf0f3 100%);
  box-shadow: 10px 10px 40px 0px #00000033;
  position: relative;
}
.singleBanner::before {
  content: "";
  background-image: url("/blog/wp-content/uploads/2026/03/bg_banner_single_post.png.png");
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 350px;
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
}
.singleBanner .mainGrid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}
.singleBanner .mainGrid .leftSide {
}
.singleBanner .mainGrid .leftSide span {
  color: #252425;
  text-decoration: none !important;
  border: 1px solid #ec1c24;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: 0.5s;
}
.singleBanner .mainGrid .leftSide h1 {
  font-size: 32px;
  font-weight: bold;
  color: #252425;
  line-height: 42px;
  margin-top: 20px;
}
.singleBanner .mainGrid .leftSide p {
  font-weight: 400;
  font-size: 18px;
  line-height: 25.92px;
  color: #252425;
}
.singleBanner .mainGrid .leftSide .last-updated-date {
  font-weight: 400;
  font-size: 16px;
  color: #252425;
  margin-top: 50px;
}
.singleBanner .mainGrid .leftSide hr {
  width: 40px;
  margin: 12px 0;
  border-top: 4px solid #ffa000;
}
.singleBanner .mainGrid .rightSide {
  padding-top: 40px;
  position: relative;
  height: fit-content;
}
.singleBanner .mainGrid .rightSide h2 {
  font-weight: Bold;
  font-size: 24px;
  line-height: 30px;
  color: #252425;
}
.singleBanner .mainGrid .rightSide hr {
  width: 40px;
  margin: 12px 0;
  border-top: 4px solid #ec1c24;
}
.singleBanner .mainGrid .rightSide .profileInfo {
  box-shadow: 2px 2px 5px 0px #ffffff80 inset;
  backdrop-filter: blur(25px);
  background: #ffffff80;
  padding: 50px 30px 50px 50px;
  margin-top: 30px;
}
.singleBanner .mainGrid .rightSide::before {
  content: "";
  background: linear-gradient(180deg, #ff5056 0%, #ff0000 100%);
  width: 60px;
  height: 60px;
  position: absolute;
  border-radius: 70px;
  top: 85px;
  right: 40px;
}
.singleBanner .mainGrid .rightSide .profileInfo h3 {
  font-weight: Bold;
  font-size: 16px;
  color: #252425;
}
.singleBanner .mainGrid .rightSide .profileInfo p {
  font-weight: 400;
  font-size: 16px;
  color: #252425;
  line-height: 24px;
}
.singleBanner .mainGrid .rightSide .profileInfo a {
  font-size: 16px;
  color: #252425;
  font-weight: 600;
}
.sec-post .singleGrid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 50px;
}
.sec-post .singleGrid > * {
  min-width: 0;
}
.custom-table-of-content {
  position: sticky;
  top: 50px;
  /* margin-top: 50px; */
}
#ez-toc-container {
  display: none !important;
}
div#ez-toc-container ul li {
  list-style: disc;
  overflow: visible;
}
.custom-table-of-content #ez-toc-container {
  height: fit-content;
  overflow: auto;
  display: block !important;
  background: transparent !important;
  border: none;
  box-shadow: none;
  padding: 0;
}

.custom-table-of-content nav ul.ez-toc-list {
  max-height: 600px;
  overflow: overlay !important;
  padding-left: 20px !important ;
}
.custom-table-of-content nav ul li {
  padding: 8px 0 !important;
}
.custom-table-of-content nav ul li a {
  font-size: 14px !important;
  color: #000 !important;
  font-weight: 500;
}
.custom-table-of-content #ez-toc-container p.ez-toc-title {
  font-weight: bold;
  font-size: 24px;
  color: #252425;
}
.custom-table-of-content nav ul li a.active {
  color: #de253a !important;
}
/* .custom-table-of-content nav ul li:has(.active) {
  border-left: 4px solid #de253a !important;
} */
.custom-table-of-content .ez-toc-title-container {
  width: fit-content;
  border-bottom: 2px solid #ec1c24;
  margin-bottom: 20px;
}
.custom-table-of-content .soc {
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
  margin-top: 20px;
}
.custom-table-of-content .soc span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 16px;
	background-color:transparent !important;
}

.sec-post .singleGrid .rightContent h2 {
  font-weight: bold;
  font-size: 24px;
  color: #252425;
  border-bottom: 2px solid #ec1c24;
  padding-bottom: 5px;
  width: fit-content;
}
.sec-post .singleGrid .rightContent .related-post-grid {
  margin-top: 30px;
}
.sec-post .singleGrid .rightContent .relatedPost {
  padding-bottom: 15px;
  border-bottom: 1px solid #cacaca;
  margin-bottom: 20px;
}
.sec-post .singleGrid .rightContent .relatedPost img {
  width: 86px;
  height: 86px;
  border-radius: 86px;
  object-fit: cover;
  margin-bottom: 10px;
}
.sec-post .singleGrid .rightContent .relatedPost h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #252425;
}
.sec-post .singleGrid .rightContent .relatedPost a {
  font-weight: 500;
  font-size: 16px;
  color: #252425;
}
.sec-post .singleGrid .rightContent .relatedPost a i {
  color: #ec1c24;
}
.sec-post.det-post .det h2 {
  font-size: 32px;
}
.sec-post.det-post .det h3 {
  font-size: 28px;
}
.sec-post.det-post .det h4 {
  font-size: 26px;
}
.sec-post.det-post .det h5 {
  font-size: 24px;
}
.sec-post.det-post .det h6 {
  font-size: 22px;
}
.sec-post.det-post .det p,
.blog-bio p {
  margin-bottom: 15px;
  color: #666666;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}
.sec-post.det-post .det p br {
  display: none;
}
.sec-post.det-post .main {
  margin-bottom: 20px;
}
.sec-post.det-post .main .desc ul.tags li {
  margin: 0 10px 0 0;
}

.cta-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 40px 30px;
  border-radius: 10px;
  position: relative;
  margin-bottom: 25px;
}
.cta-section h4 {
  font-size: 32px;
  margin: 0 !important;
  padding: 0 !important;
  color: #fff !important;
  padding-bottom: 15px !important;
  font-weight: bold !important;
  letter-spacing: -0.4px !important;
  position: relative !important;
  z-index: 1;
}
.cta-section h2 {
  font-size: 32px;
  margin: 0 !important;
  padding: 0 !important;
  color: #fff !important;
  padding-bottom: 15px !important;
  font-weight: bold !important;
  letter-spacing: -0.4px !important;
  position: relative !important;
  z-index: 1;
}

.cta-section p {
  font-size: 18px !important;
  color: #fff !important;
  margin-bottom: 30px;
  position: relative !important;
  z-index: 1;
}

.cta-section a,
.cta-section button {
  background-color: #ec1c24 !important;
  display: inline-block;
  position: relative !important;
  color: #fff !important;
  text-transform: capitalize;
  padding: 12px 25px;
  font-weight: 600;
  letter-spacing: 0px;
  border-radius: 40px;
  display: block;
  width: fit-content;
	border: 0;
}

.innerBlogCta {
    background: linear-gradient(251.98deg, #FFFFFF 53.59%, #EDF0F3 88.77%);
    border: 1px solid #DADADA;
    border-radius: 0;
    padding: 30px;
}

.innerBlogCta .ctaGrid {
    display: grid;
    gap: 30px;
    grid-template-columns: 100px 1fr;
    align-items: center;
}
.innerBlogCta .leftCtaInfo::before {
    content:"";
    position: absolute;
    width: 35px;
    height: 35px;
    border-radius: 35px;
    background: linear-gradient(90deg, #FF8E8E 0%, #EC1C24 100%);
    top: -10px;
}
.innerBlogCta .leftCtaInfo {
    position:relative;
}
.innerBlogCta .leftCtaInfo img {
    border-radius: 120px;
    object-fit:cover;
}
.innerBlogCta .rightCtaInfo h4{
    color: #252425!important;
    font-size: 18px !important;
}
.innerBlogCta .rightCtaInfo p{
    color: #252425!important;
    font-size: 16px !important;
}

.innerBlogCta .rightCtaInfo button, .innerBlogCta .rightCtaInfo a{
    font-size: 16px;
    border: 0;
}

/* .det table {
  max-width: 100% !important;
  display: block;
  overflow-x: overlay;
  width: 100%;
}

.det table tbody {
  width: max-content;
  overflow: hidden;
}

table::-webkit-scrollbar {
  width: 2px;
  height: 10px;
}

table::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

table::-webkit-scrollbar-thumb {
  background-color: #ed2a32;
 }   */

.det .responsive-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.det .responsive-table table {
  max-width: none;
  width: max-content;
  min-width: 100%;
}

.responsive-table::-webkit-scrollbar {
  width: 2px;
  height: 10px;
}

.responsive-table::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.responsive-table::-webkit-scrollbar-thumb {
  background-color: #ed2a32;

  /* outline: 1px solid slategrey; */
}
.det table tbody tr:nth-child(1) {
  background-color: #ed2a32;
  color: #fff !important;
  font-weight: bold;
  text-align: center !important;
}
.det table tr:nth-child(1) td {
  padding-left: 0px !important;
}
.det table td,
table th {
  font-size: 15px;
/*   border: 1px solid; */
  padding: 15px;
}
.det table tbody tr:nth-child(1) p {
  color: #fff !important;
  font-weight: bold !important;
  margin: 0px !important;
  text-align: center !important;
}

.det ul,
.blog-bio ul {
  padding: 0 19px;
}

.det ul li,
.blog-bio ul li {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.6;
  color: #666666;
}
.det ol li {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.6;
  color: #666666;
}

.rightContent .rightCta {
  margin-top: 50px;
  background-image: url("/wp-content/uploads/2026/06/Mask-group-32.png");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  padding: 40px 20px;
}
.rightCta h4 {
  font-weight: bold;
  font-size: 24px;
  color: #fff;
}
.rightCta h5 {
  font-weight: bold;
  font-size: 84px;
  color: #fff;
}
.rightCta p {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
	margin-bottom:20px;
}
.rightCta a {
  background-color: #ec1c24;
  color: #fff !important;
  padding: 12px 20px;
  border-radius: 30px;
  border: 0;
  font-size: 16px;
  font-weight: 500;
  display: block;
  width: fit-content;
}

.rightCtaTwo {
  margin-top: 50px;
  background-image: url("/wp-content/uploads/2026/06/CTA-Website-Page-1.png");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  padding: 40px 20px;
	position:sticky;
	top:50px;
	cursor:pointer;
}
.rightCtaTwo h4 {
  font-weight: 400;
  font-size: 32px;
  color: #fff;
  margin-bottom: 20px;
}

.rightCtaTwo p {
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  margin-bottom: 30px;
}
.rightCtaTwo button {
  background-color: #fff;
  color: #ec1c24 !important;
  padding: 12px 20px;
  border-radius: 30px;
  border: 0;
  font-size: 16px;
  font-weight: 500;
  display: block;
  width: fit-content;
}

.sec-post.det-post .det p a,
.blog-bio p a {
  color: #ed2a32;
  border-bottom: 1px solid #ed2a32;
  padding-bottom: 1px;
}
.faqSection {
  margin: 40px 0px;
}

.faqSection .card-body {
  font-size: 15px;
  line-height: 1.6;
  color: #666666;
}

.faqSection .card-header button:focus {
  box-shadow: none;
	border:none;
}

.faqSection h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
}

.faqSection .card-header {
  padding: 10px 0px;
}

.faqSection .card-header h5 {
  font-size: 24px;
  font-weight: 600;
}
.faqSection .card {
  border-bottom: 1px solid #cacaca !important;
  border: 0px;
  border-radius:0;
}
.faqSection .card-header {
  background-color: transparent !important;
}

.faqSection .card-header button {
  text-align: left;
  display: flex;
  justify-content: space-between;
  color: #000 !important;
  font-size: 20px;
  text-decoration: none !important;
  gap: 10px;
	width:100%;
	border:none;
  white-space: unset;
}
.faqSection .card-header button i {
  color: #e80101;
}
.faqSection .card-header button .icon svg{
	  fill: #e80101;
}
.faqSection .card-header button .icon-minus{
    display:none;
}
.faqSection .card-header button .icon-plus{
    display:block;
    position:absolute;
}
.faqSection .card-header button:not(.collapsed) .icon-plus {
    display: none;
}

.faqSection .card-header button:not(.collapsed) .icon-minus {
    display: block;
    position: absolute;
}


.faqSection .card-body ul {
  margin: 10px 0;
  padding-left: 20px;
}
.faqSection .card-body ul li {
  list-style: disc !important;
}
/* SINGLE POST PAGE END */

.CaseStudiesTabsTwo .tabContent .flexInfo .item h4{
	text-transform: capitalize;
}

.languageServices .ls-list-info h3 {
  font-weight: bold;
  font-size: 20px;
  color: #ec1c24;
}

.tnb-btn{
	text-transform: capitalize;
}

.devProcess .info-grid .box span{
	font-weight: 500;
  font-size: 25px;
  letter-spacing: 0.05em;
  color: #161616;
  margin: 0;
  transition: color 0.5s;
}

.devProcess .info-grid .box h3 {
  font-weight: 500;
  font-size: 25px;
  letter-spacing: 0.05em;
  color: #ec1c24;
  margin-bottom: 10px;
  transition: color 0.5s;
}

.devProcess .info-grid .box:hover span,
.devProcess .info-grid .box:hover h3 {
  color: #fff;
}

.typesOfApps .tab-content .tab-details .content-grid .right-info h3 {
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
    text-align: left;
    color: #fff;
    margin-bottom: 0;
}

.typesOfApps .tab-content .tab-details .content-grid .right-info h3 {
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
    text-align: left;
    color: #fff;
    margin-bottom: 0;
}

.benefitsOfWork .grid-stats-content .content-box h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    text-align: left;
    color: #ec1c24;
}

/* .proposal h2{
	line-height: 2;
} */

.stackNewBox .MainBox{
	row-gap: 0px;	
}

.twoBoxes .main-tab .mainDiv h3 {
  font-weight: bold;
  font-size: 20px;
  text-align: left;
  color: #000;
  margin: 0;
}

.twoBoxes .main-tab .mainDiv:hover h3 {
  color: #fff;
}

.softwareDevProcess .dev-box h3 {
  font-weight: bold;
  font-size: 28px;
  text-align: center;
  color: #ec1c24;
  margin-bottom: 30px;
}

.softwareDevProcess .dev-box h3 a {
  font-weight: bold;
  font-size: 28px;
  text-align: center;
  color: #ec1c24;
  margin-bottom: 30px;
}

.softwareDevProcess .dev-box p {
  position: relative;
  font-size: 60px;
  font-weight: 800;
  color: #e5e5e5;
  top: -20px;
  left: -15px;
  text-align: left;
  margin: 0;
}

.methodology .main-tab .tab span {
    font-size: 24px;
    text-align: center;
    color: #fff;
	display:block;
	font-weight:500;
}

.methodology .main-tab .tab.active span {
    color: #ec1c24;
}

.industriesSlider .is-tab-box h3 {
    font-size: 15px;
    text-align: center;
    color: #000;
    margin-top: 10px;
    margin-bottom: 0;
}

.industriesSlider .is-tab-box.active h3 {
    color: #ec1c24;
}

.developmentProcess .content span {
    font-size: 14px;
    font-weight: 600;
    color: #ec1c24;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.developmentProcess .content h2 {
    font-size: 28px;
    font-weight: bold;
    color: #000;
}

.developmentProcess .dev-box h3 {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    transition: color 0.3s;
}

.developmentProcess .dev-box:hover h3 {
    color: #ec1c24;
}

.developmentProcess .dev-box span {
    position: relative;
    font-size: 60px;
    font-weight: 800;
    color: #e5e5e5;
    top: -20px;
    left: -15px;
    text-align: left;
    margin: 0;
    display: block;
}

.developmentServices .ds-details h3 {
    font-weight: bold;
    font-size: 22px;
    color: #ec1c24;
    margin-bottom: 0;
}

.stackNewBox .main-info span {
    font-size: 14px;
    font-weight: 600;
    color: #ec1c24;
    text-align: center;
    text-transform: uppercase;
	display: block;
}

/* .stackNewBox .MainBox .Tab span {
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    color: #252525;
    margin: 10px 0;
	display:block;
}

.stackNewBox .MainBox .Tab.active span {
    color: #ec1c24;
} */

.mainFaqs .content span {
    font-size: 16px;
    font-weight: 600;
    color: #ec1c24;
    text-transform: uppercase;
	display: block;
}

.mainFaqs .content h2 {
    font-size: 28px;
    font-weight: bold;
    color: #000;
}

.benefitsSection .bs-image-box h3 {
    font-size: 15px;
    color: #fff;
    margin: 0;
}

.stepsHire .sh-content span {
    font-size: 16px;
    font-weight: 600;
    color: #ed2a32;
    text-transform: uppercase;
	display:block;
}

.twoBoxes.engagement .main-info span {
    color: #fff;
}

.twoBoxes .main-info span {
    font-size: 14px;
    font-weight: 600;
    color: #ec1c24;
    text-transform: uppercase;
	display:block;
}

/* .twoBoxes .main-tab .mainDiv:hover h3 {
    color: #fff;
} */

.requirements .content span {
    font-size: 14px;
    font-weight: 600;
    color: #ed2a32;
    text-transform: uppercase;
	display:block;
}

.requirements .content h2 {
    font-size: 28px;
    font-weight: bold;
    color: #000;
}

.requirements .dev-box:hover .imgHead h3 {
    color: #fff;
}

.requirements .dev-box .imgHead h3 {
    font-size: 20px;
    font-weight: bold;
    color: #ed2a32;
    text-align: left;
}

.tableTwo .tt-content span {
    font-size: 16px;
    font-weight: 600;
    color: #ed2a32;
    text-transform: uppercase;
	display:block;
}

.tableTwo .tt-content h2 {
    font-size: 28px;
    font-weight: bold;
    color: #000;
}

.progressSection .ps2-main-info span {
    font-size: 14px;
    font-weight: 600;
    color: #ec1c24;
    text-transform: uppercase;
	display:block;
}

.progressSection .ps2-image-box h3 {
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    color: #fff;
    margin-top: 15px;
}

.progressSection.dedicatedTeam .ps2-image-box.active h3 {
    color: #fff;
}

.progressSection.dedicatedTeam .ps2-image-box h3 {
    color: #000;
}

/* .industriesSlider .is-main-info span {
    font-size: 14px;
    font-weight: 600;
    color: #ec1c24;
    text-transform: uppercase;
	display:block;
} */

.industriesSlider .is-content-box h3 {
    font-weight: bold;
    font-size: 22px;
    line-height: 30px;
    text-align: left;
    color: #ec1c24;
}

.industriesSlider .is-content-box h3 a {
    font-weight: bold;
    font-size: 22px;
    line-height: 30px;
    text-align: left;
    color: #ec1c24;
}

.industriesSlider .is-tab-box.active h3 {
    color: #ec1c24;
}

.industriesSlider .is-tab-box h3 {
    font-size: 15px;
    text-align: center;
    color: #000;
    margin-top: 10px;
    margin-bottom: 0;
}

.solutionBusiness .sb-content span {
    font-size: 14px;
    font-weight: 600;
    color: #ec1c24;
    text-transform: uppercase;
	display:block;
}

.solutionBusiness .sb-content h2 {
    font-size: 28px;
    font-weight: bold;
    color: #000;
}

.solutionBusiness .sb-main-div a h3 {
    text-align: left;
    font-size: 16px;
    margin: 0;
}

.solutionBusiness .sb-main-div a:hover h3 {
    color: #ec1c24;
}

.teamChoose .BottomCont .rightSide ul li h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    line-height: 1;
    margin-bottom: 6px;
}

.CaseStudiesTabsTwo .tabs ul li span {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.CaseStudiesTabsTwo .tabs ul li span::before {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: #ec1c24;
    transition: width 0.25s,
    opacity 0.25s;
    position: absolute;
    bottom: -5px;
    left: 0;
    opacity: 0;
}

.CaseStudiesTabsTwo .tabs ul li.active span::before {
    width: 100%;
    opacity: 1;
}


.CaseStudiesTabsTwo .tabContent .flexInfo .item small {
    font-size: 18px;
    font-weight: 500;
    color: #ec1c24;
    text-transform: capitalize;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.CaseStudiesTabsTwo .tabContent .single span {
    font-size: 54px;
    font-weight: 600;
    color: #ec1c24;
    line-height: 1;
    margin-bottom: 8px;
}

.enterpriseLevelSec .rightSide ul li h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 6px;
}

.IndustrySlider .sliderSec .sliderInfo h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.1;
    color: #fff;
    position: relative;
}

.engagementTable .et-content span {
    font-size: 16px;
    font-weight: 600;
    color: #ed2a32;
    text-transform: uppercase;
	display:block;
}

.engagementTable .et-content h2 {
    font-size: 28px;
    font-weight: bold;
    color: #000;
}

.ourProcess.main-head-center .process-info span {
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    color: #ec1c24;
    text-transform: uppercase;
	display:block;
}

.ourProcess .cards .card .card-infos h3 {
    font-size: 22px;
    margin: 0;
    line-height: 1;
    color: #fff;
}

.ourProcess .cards .card .card-infos span {
    font-size: 30px;
    text-align: left;
    color: #ec1c24;
}

.developmentPrice .dp-main-info span {
    font-weight: 600;
    font-size: 14px;
    color: #ec1c24;
    text-transform: uppercase;
	display:block;
}

.developmentPrice .dp-grid-info h3 {
    font-weight: bold;
    font-size: 22px;
    line-height: 30px;
    color: #ec1c24;
    margin: 10px 0;
}

/* .textSection h3 {
    font-size: 28px;
    line-height: 32px;
    text-align: center;
    color: #ec1c24;
    font-weight: bold;
} */

.typesOfApps .types-info span {
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
	display:block;
}

.typesOfApps .tab-content .tab-details .content-grid .right-info h3 {
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
    text-align: left;
    color: #fff;
    margin-bottom: 0;
}

/* .keyThings span {
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
	display:block;
} */

.keyThings h2 {
    font-weight: 600;
    font-size: 28px;
    text-align: center;
    color: #fff;
}

.keyThings .kt-tab-btn.active h3 {
    color: #ec1c24;
}

.keyThings .kt-tab-btn h3 {
    border-bottom: 1px solid #fff;
    font-size: 22px;
    text-align: right;
    color: #fff;
    margin: 0;
    width: 100%;
    padding: 10px 0;
}

.counterSec .counter-info span {
    font-weight: bold;
    font-size: 35px;
    letter-spacing: 0.06em;
    line-height: 35px;
    text-align: center;
    color: #ec1c24;
	display:block;
}

.StackServicesSec .content .servicesList .servicesListSlider .tabBox.active > p {
    color: #fff;
}

.StackServicesSec .content .servicesList .servicesListSlider .tabBox > p {
    font-size: 16px;
    text-align: center;
    color: #252525;
    position: relative;
    margin-bottom: 0;
    font-weight: 500;
}

/* .StackServicesSec .content .tabContent .contentBox .boxGrid .leftSide h3 {
    font-weight: bold;
    font-size: 22px;
    text-align: left;
    color: #252525;
    line-height: 1.4;
    margin-bottom: 15px;
} */

.howWeDeliverSec .tabs ul li:hover .redBox h3, .howWeDeliverSec .tabs ul .active .redBox h3 {
    color: #fff;
}

.howWeDeliverSec .tabs ul li .redBox h3 {
    font-size: 16px;
    color: #3d3d3d;
    font-weight: 600;
}

.stackNewBox .MainBox .Tab.active h3 {
    color: #ec1c24;
}

.stackNewBox .MainBox .Tab h3 {
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    color: #252525;
    margin: 0;
}

.stackNewBox .TabBox .tab-content .tabFlex .singleBox > p {
    color: #252525;
    font-size: 16px;
    font-weight: bold;
    padding-top: 15px;
    text-align: center;
}

.stackNewBox .TabBox .tab-content .tabFlex .singleBox > p a {
    color: #252525;
    font-size: 16px;
    font-weight: bold;
    padding-top: 15px;
    text-align: center;
}

.TrendingTechSec .TechBox:hover h3 {
    color: #fff;
}

.TrendingTechSec .TechBox h3 {
    color: #252525;
    font-size: 16px;
    font-weight: 600;
}

.TrendingTechSec .TechBox h3 a {
    color: #252525;
    font-size: 16px;
    font-weight: 600;
}

.appServicesSec .services-grid .list .list-info:hover h3 {
    color: #fff;
}

.appServicesSec .services-grid .list .list-info:hover h3 a {
    color: #fff;
}

.appServicesSec .services-grid .list .list-info h3 {
    font-weight: bold;
    font-size: 18px;
    color: #252525;
    margin-bottom: 10px;
}

.AwardsRecognitionSec .dev-box .imgWrapper{
	text-align:center;
	display: flex;
}

.AwardsRecognitionSec .dev-box span {
    color: #252525;
    margin: 0;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.3;
    text-align: center;
	display:block;
}

.hireBanner .banner-grid .content h1 {
    font-size: 42px;
    line-height: 50px;
    font-weight: 700;
    color: #000;
}

.hireBanner .banner-grid .hire-form .form-content h3 {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    margin: 0;
}

.hireFreelance .freelance .content h2 {
    font-size: 35px;
    font-weight: bold;
}

.hireFreelance .freelance .content ul li span {
    font-size: 35px;
    font-weight: bold;
    color: #ed2a32;
	display:block;
}

.hireTab .content h2 {
    font-size: 28px;
    font-weight: bold;
    color: #000;
}

.hireTab .box h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #ed2a32;
}

.hireChoose .content h2 {
    font-size: 28px;
    font-weight: bold;
    color: #000;
}

.hireChoose .list .list-item h3 {
    font-size: 20px;
    font-weight: bold;
    color: #ed2a32;
    margin: 25px 0;
}

.hireTable .content h2 {
    font-size: 28px;
    font-weight: bold;
    color: #000;
}

.hireSteps .content h2 {
    font-size: 28px;
    font-weight: bold;
    color: #000;
}

.hireSteps .box-list .box .box-content h3 {
    font-size: 28px;
    font-weight: bold;
    color: #ec1c24;
    margin-bottom: 15px;
}

	.nxt .nxt-title, .hire-headline, .dq-h2-single, .dq-q {
    color: #ffffff !important;
	}

	.hero-content h1 {
    color: #ffffff !important;
	}

.nxt-title{
	margin-left: auto !important;
    margin-right: auto !important;
}

.footer-col-h, .footer-section-h{
	color: #ffffff !important;
}

/* .mainFeatures .features-info span {
    font-weight: 600;
    font-size: 14px;
    color: #ec1c24;
    text-transform: uppercase;
	display:block;
} */

.mainFeatures .features-list .features-box h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #000;
}


/* ── 1600px ─────────────────────────────────────────────────────────────────── */

@media (max-width: 1600px) {
  
  .main-bg-banner h1 {
    font-size: 52px;
  }
  .featuredSec .mainGrid .featuredInfo h2 {
    font-size: 22px;
    line-height: 26px;
  }
  .featuredSec .mainGrid .rightInfo .articleSlider .single h3 {
    font-size: 20px;
    line-height: 26px;
  }
  .featuredSec .mainGrid {
    grid-template-columns: 52% 48%;
    gap: 30px;
  }
 
  .singleBanner .mainGrid .leftSide h1 {
    font-size: 30px;
    line-height: 1.3;
  }
}


/* ── 1440px ─────────────────────────────────────────────────────────────────── */

@media (max-width: 1440px) {
	
  .main-bg-banner h1 {
    font-size: 48px;
  }
  .featuredSec .mainGrid .featuredInfo h2 {
    font-size: 20px;
    line-height: 1.2;
  }
  .featuredSec .mainGrid .rightInfo .articleSlider .single h3 {
    font-size: 20px;
    line-height: 1.2;
  }
  
  .sec-post.det-post .det p,
  .blog-bio p {
    font-size: 18px;
  }
  .sec-post.det-post .det h2 {
    font-size: 30px;
  }
  .sec-post.det-post .det h3 {
    font-size: 26px;
  }
  .sec-post.det-post .det h4 {
    font-size: 24px;
  }
  .sec-post.det-post .det h5 {
    font-size: 22px;
  }
  .sec-post.det-post .det h6 {
    font-size: 20px;
  }
  .custom-table-of-content #ez-toc-container p.ez-toc-title {
    font-size: 22px;
  }
  .sec-post .singleGrid .rightContent h2 {
    font-size: 22px;
  }
  .rightCta h4 {
    font-size: 20px;
  }
  .rightCta h5 {
    font-size: 70px;
  }
	.rightCta a{
		font-size:14px;
	}
  .rightCta h5 svg {
    width: auto;
    height: 70px;
  }
   .rightCtaTwo h4 {
    font-size: 24px;
  }
	.rightCtaTwo p {
    font-size: 16px;
  }
  .faqSection .card-header button {
    font-size: 18px;
  }
  
}


/* ── 1400px ─────────────────────────────────────────────────────────────────── */
@media (max-width: 1400px) {
	.devProcess .info-grid .box h3 {
    font-size: 22px;
  }
	
	.softwareDevProcess .dev-box h3 {
    font-size: 22px;
  }
	
	  .softwareDevProcess .dev-box p {
    font-size: 50px;
  }
	.hireBanner .banner-grid .content h1{
		font-size:35px;
	}
	.hireBanner .banner-grid .hire-form .form-content h3{
		font-size:26px;
	}
}

@media (max-width: 1200px) {
	.devProcess .info-grid .box h3 {
    font-size: 20px;
  }
	
	.cruze-sec-4 .img-grid img {
    width: 30%;
    height: auto;
	}
	
	.CustomContainer {
    max-width: 90%;
  }
  .main-bg-banner h1 {
    font-size: 40px;
  }
  .main-bg-banner p {
    font-size: 16px;
    line-height: 1.5;
  }
  .featuredSec .mainGrid .featuredInfo h2 {
    font-size: 20px;
  }
  .featuredSec .mainGrid .featuredInfo p {
    font-size: 16px;
    line-height: 1.5;
  }
  .featuredSec .mainGrid .rightInfo .articleSlider .single h3 {
    font-size: 20px;
  }
  .featuredSec .mainGrid {
    grid-template-columns: 62% 38%;
    gap: 30px;
  }
  .articleSec h2 {
    font-size: 26px;
  }
  .blog--cards .card--info {
    padding: 10px;
  }
  .blog--cards h4 {
    font-size: 16px;
  }
  .blog--cards a img {
    height: 250px;
  }
	
	.singleBanner .mainGrid .leftSide span {
    font-size: 14px;
  }
  .singleBanner .mainGrid .leftSide h1 {
    font-size: 26px;
  }
  .singleBanner .mainGrid .leftSide p {
    font-size: 16px;
    line-height: 1.5;
  }
  .sec-post.det-post .det p,
  .blog-bio p {
    font-size: 16px;
  }
  .sec-post.det-post .det h2 {
    font-size: 28px;
  }
  .sec-post.det-post .det h3 {
    font-size: 24px;
  }
  .sec-post.det-post .det h4 {
    font-size: 22px;
  }
  .sec-post.det-post .det h5 {
    font-size: 20px;
  }
  .sec-post.det-post .det h6 {
    font-size: 18px;
  }
  .sec-post .singleGrid {
    grid-template-columns: 1fr;
  }
  .sec-post .singleGrid .rightContent .related-post-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
  }
  .sec-post .singleGrid .rightContent .relatedPost {
    display: flex;
    flex-direction: column;
  }
  .card--info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* height: 100%; */
  }
  .sec-post .singleGrid .rightContent .relatedPost h3 {
    font-size: 15px;
    line-height: 1.5;
  }
  .sec-post .singleGrid .rightContent .relatedPost a {
    font-size: 14px;
  }
  .faqSection .card-header button {
    font-size: 16px;
  }
	
	.rightCta{
		background-image:none;
		background: linear-gradient(180deg,rgba(164, 23, 36, 1) 0%, rgba(0, 0, 0, 1) 60%);
	}
	.hireBanner .banner-grid .content h1{
		font-size:30px;
		line-height: 1.4;
	}
	.hireBanner .banner-grid .hire-form .form-content h3{
		font-size:24px;
	}
}

/* ── 1199px ─────────────────────────────────────────────────────────────────── */
@media (max-width: 1199px) {
	.trustedBy .single img{
		width: 80%;
	}
	
	.choose-results .leftSide h2{
		font-size: 30px;
	}
	
	.choose-results .rightSide ul li h3{
		font-size: 35px;
	}
	
	.choose-results .leftSide h5{
		font-size: 16px;
	}
	
	.choose-results .rightSide h6{
		font-size: 16px;
	}
	
	.teamChoose .topCont .leftSide h2{
		font-size: 35px;
	}
	
	.teamChoose .topCont .rightSide p{
		font-size: 17px;
	}
	
	.teamChoose .BottomCont .rightSide ul li h4{
		font-size: 18px;
	}
	
	.augmentationServices .main h2{
		font-size: 35px;
        line-height: 1.2;
	}
	
	.augmentationServices .single h3{
		font-size: 18px;
	}
	
	.enterpriseLevelSec .leftSide{
		width: 100%;
	}
	
	.enterpriseLevelSec .leftSide h2{
		font-size: 35px;
	}
	
	.deliveryControl .main h2{
		font-size: 35px;
        line-height: 1.2;
	}
	
	.deliveryControl .main p{
		font-size: 16px;
        line-height: 1.5;
	}
	
	.deliveryControl .single .info h3{
		font-size: 24px;
	}
	
	.deliveryControl .single .info p{
		font-size: 16px;
	}
	
	.CaseStudiesTabsTwo .headContent h2{
		font-size: 35px;
	}
	
	.CaseStudiesTabsTwo .headContent p{
		font-size: 16px;
	}
	
	.CaseStudiesTabsTwo .tabContent .titleWrap h3{
		font-size: 28px;
	}
	
	.CaseStudiesTabsTwo .tabContent .rightSide > p{
		font-size: 16px;
	}
	
	.CaseStudiesTabsTwo .tabContent .single h5{
		font-size: 40px;
	}
	
	.teamsWork .left h2{
		font-size: 35px;
	}
	
	.teamsWork .left .single .info h3{
		font-size: 16px;
	}
	
	.IndustryGrid .main h2{
		font-size: 35px;
	}
	
	.IndustryGrid .sliderInfo h4{
		font-size: 20px;
	}
	
	.predictableProcess .right .info h2{
		font-size: 35px;
	}
	
	.predictableProcess .right .info{
		width: 100%;
	}
	
	.predictableProcess .right .info p{
		font-size: 16px;
	}
	
	.predictableProcess .right .single h3{
		font-size: 16px;
	}
	
	.ourClientsSay .mainGrid .left h2{
		font-size: 35px;
	}
	
	.ourClientsSay .sliderInfo > div > p{
		width: 100%;
        font-size: 18px;
	}
	
	.CtaTwo .info h2{
		font-size: 35px;
		line-height: 1.2;
	}
	
	.CtaTwo .info h3{
		font-size: 20px;
	}
	
	.CtaTwo .info p{
		font-size: 16px;
	}
	
	.ourBlog .main h2{
		font-size: 35px;
	}
	
	.choose-results .leftSide{
		width: 48%;
	}
	
	.choose-results .rightSide {
    width: 45%;
	}
	
	.augmentationServices .main p{
		font-size: 16px;
	}
	
	.teamsWork .left > p{
		font-size: 16px;
	}
	
	.softwareDevProcess .dev-box h3 {
    font-size: 18px;
  }
	
	.softwareDevProcess .dev-box p {
    font-size: 40px;
  }
	
	.proposal h2{
		font-size: 20px;
	}
	
	.developmentServices .ds-main-info h2{
		font-size: 20px;
	}
	
	.methodology .main-tab .tab span{
		font-size: 20px;
	}
	
	.ourExpertise .oe-tab-info ul li{
		font-size: 15px;
	}
	
	.ourExpertise .oe-right-info h4{
		font-size: 18px;
	}
	
	.stackNewBox .MainBox .Tab h6{
		font-size: 14px;
	}
	
/* 	.stackNewBox .TabBox .tab-content ul li{
		font-size: 18px;
	} */
}

/* ── 991px ──────────────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
	.trustedBy .single img {
    width: 60%;
	}
	
	.choose-results .rightSide ul{
		gap: 20px;
	}
	
	.choose-results .rightSide ul li h3{
		font-size: 30px;
	}
	
	.teamChoose .topCont .leftSide h2, .teamChoose .topCont .rightSide p{
		text-align: center;
	}
	
	.augmentationServices .main h2{
		font-size: 30px;
	}
	
	.augmentationServices .main p{
		width: 100%;
	}
	
	.deliveryControl .main h2{
		font-size: 30px;
	}
	
	.deliveryControl .main p{
		width: 100%;
	}
	
	.deliveryControl .single .info h3{
		font-size: 20px;
	}
	
	.CaseStudiesTabsTwo .headContent h2{
		font-size: 30px;
	}
	
	.CaseStudiesTabsTwo .headContent{
		width: 100%;
	}
	
	.CaseStudiesTabsTwo .tabs ul li h4{
		font-size: 14px;
	}
	
	.CaseStudiesTabsTwo .tabs ul li{
		padding-bottom: 0px;
	}
	
	.teamsWork .left .single .info h3{
		font-size: 15px;
	}
	
	.teamsWork .left .single .info p{
		font-size: 13px;
	}
	
	.teamsWork .left .single{
		border: 0;
	}
	
	.teamsWork .left .grid{
		justify-content: center;
	}
	
	.teamsWork .left .single:nth-child(odd) {
    padding-right: 0;
	}
	
	.teamsWork .left .single .info {
    text-align: left;
	}
	
	.teamsWork .left h2{
		font-size: 30px;
	}
	
	.teamsWork .left > p{
		font-size: 14px;
	}
	
	.builtForStartup .right h2{
		font-size: 30px;
	}
	
	.teamsWork .right{
		display: block;
	}
	
	.IndustryGrid .main h2{
		font-size: 30px;
	}
	
	.predictableProcess .right .info h2{
		font-size: 30px;
	}
	
	.ourClientsSay .sliderInfo > div > p {
    width: 100%;
    font-size: 16px;
    line-height: 1.4;
	}
	
	.ourClientsSay .profileFlex .info p{
		line-height: 1.2;
	}
	
	.CtaTwo .info h2{
		font-size: 30px;
	}
	
	.tnb-btn{
		font-size: 16px;
	}
	
	.ourBlog .main h2{
		font-size: 30px;
	}
	
	.teamChoose .topCont .leftSide h2{
		font-size: 30px;
	}
	
	.enterpriseLevelSec .leftSide h2{
		font-size: 30px;
	}
	
	.ourClientsSay .mainGrid .left h2{
		font-size: 30px;
	}
	
	.languageServices .ls-list-info h5 {
    font-size: 18px;
  }
	
	.typesOfApps .tab-content .tab-details .content-grid .right-info h3{
		font-size: 18px;
	}
	
	.twoBoxes .main-tab .mainDiv h3{
		font-size: 18px;
	}
	
	.stackNewBox .MainBox {
    row-gap: 10px;
	}
	
	.tv-mos .tv-mos-grid--video-only .tv-mos-video {
    width: 100%;
    height: auto;
	}
	
	.dq-h2-single{
		margin-left: auto !important;
    	margin-right: auto !important;
	}
	
	.featuredSec .mainGrid .featuredInfo h2 {
    font-size: 18px;
  }

  .featuredSec .mainGrid .rightInfo .articleSlider .single h3 {
    font-size: 18px;
  }
  .featuredSec .mainGrid {
    grid-template-columns: 60% 40%;
  }
  .articleSec h2 {
    font-size: 24px;
  }
  .blog--cards h4 {
    font-size: 16px;
  }
  .blog--cards a img {
    height: 200px;
  }
  .searchTerm {
    font-size: 16px;
  }
  .featuredSec .mainGrid .featuredInfo {
    padding: 30px 30px 60px 60px;
  }
  .featuredSec .mainGrid .leftInfo .featuredInfo::before {
    height: 130px;
    left: -32px;
    background-repeat: no-repeat;
  }
  .featuredSec .mainGrid .rightInfo .articleSlider .single span {
    font-size: 14px;
  }
  .articleSec .articleTabs ul {
    gap: 10px;
  }
  .articleSec .articleTabs ul li a {
    display: block;
  }
  .gridWrapper {
    grid-template-columns: 1fr 1fr;
  }
  .gridWrapper .blog--cards:last-child {
    display: none;
  }
	
	.singleBanner .mainGrid .leftSide h1 {
    font-size: 22px;
  }
  .sec-post.det-post .det p,
  .blog-bio p {
    font-size: 16px;
  }
  .sec-post.det-post .det h2 {
    font-size: 26px;
  }
  .sec-post.det-post .det h3 {
    font-size: 22px;
  }
  .sec-post.det-post .det h4 {
    font-size: 20px;
  }
  .sec-post.det-post .det h5 {
    font-size: 18px;
  }
  .sec-post.det-post .det h6 {
    font-size: 16px;
  }
  .sec-post .singleGrid .rightContent .related-post-grid {
    grid-template-columns: 1fr 1fr;
  }
  .singleBanner .mainGrid {
    grid-template-columns: 1fr;
  }
  .rightCta h5 {
    font-size: 65px;
  }
  .rightCta h4 {
    font-size: 20px;
  }
  .rightCta button {
    font-size: 14px;
  }
  .sec-post .singleGrid .rightContent h2 {
    font-size: 20px;
  }
  .custom-table-of-content #ez-toc-container p.ez-toc-title {
    font-size: 20px;
  }
  .det ul li,
  .blog-bio ul li {
    font-size: 18px;
  }
  .categoryMain .categoryGrid {
    grid-template-columns: 1fr 1fr;
  }
	.hireBanner .banner-grid .content h1{
		font-size:28px;
	}
	
}

/* ── 767px ──────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
	.trustedBy .main p{
		font-size: 14px;
	}
	
	.choose-results .leftSide, .choose-results .rightSide{
		text-align: center;
        width: 100%;
	}
	
	.choose-results .rightSide ul {
    justify-content: center;
	}
	
	.choose-results{
		padding: 50px 0;
	}
	
	.deliveryControl .main h2{
		font-size: 28px;
	}
	
	.deliveryControl .single {
    justify-content: center;
    align-items: center;
	}
	
	.deliveryControl .single .info{
		text-align: center;
	}
	
	.deliveryControl .single .info h3{
		margin-bottom: 10px;
	}
	
	.CaseStudiesTabsTwo .headContent h2{
		font-size: 25px;
	}
	
	.teamsWork .left h2{
		font-size: 25px;
	}
	
	.teamsWork .left .grid{
		align-items: center;
	}
	
	.builtForStartup .right h2{
		font-size: 25px;
	}
	
	.builtForStartup .extraContent ul li{
		font-size: 14px;
	}
	
	.predictableProcess .right .info h2{
		font-size: 25px;
	}
	
	.ourClientsSay .mainGrid .left h2{
		font-size: 25px;
	}
	
	.ourClientsSay .mainGrid {
    flex-direction: column;
	}
	
	.CtaTwo .btnWrapper{
		flex-direction: column;
	}
	
	.CtaTwo .info h2{
		font-size: 25px;
	}
	
	.tnb-btn {
    font-size: 13px;
	}
	
	.builtForStartup .right{
		padding: 30px;
	}
	
	.appDevForm .adf-form .tnb-btn{
		font-size: 14px;
	}
	
	.proposal h2 {
    font-size: 17px;
    line-height: 1.6;
	}
	
	.proposal .tnb-btn{
		font-size: 16px;
	}
	
	.languageServices .ls-list-info h3 {
    font-size: 16px;
  }
	.devProcess .info-grid .box h3 {
    font-size: 18px;
  }
	.twoBoxes .main-tab .mainDiv h3{
		font-size: 16px;
	}
	
	.softwareDevProcess .dev-box p {
    font-size: 30px;
    width: 100%;
    text-align: center;
    position: relative;
    left: 0;
    top: 0;
    margin-bottom: 15px;
  }
	
	.methodology .main-tab .tab span{
		font-size: 18px;
	}
	
	.hiring .hiring-tabs-list ul{
		flex-direction: column;
	}
	
	.languageServices .ls-content h2{
		font-size: 22px;
	}
	
	.developmentProcess .content h3{
		font-size: 22px;
	}
	
	.page-homepage .section {
    padding: 60px 10px !important;
	}
	
	.main-bg-banner h1 {
    font-size: 28px;
  }
  .main-bg-banner p {
    font-size: 14px;
  }
  .featuredSec .mainGrid .featuredInfo h2 {
    font-size: 16px;
  }
  .featuredSec .mainGrid .featuredInfo p {
    font-size: 14px;
  }
  .featuredSec .mainGrid .rightInfo .articleSlider .single h3 {
    font-size: 16px;
  }
  .featuredSec .mainGrid {
    grid-template-columns: 100%;
    gap: 60px;
  }
  .articleSec h2 {
    font-size: 20px;
  }
  .blog--cards h4 {
    font-size: 16px;
  }
  .blog--cards a img {
    height: 200px;
  }
  .searchTerm {
    font-size: 14px;
  }
  .articleSec .articleTabs ul li a {
    font-size: 14px;
    padding: 6px 15px;
  }
  .featuredSec .mainGrid .leftInfo .featuredInfo::before {
    content: unset;
  }
  .featuredSec .mainGrid .featuredInfo {
    padding: 30px;
  }
  .featuredSec .mainGrid .featuredInfo .btnWrapper a {
    font-size: 14px;
  }
	
	.singleBanner .mainGrid .leftSide h1 {
    font-size: 22px;
  }
  .singleBanner .mainGrid .leftSide p {
    font-size: 14px;
    line-height: 1.5;
  }
  .sec-post.det-post .det p,
  .blog-bio p {
    font-size: 14px;
  }
  .singleBanner .mainGrid .leftSide .last-updated-date {
    font-size: 14px;
  }
  .sec-post.det-post .det h2 {
    font-size: 24px;
  }
  .sec-post.det-post .det h3 {
    font-size: 20px;
  }
  .sec-post.det-post .det h4 {
    font-size: 18px;
  }
  .sec-post.det-post .det h5 {
    font-size: 16px;
  }
  .sec-post.det-post .det h6 {
    font-size: 14px;
  }

  .singleBanner .mainGrid {
    grid-template-columns: 1fr;
  }
/*   .rightCta {
    text-align: center;
  } */
  .rightCta h5 {
    font-size: 60px;
  }
  .rightCta h4 {
    font-size: 18px;
  }
	.rightCtaTwo h4 {
    font-size: 20px;
  }
	.rightCtaTwo a{
		font-size:14px;
	}
  .faqSection .card-header button {
    font-size: 14px;
  }
  .det ul li,
  .blog-bio ul li {
    font-size: 16px;
  }
  .singleBanner .mainGrid .leftSide {
    text-align: center;
  }
  .singleBanner .mainGrid .leftSide hr {
    margin: 12px auto;
  }
  .faqSection h2 {
    text-align: center;
    font-size: 24px;
  }
	.innerBlogCta .rightCtaInfo h4 {
    font-size: 16px !important;
}
	.innerBlogCta .rightCtaInfo p {
    font-size: 14px !important;
}
	.innerBlogCta .rightCtaInfo button, .innerBlogCta .rightCtaInfo a {
    font-size: 14px;
}
	.developmentServices .ds-details h3{
		text-align:center;
		font-size:18px;
	}
	.keyThings .kt-tab-btn h3{
		text-align:center;
		font-size:18px;
		border-bottom:0;
	}
	.hireFreelance .freelance .content h2{
		font-size:22px;
		text-align:center;
	}
	.hireFreelance .freelance .content ul li span{
		font-size:22px;
		text-align:center;
	}
	.hireBanner .banner-grid .hire-form .form-content h3{
		font-size:20px;
	}
}

/* ── 479px ──────────────────────────────────────────────────────────────────── */
@media (max-width: 479px) {
	.devProcess .info-grid .box h3 {
    font-size: 16px;
  }
	
	
	
	.typesOfApps .tab-content .tab-details .content-grid .right-info h3{
		font-size: 16px;
	}
	
	.mainFaqs .faqBody{
		font-size: 14px;
	}
	
	.mainFaqs .faqAccordian .accordion-button{
		font-size: 14px;
		line-height: 1.2;
	}
	
	.twoBoxes .main-tab .mainDiv h3{
		font-size: 14px;
	}
	
	.methodology .main-tab .tab span{
		font-size: 16px;
	}
	
	.cruze-sec-4 .img-grid img {
    width: 100%;
    height: auto;
	}
	
		/* Home Page */
	
	.path-card.product {
    background-image: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.92) 60%,
      rgba(255, 255, 255, 0.96) 100%
    ),
    url("/wp-content/uploads/2026/06/how-1.webp") !important;
    
}

.trust {
    padding: 40px 10px !important;
}

.path {
    padding: 40px 10px !important;
}
	
	.hire{
		padding: 40px 10px !important;
	}
	
	.services{
		padding: 40px 10px !important;
	}
	
	.nxt {
    padding: 40px 10px !important;
	}
	
	.cases {
    padding: 40px 10px !important;
	}
	
	.hire-container{
		padding: 0 10px !important;
	}
	
	.engage-v3 {
    padding: 40px 10px !important;
	}
	
	.dq .dq-inner {
    padding: 40px 10px !important;
	}
	
	.why {
    padding: 40px 10px !important;
	}
	
	.industries {
    padding: 40px 10px !important;
	}
	
	.tech {
    padding: 40px 10px;
}
	
	.tv-mos .tv-mos-grid--video-only .tv-mos-video{
		width: 100%;
		height: auto;
	}
	
	.blog{
		padding: 40px 10px !important;
	}
	
	.faq{
		padding: 40px 10px !important;
	}
	
	.collab{
		padding: 40px 10px !important;
	}
	
	.path-card h3 {
    font-size: 24px !important;
    line-height: 1.2 !important;
	}
	
	.path-h2 {
    font-size: 26px !important;
    line-height: 1.2 !important;
	}
	

		
	.tech-header {
    padding: 0 !important;
}
	
	.engage-v3 .ev-row-bullets {
    grid-template-columns: 1fr !important;
}
	
	.engage-v3 .ev-row-body-inner {
    padding-left: 10px !important;
}
	
	.engage-v3 .ev-row-head{
		gap: 0px !important;
	}
	
	.engage-v3 .ev-row-title {
    font-size: 21px !important;
}
	
	.why-head h2 {
    font-size: 34px !important;
    line-height: 1.1;
}
	
	.why-list {
    grid-template-columns: 1fr !important;
}
	
	.ind-row-top, .ind-row-bot {
    grid-template-columns: auto !important;
}


/* Home Page */
	
	.gridWrapper {
    grid-template-columns: 1fr;
  }
  .blog--cards .card--info {
    padding: 20px;
  }
	.sec-post .singleGrid .rightContent .related-post-grid {
    grid-template-columns: 1fr;
  }
	.innerBlogCta .ctaGrid{
		grid-template-columns:1fr;
	}
	.innerBlogCta .leftCtaInfo{
		display:none;
	}
	.ourProcess .cards .card .card-infos h3{
		font-size: 16px;
	}
	.ourProcess .cards .card .card-infos span{
		font-size: 22px;
	}
	.hireFreelance .freelance .image img{
	width: 212px;
        height: 250px;
}
	.hireBanner .banner-grid .content h1{
		font-size:26px;
	}
}

@media (max-width: 320px) {
	.devProcess .info-grid .box h3 {
    font-size: 14px;
  }
}
