.custom_container {
  width: 80%;
  margin: 0 auto;
}
/* arrow_button */
.arrow-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  color: #000;
  border: 1px solid #000;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 1s;
  width: fit-content;
  height: fit-content;
  gap: 10px;
  background: none;
}

.r-arrow {
  width: 30px;
  background-color: #000;
  border-radius: 50%;
  padding: 5px;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.r-arrow img {
  width: 100%;
  display: block;
}

.r-arrow .hover-img {
  display: none;
}

.arrow-btn:hover {
  background-color: #000;
  color: #fff;
}

.arrow-btn:hover .r-arrow {
  background-color: #fff;
  transform: rotate(-20deg);
}

.arrow-btn:hover .r-arrow .default-img {
  display: none;
}

.arrow-btn:hover .r-arrow .hover-img {
  display: block;
}

/* Banner_Start */
.banner {
  position: relative;
}

.banner .banner_img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}

.banner .banner_sub1 {
  position: absolute;
  top: 10%;
  left: 5%;
}

.banner .banner_sub2 {
  position: absolute;
  top: 35%;
  right: 37%;
}

.banner .banner_sub3 {
  position: absolute;
  top: 10%;
  right: 0%;
}
.banner .banner_subimg1 {
  width: 30%;
  border-radius: 100px;
}
.banner .banner_subimg2 {
  width: 15%;
}
.banner .banner_subimg3 {
  width: 15%;
}
.banner .banner_sub1 img,
.banner .banner_sub2,
.banner .banner_sub3 {
  animation: horizontal-shaking 3s infinite;
  object-fit: contain;
}

@keyframes horizontal-shaking {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(5px);
  }

  50% {
    transform: translateX(-5px);
  }

  75% {
    transform: translateX(5px);
  }

  100% {
    transform: translateX(0);
  }
}

.banner h1 {
  width: 40%;
  margin-top: 20px;
  font-size: 50px;
}

.banner .banner-txt {
  position: absolute;
  top: 60%;
  left: 50%;
  align-items: center;
  gap: 15px;
}

.banner .banner-txt p {
  /* font-size: 18px; */
  width: 60%;
}

/* Banner_End */
/* Works_Start */
.works {
  padding: 60px 0;
}

.works h2 {
  font-size: 40px;
  margin-bottom: 0;
}

.works .works_img_div {
  display: flex;
  gap: 20px;
  justify-content: space-evenly;
}

.works .works_img {
  width: 18%;
  filter: gray;
  -webkit-filter: grayscale(1);
  -webkit-transition: all 0.2s ease-in-out;
}

.works .works_img:hover {
  filter: none;
  -webkit-filter: grayscale(0);
}
/* Works_End */
/* Aboutus_Start */
.about_us {
  padding-bottom: 60px;
  /* border-top: 1px solid #000;
  border-bottom: 1px solid #000; */
}

/* .about_us .aboutus_head {
  border-bottom: 1px solid #000;
} */

.about_us h2 {
  text-align: center;
  font-size: 120px;
  /* border-right: 1px solid #000;
  border-left: 1px solid #000; */
  margin-bottom: 20px;
}

.about_us .aboutus_content {
  display: flex;
  /* border-right: 1px solid #000;
  border-left: 1px solid #000; */
  justify-content: space-between;
  align-items: center;
}

.about_us .about_txt {
  /* padding-right: 60px; */
  width: 50%;
}

.about_us .about_txt p {
  margin-bottom: 25px;
  /* padding-right: 100px; */
}
/* .about_us .about_us_img{
    width: 40%;
} */
.abt_svg {
  width: 40%;
}
.abt_svg img {
  width: 85%;
  transform: scaleX(-1);
}
/* Aboutus_End */
/* Aboutus_Start */
.ourservices {
  padding-bottom: 60px;
}

.ourservices h2 {
  font-size: 40px;
}

.ourservices .ourservices_carousal {
  margin-top: 20px;
}

.ourservices .ourservices_card {
  border: 1px solid #000;
  border-radius: 10px;
  padding: 20px;
  background-color: #8fff49;
  transition: background-color 0.3s, height 0.3s;
  overflow: hidden;
  height: 100%;
}

.ourservices .ourservices_card_div {
  display: flex;
  justify-content: space-between;
}

.ourservices .ourservices_card_div img {
  width: 10% !important;
  height: 100%;
}

.ourservices .ourservices_card_div h5 {
  font-size: 25px;
  width: 75%;
}

.ourservices .ourservices_card p {
  margin: 30px 0;
}

.ourservices .novisible a {
  color: #212529;
  transition: all 0.3s;
  font-size: 16px;
}


.ourservices .novisible {
  opacity: 1;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}
.novisible {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* Ensure that the div takes the full height */
}

.viewmore {
  margin-top: auto; /* Push the link to the bottom of the container */
}

.ourservices .ourservices_card.default-hover .novisible {
  opacity: 1;
}

.ourservices .ourservices_card:hover .novisible {
  opacity: 1;
}

.ourservices .ourservices_carousal .owl-dots {
  display: none;
}
/* Ourservice_End */
/* Bynumber_Start */
.bynumber {
  padding-bottom: 60px;
}

.bynumber h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.bynumber .bynumber_head {
  display: flex;
  justify-content: space-between;
}

.bynumber .bynumber_head p {
  width: 40%;
}

.bynumber .bynumber_border {
  border: 1px solid #000;
  margin-top: 20px !important;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.bynumber .bynumber_body {
  text-align: center;
  border-right: 1px solid #000;
  padding: 20px 0 30px 0;
}

.bynumber .bynumber_body p {
  margin-bottom: 0;
  padding: 0 10px;
}

.bynumber .bynumber_body h5 {
  font-size: 50px;
  margin-bottom: 10px;
}
/* BYnumber_End */
/* Clients_logo */
.client_logo {
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.client_logo_div {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.client_logo_div img {
  object-fit: cover;
  width: fit-content;
}
.marquee-left {
  display: inline-flex;
  animation: marquee-left 30s linear infinite;
}

.marquee-right {
  display: inline-flex;
  animation: marquee-right 30s linear infinite;
}

@keyframes marquee-left {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0%);
  }
}
.marquee-left,
.marquee-right {
  width: calc(200%);
}
/* Clinets logo_End */
/* Industry_Start */
.industry {
  padding: 60px 0;
}

.industry h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.industry .industry_p {
  width: 60%;
  margin-bottom: 30px;
}

.industry .industry_carousal {
  /* border: 1px solid #000; */
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  display: flex;
  justify-content: center;
}

.industry .industry_border {
  padding: 20px;
  height: 100%;
  position: relative;
}

.industry .industry_hoverimg img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}

.industry .border_right {
  border-left: 1px solid #000;
  overflow: hidden;
  position: relative;
}

.industry .bor_r {
    border-right: 1px solid #000;
}

.industry .industry_carousal .owl-dots {
  display: none;
}

.industry .industry_border h5 {
  font-size: 25px;
  margin-bottom: 20px;
}

.industry .industry_border p {
  margin-bottom: 0px;
}

.industry .industry_not {
  visibility: unset;
  opacity: 1;
  transition: visibility 0s, opacity 0.5s ease;
}

.industry .border_right img {
  width: 20% !important;
}

.industry .border_right:hover .industry_hoverimg {
  opacity: 0;
}

.industry .border_right:hover .industry_not {
  visibility: visible;
  opacity: 1;
  z-index: 1;
}
/* Industry_End */
/* Ourworks_start */
.ourworks {
  /* padding: 100px 0; */
  background-color: #000;
}
.ourworks .ourworks_head {
  position: relative;
}

.ourworks .ourworks_head h2 {
  font-size: 40px;
  color: #fff;
  writing-mode: tb;
  transform: rotate(-180deg);
  text-align: center;
  margin: 0;
}

.ourworks .ourworks_container {
  display: flex;
}
.ourworks .r-arrow {
  background-color: #fff;
}
.ourworks .r-arrow img {
  display: none;
}
.ourworks .r-arrow .hover-img {
  display: block;
}
.ourworks .work_pannel {
  height: 100vh;
  will-change: transform;
  position: relative;
}

.ourworks .ourworks_content {
  display: flex;
  height: 100%;
  position: relative;
}
.ourworks .pannel_content h5 {
  font-size: 35px;
  line-height: 40px;
  margin-bottom: 20px;
}
.ourworks .pannel_content button {
  color: #fff;
  border: 1px solid #fff;
  padding: 5px 20px;
}
.ourworks .pannel_content p {
  font-size: 16px;
}
.ourworks .pannel_content p:nth-of-type(2) {
    margin-bottom: 30px;
}

.ourworks .ourworks_content a {
  text-decoration: none;
  color: #fff;
}
.ourworks .ourworkborder {
  padding: 80px 0 40px 0;
  width: 45%;
}
.ourworks .pannel_content {
  color: #fff;
  height: 100%;
}

.ourworks .ourworks_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
}

.ourworks .ourworks_img img {
  width: 70%;
}

/* ourworks_end */
/* Awards_start */
.awards {
  padding-bottom: 60px;
  display: flex;
}

.awards .award_head {
  width: 50%;
  margin-right: 10px;
}
.awards_carousals {
  width: 50%;
  display: flex;
}

.awards .awards_topcarousal,
.awards .awards_bottomcarousal {
  max-width: 50%;
  border: 1px solid #000;
}

.awards .award_body {
  display: flex;
}

.awards .award_txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* border: 1px solid #000; */
  padding: 50px 20px;
}

.awards .award_txt img {
  width: 40% !important;
}

.awards .awards_border {
  border-right: none;
}

.awards .award_txt p {
  text-align: center;
  margin-top: 10px;
}

.awards .owl-carousel .owl-dots {
  display: none;
}
/* awards_end */
/* touch_Start */
.touch {
  padding-bottom: 60px;
}

.touch .touch_div {
  border: 1px solid #000;
  display: flex;
  padding: 40px 20px 50px 20px;
}

.touch .touch_div h2 {
  width: 60%;
  font-size: 120px;
  margin-bottom: 0;
  line-height: 1;
}

.touch .touch_content {
  width: 40%;
  margin-top: auto;
  margin-bottom: 20px;
}
/* Touch_End */
/* Insights-Section-Starting */
.insights {
  padding-bottom: 60px;
}
.insights .insights-row {
  margin-bottom: 30px;
}
.insights .insights-row p {
  margin-bottom: 0;
}
.insights h2 {
  font-size: 45px;
}
.insights .insights-row .col-md-6:nth-child(2) {
  border-left: 1px solid #000;
}
.insights .insights-img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  height: 50vh;
}
.insights .insight-content {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.insights a {
  text-decoration: none;
  color: #000;
}
.insights .insight-content p {
  color: #000;
  font-weight: 600;
  margin-bottom: 0;
}
.insights .insight-content .arrow-btn {
  border: none;
}
.insights .insight-content {
  display: flex;
  align-items: center;
}
.insights .insight-content img {
  width: 20px;
}
.insights .insights-link:hover .arrow-btn {
  transform: rotate(-20deg);
  transition: transform 0.3s ease;
}
.insights .insights-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 18px;
  text-decoration: none;
  color: #000;
  border-radius: 30px;
  transition: all 1s;
  width: fit-content;
}
.insights .insights-btn img {
  margin-left: 10px;
  padding: 5px;
  font-size: 30px;
  background-color: #000;
  border-radius: 50%;
  color: #fff;
  transition: transform 0.3s ease;
  width: 30px;
}
.insights a:hover .insights-btn img {
  transform: rotate(-20deg);
  transition: transform 0.3s ease; /* Adds smooth rotation */
}
/* Insights-Section-Ending */
/* FAQ-Section-Starting */
.faq {
  height: 100%;
  padding-bottom: 60px;
}

.faq h2 {
  font-size: 45px;
  margin-bottom: 30px;
}

.faq .faq-head {
  font-size: 20px;
}

.faq .accordion-item {
  border-bottom: 1px solid #e9e9e9 !important;
}

.faq .accordion-button:not(.collapsed) {
  background-color: none !important;
  box-shadow: none !important;
}

.faq .accordion {
  --bs-accordion-active-bg: none !important;
  --bs-accordion-btn-focus-box-shadow: none !important;
}

.faq .accordion-button p {
  font-size: 20px;
  margin-bottom: 0;
  color: #212529;
}
.faq .accordion-button {
    padding: 20px;
}

.faq .accordion-collapse {
  font-size: 18px;
}
.faq .viewmore span {
  font-size: 25px;
  padding-left: 5px;
}
.faq .accordion-body a {
  text-decoration: none;
  color: #21252f;
}
/* FAQ-Section-Ending */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @media (max-width: 1440px) {

    .insights .insights-img {
      height: 45vh;
    }
  }
}

@media (min-width: 1366px) {
  .banner h1 {
    font-size: 3.66vw;
  }
  .works h2 {
    font-size: 3.66vw;
  }

  .ourservices h2,
  .bynumber h2,
  .industry h2,
  .insights h2,
  .faq h2,
  .awards h2 {
    font-size: 3.66vw;
    margin-bottom: 1.464vw;
    line-height: 4.31vw;
  }

  .about_us h2,
  .touch .touch_div h2 {
    font-size: 8.785vw;
  }

  .banner .banner-txt p,
  .about_us .about_txt p,
  .ourservices .ourservices_txt,
  .bynumber .bynumber_head p,
  .industry .industry_p,
  .awards .awards_p,
  .touch .touch_content p,
  .faq .faq-txt {
    font-size: 1.318vw;
    line-height: 1.75vw;
    margin-bottom: 2.796vw;
  }

  .insights p {
    font-size: 1.318vw;
    line-height: 1.75vw;
  }
  .industry .industry_p {
    margin-bottom: 3vw;
  }

  .awards .award_txt h5 {
    font-size: 1.35vw;
  }
  .ourworks .ourworks_body p {
    font-size: 1vw;
    line-height: 1.6vw;
  }

  .awards .award_txt p {
    font-size: 1vw;
    line-height: 1.55vw;
    margin-top: 1.042vw;
  }

  .works {
    padding: 7.321vw 0 7.321vw 0;
  }

  .about_us {
    padding-bottom: 7.321vw;
  }

  .ourservices,
  .industry,
  .our_works,
  .touch,
  .insights,
  .faq,
  .awards {
    padding-bottom: 7.321vw;
  }
  .industry {
    padding-top: 7.321vw;
  }
  .client_logo {
    padding-bottom: 2.928vw;
  }
  .client_logo_div {
    margin-bottom: 2.196vw;
  }

  .arrow-btn {
    font-size: 1.025vw;
    border-radius: 2.928vw;
  }

  .ourservices .ourservices_card {
    padding: 1.464vw;
  }

  .ourservices .ourservices_card_div h5 {
    font-size: 1.611vw;
  }

  .ourservices .ourservices_card p {
    font-size: 1.11vw;
    line-height: 1.65vw;
    margin: 3.196vw 0;
  }
  .ourworks .ourworks_body p:nth-child(3) {
    margin-bottom: 2.196vw;
  }
  .ourservices .ourservices_carousal {
    margin-top: 0.196vw;
  }

  .ourservices .novisible a {
    font-size: 1vw;
  }

  .bynumber .bynumber_body h5 {
    font-size: 3.66vw;
  }

  .bynumber .bynumber_body p {
    font-size: 1.1vw;
  }

  .bynumber .bynumber_border {
    margin-top: 0 !important;
  }

  .bynumber .bynumber_body {
    padding: 1.464vw 0 2.196vw 0;
  }

  .industry .industry_border {
    padding: 1.464vw;
  }

  .industry .industry_border h5 {
    font-size: 1.83vw;
    margin-bottom: 1.464vw;
  }

  .industry .industry_border p {
    font-size: 1.11vw;
    line-height: 1.65vw;
  }

  /* .ourworks_body p:last-of-type {
        margin-bottom: 0;
    } */

  .insights .insights-img {
    height: 55vh;
  }

  .insights .insights-arrow span {
    font-size: 1.5vw;
    padding-bottom: 6px;
    margin-left: 16px;
  }
  .insights .insight-content p {
    font-size: 1.11vw;
  }

  .faq .accordion-button p {
    font-size: 1.25vw;
  }

  .faq .accordion-collapse {
    font-size: 1.11vw;
  }
  .touch .touch_div {
    padding: 4.328vw 1.464vw 5.16vw 1.464vw;
  }
  .awards .award_head {
    font-size: 1.042vw;
  }
  .faq .viewmore span {
    font-size: 1.83vw;
  }
  .insights .insights-row {
    margin-bottom: 3.228vw;
  }
  .ourworks .ourworks_head h2 {
    font-size: 2.928vw;
  }

  .ourworks .pannel_content h5 {
    font-size: 2.562vw;
    line-height: 2.928vw;
    margin-bottom: 1.464vw;
  }
  .ourworks .pannel_content button {
    padding: 0.366vw 1.464vw;
  }
  .ourworks .pannel_content p {
    font-size: 1.171vw;
  }
  .ourworks .pannel_content p:nth-of-type(2) {
      margin-bottom: 2.196vw;
  }

  .ourworkborder {
    padding: 5.857vw 0 2.928vw 0;
  }
  _::-webkit-full-screen,
:root .industry .border_right {
    height: 40vh;
}
}

@media (max-width: 1280px) {
  .banner h1 {
    width: 50%;
    font-size: 50px;
  }

  .insights .insights-img {
    height: 300px;
  }
  .touch .touch_div h2 {
    font-size: 100px;
  }
  .banner .banner_sub2 {
    right: 32%;
  }
}

@media (max-width: 1024px) {
  .custom_container {
    width: 85%;
  }

  .banner h1 {
    font-size: 45px;
  }

  .banner .banner-txt {
    left: 50%;
  }
  .banner .banner-txt p {
    width: 75%;
  }
  .banner .banner_subimg2 {
    width: 15%;
    height: 20%;
    top: 35%;
  }

  .banner .banner_subimg3 {
    width: 20%;
    height: 15%;
  }
  .banner .banner_sub2 {
    right: 30%;
  }
  .arrow-btn {
    font-size: 14px;
    padding: 10px 15px;
  }

  .about_us h2 {
    font-size: 90px;
  }

  /* .about_us .about_txt {
    padding: 40px;
  } */

  .ourservices .ourservices_card_div h5 {
    font-size: 20px;
  }

  .ourservices .ourservices_card p {
    margin: 20px 0;
  }

  .bynumber .bynumber_head p {
    width: 50%;
  }

  .bynumber .bynumber_body h5 {
    font-size: 40px;
  }

  .bynumber .bynumber_body {
    padding: 10px 0 15px 0;
  }

  .industry .industry_p {
    width: 90%;
    margin-bottom: 35px;
  }
  .awards .award_txt p {
    font-size: 14px;
  }

  .touch .touch_div h2 {
    font-size: 85px;
  }

  .insights .insights-img {
    height: 300px;
  }
  .touch .touch_content p {
    margin-bottom: 25px;
  }

  .faq .accordion-collapse {
    font-size: 14px;
  }

  .faq .accordion-button p {
    font-size: 18px;
    padding: 0;
  }

  .ourworks .ourworks_container {
    flex-direction: column;
    justify-content: center;
}
.ourworks .pannel_content, .ourworks .ourworkborder {
    border: none;
}
.ourworks .ourworks_img {
    width: 100%;
}
  .ourworks .ourworks_head h2 {
    writing-mode: unset;
    transform: none;
    z-index: 999;
  }

  .ourworks .ourworks_content {
    flex-direction: column;
    gap: 50px;
    justify-content: center;
  }
  .ourworkborder
  .ourworks .ourworks_head h2 {
    padding: 100px 0 0 0;
    margin-bottom: 0;
  }

  .ourworks .ourworks_body h5 {
    font-size: 35px;
  }
  /* .ourworks .ourworks_view img {
        height: 100vh;
    } */
    .ourworks .ourworkborder{
        width: 100%;
        padding: 0;
    }
  /* .awards .awards_topcarousal,
  .awards .awards_bottomcarousal {
    max-width: 250px;
  } */

  .awards h2 {
    font-size: 40px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1024px) and (max-height: 800px) {
  .ourworks .ourworks_visual {
    padding-top: 20px;
    height: 320px;
  }
  .ourworks .ourworks_inner {
    height: 35%;
  }
  .ourworks .ourworks_body {
    padding: 0 0 40px 0;
  }
  .ourworks .ourworks_view img {
    width: 28%;
  }
}
@media (max-width: 1024px) and (max-height: 768px) {
  .ourworks .ourworks_body {
    padding: 0;
  }
  .ourworks .ourworks_body h5 {
    font-size: 30px;
  }
  .ourworks .ourworks_visual {
    padding-top: 20px;
    height: 320px;
  }
  .ourworks .ourworks_inner {
    height: 40%;
  }
  .ourworks .ourworks_view img {
    width: 28%;
  }
  /* .ourworks_head {
    padding: 20px 0 0 0;
  } */
  .ourworks .ourworkborder {
padding: 40px 0 0 0;
  }
  .ourworks .ourworks_img img {
    width: 32%;
  }
}

@media (max-width: 853px) {
  .banner h1 {
    font-size: 40px;
    width: 55%;
  }

  /* .about_us .about_txt {
    padding: 25px;
  } */

  .ourservices .ourservices_card {
    padding: 10px;
  }

  .ourservices .ourservices_card_div img {
    width: 15% !important;
  }

  .ourservices .ourservices_card p {
    font-size: 15px;
  }

  .industry .industry_border {
    padding: 20px;
  }

  .insights .insight-content p {
    font-size: 14px;
  }

  /* .awards .awards_topcarousal,
  .awards .awards_bottomcarousal {
    max-width: 200px;
  } */

  .touch .touch_div h2 {
    font-size: 70px;
  }
  .faq .viewmore span {
    font-size: 20px;
  }
  .ourservices h2 {
    font-size: 32px;
  }
  .ourworks .ourworks_inner {
    height: 35%;
  }
  .ourworks .ourworks_view img {
    width: 55%;
  }
  .ourworks .ourworks_visual {
    height: 500px;
  }
  .touch .touch_div h2 {
    line-height: unset;
  }
}
@media (max-width: 768px) {
  .ourworks .ourworks_body {
    padding: 0px 0 40px 0;
  }
  .ourworks .ourworks_inner {
    height: 32%;
  }
  /* .awards .awards_topcarousal,
  .awards .awards_bottomcarousal {
    max-width: 190px;
  } */
}

@media (max-width: 767px) {
  .insights-img {
    height: 60vh;
  }

  .insight-content {
    margin-bottom: 20px;
  }
  /* .awards .awards_topcarousal,
  .awards .awards_bottomcarousal {
    max-width: 135px;
    height: 100%;
  } */
  .ourservices .novisible a {
    font-size: 10px;
  }
  .banner .banner_sub1 img {
    width: 50%;
  }
  .works h2 {
    margin-bottom: 10px;
  }
  .bynumber .bynumber_body h5 {
    font-size: 30px;
  }
  .faq-txt {
    margin-bottom: 30px;
  }
  .bynumber .bynumber_head {
    flex-direction: column;
  }
  .bynumber .bynumber_head p {
    width: 100%;
  }
  .industry .industry_p {
    width: 100%;
  }
  .industry .industry_border p {
    font-size: 12px;
  }
  .ourworks .ourworks_body p {
    font-size: 12px;
  }
  .ourservices .ourservices_card p {
    font-size: 12px;
  }
  .touch .touch_div h2 {
    font-size: 55px;
  }
  .insights .insights-row .col-md-6:nth-child(2) {
    border-left: none;
  }
  .touch .touch_div h2 {
    line-height: normal;
  }
  .awards .award_txt p {
    font-size: 12px;
  }
  .awards .award_txt {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .custom_container {
    width: 90%;
  }

  .banner h1 {
    width: 75%;
    margin-top: 20px;
  }

  .banner.banner h1,
  .works h2,
  .ourservices h2,
  .awards h2,
  .bynumber h2,
  .industry h2,
  .ourworks .ourworks_head h2,
  .insights h2,
  .faq h2, .about_us h2, .testimonial h2 {
    font-size: 35px;
    margin-bottom: 15px;
    line-height: 38px;
  }
  .ourworks .ourworks_body h5 {
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 25px;
  }
  .ourservices .ourservices_card p {
    font-size: 14px;
  }
  .ourservices .novisible {
    opacity: 1;
  }
  .industry .industry_border p {
    font-size: 14px;
  }
  .banner .banner-txt {
    top: 50%;
    left: 5%;
    display: block;
    margin-bottom: 20px;
  }

  .banner .banner-txt p {
    width: 90%;
    margin-bottom: 25px;
    /* font-size: 16px; */
  }

  .arrow-btn {
    font-size: 14px;
  }

  .banner .banner_sub1 img {
    width: 40%;
  }

  .banner .banner_sub2 {
    top: 32%;
    right: 10px;
    width: 32%;
  }

  .banner .banner_sub3 {
    display: none;
  }

  .works .works_img_div {
    text-align: center;
    justify-content: center;
  }

  .works .works_img {
    width: 30%;
  }

  .about_us .aboutus_content {
    display: block;
  }

  .about_us h2 {
    text-align: left;
  }

  .about_us .about_txt {
    width: 100%;
    padding-right: 0px;
    margin-bottom: 0px;
  }
  .abt_svg {
    display: none;
  }

  .about_us .about_us_img {
    width: 100%;
  }

  .ourservices .ourservices_txt {
    margin-bottom: 30px;
  }
  .ourservices .novisible a {
    font-size: 12px;
  }
  .ourservices .ourservices_carousal {
    margin-top: 0;
  }
  .bynumber .bynumber_head {
    display: block;
  }

  .bynumber .bynumber_head p {
    width: 100%;
    margin-bottom: 30px;
  }

  .bynumber .bottom-br {
    border-bottom: 1px solid #000;
  }

  .bynumber .right-br {
    border-right: none;
  }

  .bynumber .bynumber_border {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .bynumber .bynumber_body h5 {
    font-size: 30px;
    margin-bottom: 0;
  }

  .bynumber .bynumber_body p {
    font-size: 15px;
  }

  .ourworks {
    margin-bottom: 0;
  }

  .ourworks .ourworks_container {
    display: block;
  }
  /* .ourworks_head {
    padding: 50px 20px 20px 20px;
  } */

  .ourworks .ourworks_head h2 {
    writing-mode: unset;
    transform: none;
  }

  .ourworks .ourworks_content {
   flex-direction: column;
   gap: 30px;
    height: 100%;
  }

  .ourworks .ourworks_head h2 {
    padding: 0 0 10px 0;
    margin-bottom: 0;
    border-bottom: 1px solid #fff;
    text-align: left;
  }
  /* .ourworks .pannel_content {
    padding: 90px 0 0 0;
  } */
  .awards {
    display: block;
  }

  .awards .award_head {
    width: 100%;
  }
  .awards_carousals {
    flex-direction: column;
    width: 100%;
  }
  .ourworks .ourworks_img img {
    width: 55%;
  }
  .awards .awards_p {
    margin-bottom: 30px;
  }
  .awards .award_txt p {
    font-size: 16px;
  }
  .awards .awards_border {
    border-right: 1px solid #000;
  }

  .awards .awards_topcarousal,
  .awards .awards_bottomcarousal {
    max-width: 100%;
  }

  .awards .awards_topcarousal {
    margin-bottom: 10px;
  }

  .awards .award_txt img {
    width: 20% !important;
  }

  .industry .industry_p {
    width: 100%;
  }
  .industry .industry_border h5 {
    padding-left: 70px;
    margin-bottom: 50px;
  }
  .industry .industry_hoverimg img {
    top: 20px;
    left: 20px;
    transform: none;
  }
  .industry .border_right:hover .industry_hoverimg {
    opacity: 1;
  }
  .industry .industry_not {
    visibility: visible;
    opacity: 1;
  }
  .touch .touch_div {
    display: block;
    padding: 20px;
  }

  .touch .touch_div h2 {
    font-size: 50px;
    width: 100%;
    margin-bottom: 20px;
  }

  .touch .touch_content {
    width: 100%;
  }

  .insights .insights-row .col-md-6:nth-child(2) {
    border-left: none;
  }

  .insights p {
    /* font-size: 14px; */
    margin-bottom: 0;
  }
  .insights .insights-row {
    margin-bottom: 30px;
  }
  .insights .insight-content {
    margin-top: 10px;
    margin-bottom: 25px;
    align-items: center;
  }

  .insights .insights-img {
    height: 250px;
  }

  .insights .insights-arrow {
    padding: 5px 10px;
    font-size: 10px;
  }

  .faq {
    height: 100%;
    padding: 0;
    padding-bottom: 50px;
  }

  .faq .accordion {
    margin: 20px 0 0px 0;
  }

  .faq .accordion-button p {
    font-size: 15px;
  }

  .faq .accordion-collapse {
    font-size: 12px;
  }

  .faq .accordion-body {
    font-size: 13px;
  }
  /* 
    .faq .accordion-button {
        padding: 10px 0 !important;
    } */
}
@media (max-width: 375px) and (max-height: 667px) {
  /* .ourworks_head {
    padding: 30px 20px 10px 20px;
  } */
  .ourworks .ourworks_body h5 {
    margin-bottom: 15px;
  }
}
@media (max-width: 380px) {
  .banner h1 {
    font-size: 30px;
    line-height: 33px;
  }

  .faq .accordion-button {
    padding: 15px 0 !important;
  }

  .faq .accordion-body {
    padding: 5px 0 !important;
  }

  .ourworks .ourworks_body h5 {
    font-size: 30px;
  }

  .ourworks .pannel_content p {
    font-size: 12px;
  }
  .ourworks .ourworks_body p:nth-child(3) {
    margin-bottom: 20px;
  }
  .industry .industry_border h5 {
    margin-bottom: 35px;
    padding-left: 60px;
  }
}

/* Testmonial Start */
.testimonial {
  padding: 60px 0;
}
.testimonial h2 {
  font-size: 40px;
  margin-bottom: 30px;
  text-align: center;
}
.testimonial .testimonial_div {
  border: 1px solid #000;
  display: flex;
}
.testimonial .testimonial_div .test_box, .testimonial .testimonial_div .test_box {
  width: 30%;
  padding: 50px 25px;
}
.testimonial .testimonial_div .test_box img, .testimonial .testimonial_div .test_box img {
  width: auto;
}
.testimonial .testimonial_div .test_box {
  border-right: 1px solid #000;
}
.testimonial .testimonial_div .test_box:last-child {
  border-right: none;
}
.testimonial .testimonial_div .test_box2 {
  width: 40%;
  border-right: 1px solid #000;
}
.testimonial .testimonial_div .test_box2 div {
  padding: 25px;
  height: 50%;
  position: relative;
}
.testimonial .testimonial_div .test_box2 div img {
  width: auto;
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.1s ease-in-out;
  background-color: #fff;
}
.testimonial .testimonial_div .test_box2 div h5,
.testimonial .testimonial_div .test_box2 div .test_position,
.testimonial .testimonial_div .test_box2 div .test_desc {
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s;
}

.testimonial .testimonial_div .test_box2 div:hover img {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.testimonial .testimonial_div .test_box2 div:hover h5,
.testimonial .testimonial_div .test_box2 div:hover .test_position,
.testimonial .testimonial_div .test_box2 div:hover .test_desc {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); /* Bring text smoothly to original position */
}

.testimonial .testimonial_div .test_box2 div:nth-child(1) {
  border-bottom: 1px solid #000;
}
.testimonial .testimonial_div .test_box h5, .testimonial .testimonial_div .test_box2 h5 {
  font-size: 24px;
  margin-bottom: 0px;
  font-weight: 700;
}
.testimonial .testimonial_div .test_box .test_position {
  margin-bottom: 20px
}
.testimonial .testimonial_div .test_box .test_desc {
  margin-bottom: 30px;
}
.testimonial .testimonial_div .test_box2 .test_desc {
  margin-bottom: 0px;
}

@media (min-width: 1366px) {
  .testimonial {
    padding: 7.321vw 0;
  }
  .testimonial h2 {
    font-size: 3.66vw;
    margin-bottom: 2.196vw;
  }
  .testimonial .testimonial_div .test_box, .testimonial .testimonial_div .test_box {
    padding: 3.66vw 1.83vw;
  }
  .testimonial .testimonial_div .test_box h5, .testimonial .testimonial_div .test_box2 h5 {
    font-size: 1.611vw;
    margin-bottom: 0;
  }
  .testimonial .testimonial_div .test_box .test_position {
    margin-bottom: 1.464vw;
    font-size: 1.11vw;
  }
  .testimonial .testimonial_div .test_box .test_desc {
    margin-bottom: 2.196vw;
    font-size: 1.318vw;
  }
  .testimonial .testimonial_div .test_box2 .test_position {
    font-size: 1.11vw;
  }
  .testimonial .testimonial_div .test_box2 .test_desc {
    font-size: 1.318vw;
  }
}

@media (max-width:1024px) {
  .testimonial .testimonial_div .test_box img, .testimonial .testimonial_div .test_box img {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .testimonial h2 {
    font-size: 35px;
    margin-bottom: 20px;
    line-height: 38px;
  }
  .testimonial .testimonial_div {
    flex-direction: column;
  }
  .testimonial .testimonial_div .test_box, .testimonial .testimonial_div .test_box {
    width: 100%;
    padding: 20px;
  }
  .testimonial .testimonial_div .test_box2 {
    width: 100%;
    border-right: none;
  }
  .testimonial .testimonial_div .test_box img, .testimonial .testimonial_div .test_box img {
    width: fit-content;
  }
  .testimonial .testimonial_div .test_box2 div img {
    width: fit-content;
    position: unset;
    transform: unset;
  }
  .testimonial .testimonial_div .test_box2 div h5, .testimonial .testimonial_div .test_box2 div .test_position, .testimonial .testimonial_div .test_box2 div .test_desc {
    opacity: 1;
    visibility: visible;
    transform: unset;
  }
  .testimonial .testimonial_div .test_box2 div:hover img {
    opacity: 1;
  }
  .testimonial .testimonial_div .test_box, .testimonial .testimonial_div .test_box2 div {
    border-right: none;
  }

  .testimonial .test_box {
    display: flex;
    flex-direction: column;
  }
  .testimonial .test_box img {
    order: 4;
  }
  .testimonial .test_box h5 {
    order: 1;
  }
  .testimonial .test_box .test_position {
    order: 2;
  }
  .testimonial .test_box .test_desc {
    order: 3;
  }
  .testimonial .testimonial_div .test_box .test_desc, .testimonial .testimonial_div .test_box2 .test_desc {
    margin-bottom: 20px;
  }
  .testimonial .testimonial_div .test_box .test_position {
    margin-bottom: 10px;
  }
  .testimonial .testimonial_div div {
    border-bottom: 1px solid #000;
  }
  .testimonial .testimonial_div div:last-child {
    border-bottom: none;
  }
  .testimonial .testimonial_div .test_box2 div:last-child {
    border-bottom: none;
  }
}