article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-Light.ttf");
  font-weight: 300;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-Medium.ttf");
  font-weight: 500;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-Bold.ttf");
  font-weight: 700;
}

/* -----------Popppins--------------- */

@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins/Poppins-Light.ttf");
  font-weight: 300;
}

@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins/Poppins-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins/Poppins-Medium.ttf");
  font-weight: 500;
}

@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins/Poppins-Bold.ttf");
  font-weight: 700;
}

/* ---------Rajdhani------------- */
@font-face {
  font-family: "Rajdhani";
  src: url("../font/Rajdhani/Rajdhani-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Rajdhani";
  src: url("../font/Rajdhani/Rajdhani-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Rajdhani";
  src: url("../font/Rajdhani/Rajdhani-SemiBold.ttf");
  font-weight: 600;
}

@font-face {
  font-family: "Rajdhani";
  src: url("../font/Rajdhani/Rajdhani-Bold.ttf");
  font-weight: 700;
}

@font-face {
  font-family: "Rajdhani";
  src: url("../font/Rajdhani/Rajdhani-Bold.ttf");
  font-weight: 800;
}

:root {
  --font-poppins: "Poppins";
  --font-Rajdhani: "Rajdhani";
  --font-Roboto: "Roboto";

  --font-60: 60px;
  --font-40: 40px;
  --font-32: 32px;
  --font-30: 30px;
  --font-28: 28px;
  --font-26: 26px;
  --font-24: 24px;
  --font-20: 20px;
  --font-18: 18px;
  --font-16: 16px;
  --font-14: 14px;
  --font-12: 12px;

  --guard-blue: #1d5cab;
}

body {
  margin: 0;
  font-family: var(--font-Rajdhani);
  font-weight: 300;
  line-height: 1.5;
  background-color: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none !important;
}

.container {
  /* max-width: 1536px; */
  max-width: 90%;
}

.button_main {
  font-family: var(--font-poppins);
  font-size: var(--font-16);
  font-weight: 400;
  padding: 9px 53px;
  background: var(--guard-blue);
  border-radius: 5px;
  border: 2px solid var(--guard-blue);
  color: #ffffff;
}
.button_main:hover{
  background: transparent;
  color: var(--guard-blue);
}

.topics_botomborder {
  height: 3px;
  width: 56px;
  background: #36ba6f;
}

/* Header */

.header_mainsection .container .row{align-items: center;}

.header_mainsection {
  padding: 18px 0px;
}

.header_mainsection img {
  height: 45px;
}

.header_navlist ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-left: 0px;
  margin-bottom: 0px;
}

.header_navlist ul li a {
  font-family: var(--font-poppins);
  font-size: var(--font-14);
  font-weight: 400;
  color: #000000;
}
.header_navlist ul li a:hover{
  transition: 0.3s;
  color: #0052b4;
}
.header_mainsection .open_menubtn{
  border: none;
  background: transparent;
  display: none;
  margin-top: 6px;
}
.header_mainsection .open_menubtn img{
  height: 25px;
  width: 25px;
}

.menusidebar_navlist ul {
  list-style: none; 
  gap: 20px;
  padding-left: 0px;
  margin-bottom: 0px;
}
.menusidebar_navlist ul li{
  margin-bottom: 12px;
  font-size: 18px;
}
.menusidebar_navlist ul li a {
  font-family: var(--font-poppins);
  font-size: var(--font-14);
  font-weight: 400;
  color: #000000; 
}
.header_mainsection .menusidebar_navlist .button_main{
  margin-top: 25px;
}
.header_mainsection .offcanvas-start{
  width: 300px;
}

.header_navlist ul li:last-child a {
    font-family: var(--font-poppins);
    font-size: var(--font-16);
    font-weight: 400;
    padding: 9px 53px;
    background: var(--guard-blue);
    border-radius: 5px;
    border: 2px solid var(--guard-blue);
    color: #ffffff;
}

.header_navlist ul li:last-child a:hover{
  background: transparent;
  color: var(--guard-blue);
}



/* ------------ Banner ------- */
.banner_mainsection {
  padding: 15em 0;
  background-image: url("../../images/banner-bg1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.banner_mainsection h2 {
  font-size: var(--font-60);
  font-weight: 700;
  color: #ffffff;
  width: 40%;
  margin-bottom: 0px;
}
/*.banner_slide_row {
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
}*/

.banner_slide_row .banner_detail {
    margin-top: 20px;
}
/*.banner_mainsection .banner_detail {
  position: absolute;
  top: 32%;
  right: 12%;
  width: 22%;
}*/
.banner_mainsection .banner_detail h5 {
  font-size: var(--font-24);
  font-weight: 600;
  color: #ffffff;
}
.banner_mainsection .banner_detail p {
  font-family: var(--font-Roboto);
  font-size: var(--font-14);
  font-weight: 400;
  color: #eaf9fd;
}

.header_videoflexcontent {
  display: flex;
  align-items: end;
}
.bannervideopart {
  box-shadow: 0px 80px 232px 0px #0030793d;
  border: 2px solid;
  border-image-source: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 100%
  );
  padding: 32px;
  background: #fffffff2;
  border-radius: 24px;
  margin-bottom: -20px;
  z-index: 2;
  width: 50%;
  border: 2px solid var(--Effects-Stroke---Blur-Card, #fff);
  background: var(--effects-white-80, rgba(255, 255, 255, 0.8));
  box-shadow: 0px 80px 232px 0px rgba(0, 48, 121, 0.24);
  backdrop-filter: blur(40px);
}
.bannervideopart h3 {
  font-size: var(--font-30);
  font-weight: 600;
  color: #0052b4;
  text-align: center;
  margin-bottom: 10px;
}
.bannervideopart h6 {
  font-size: var(--font-20);
  font-weight: 600;
  text-align: center;
  color: #202636;
  margin-bottom: 25px;
}
.bannervideopart .video_part img{
  width: 100%;
}

.bannervideopart .video_part video#video {
  width: 100%;
  border-radius: 24px;
}

.video-container {
	/* width: 640px;
	border-radius: 4px;
	margin: 0 auto; */
	position: relative;
	/* display: flex;
	flex-direction: column;
	justify-content: center;
	box-shadow: 0px 8px 20px rgba(black, 0.4); */
}

.bannervideopart .play-button-wrapper {
	position: absolute;
	top: 30%;
	left: 42%;
	/* right: 0;
	bottom: 0;  */
}
.bannervideopart .play-button-wrapper img{
  height: 55px;
  width: 55px;
  cursor: pointer;
}


.header_videoflexcontent .videoright_content {
  background-image: url("../../images/baner_textbg.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: fit-content;
  padding: 25px 45px;
  width: 100%;
  margin-left: -10px;
  backdrop-filter: blur(36px);
}
.header_videoflexcontent .videoright_content p {
  width: 85%;
  font-family: var(--font-Roboto);
  font-size: var(--font-16);
  font-weight: 400;
  color: #ffffffcc;
}

/* ------------ About Us -------- */
.aboutsus_sectiomain {
  position: relative;
  padding-top: 80px;
  margin-bottom: 100px;
}

.aboutsus_sectiomain::after {
  background-image: url("../../images/light-blureffect.png");
  transform: rotate(180deg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  top: -30%;
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  /* width: 540px; */
  width: 440px;
  z-index: 2;
}

.aboutsus_sectiomain .abouts_flexpart {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.aboutsus_sectiomain .first_imgpart {
  width: 50%;
}
.aboutsus_sectiomain .first_imgpart img {
  width: 100%;
  border-radius: 24px;
  height: 480px;
    object-fit: cover;
}
.aboutsus_sectiomain .aboutus_topicarea {
  width: 50%;
  
}
.aboutsus_sectiomain .aboutus_topicarea h3 {
  font-size: var(--font-24);
  font-weight: 600;
  color: #202636;
  margin-bottom: 20px;
}
.aboutsus_sectiomain .aboutus_topicarea a {
  font-size: var(--font-16);
  font-weight: 600;
  color: #0052b4;
  display: flex;
  gap: 20px;
  align-items: center;
}

.aboutsus_sectiomain .aboutus_topicarea .bg_image {
  margin-top: 100px;
  width: 100%;
  border-radius: 24px;
}

.aboutsus_sectiomain .aboutus_topicarea .overlap_imgpart {
  position: relative;
  margin-bottom: 50px;
}

.aboutsus_sectiomain .aboutus_topicarea .overlap_imgpart .over_imgsection img {
  /* position: absolute;
  top: 38%;
  margin-left: -200px;  */
  height: 150px;
  width: 150px;
}
.aboutsus_sectiomain .aboutus_topicarea .overlap_imgpart .over_imgsection {
  position: absolute;
  top: 38%;
  margin-left: -190px;
  background: #0008169e;
  border-radius: 24px;
  padding: 40px 45px 40px 45px;
  text-align: center;
  backdrop-filter: blur(36px);
}
.aboutsus_sectiomain .aboutus_topicarea .overlap_imgpart .over_imgsection h5 {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
}

.aboutsus_sectiomain .aboutus_paragraph {
  width: 80%;
  padding-top: 20px;
}
.aboutsus_sectiomain .aboutus_paragraph p {
  font-family: var(--font-Roboto);
  font-size: var(--font-18);
  font-weight: 400;
  color: #737b8f;
}

/* ------- Services Section ------ */
.services_sectionmain {
  margin-bottom: 100px;
}
.services_sectionmain .heading_topic {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services_sectionmain .heading_topic h5 {
  font-size: var(--font-20);
  font-weight: 500;
  text-align: center;
  color: #36ba6f;
  margin-bottom: 8px;
}
.services_sectionmain .heading_topic h3 {
  font-size: var(--font-24);
  font-weight: 500;
  text-align: center;
  color: #202636;
  margin-bottom: 70px;
  margin-top: 16px;
}

.services_sectionmain .services_boxesflex {
  /* display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: space-between;
  margin-bottom: 140px; */
}
.services_sectionmain .service_cardsmain1{
  margin-bottom: 25px;
}

.services_sectionmain .services_card1 {
  padding: 22px 18px;
  background: #f6f6f6;
  /* width: calc(30% - 5px); */
  text-align: center;
  height: 100%;
  /* height: 450px; */
  height: 330px;
  /* margin-bottom: 25px; */
  min-height: 452px;
}
.services_sectionmain .services_card1:hover{
  transition: 0.3s ease-in-out;
  margin-top: -15px;
}
.services_sectionmain .services_card1 img {
  height: 56px;
  width: 56px;
  margin-bottom: 20px;
}
.services_sectionmain .services_card1 h5 {
  font-size: var(--font-20);
  font-weight: 600;
  margin-bottom: 20px;
}
.services_sectionmain .services_card1 p {
  font-family: var(--font-Roboto);
  font-size: var(--font-18);
  font-weight: 400;
  margin-bottom: 25px;
  min-height: 225px;
}

.services_card1 a{

  padding: 10px 20px 13px 20px;
  border-radius: 35px;
  font-size: 18px;
  text-align: center;
  margin: 0px;
  letter-spacing: 0px;
  margin-bottom: 25px;
  font-weight: 600;
}

.services_card1 .bluebtn {
  background: #0052b4;
  color: #f6f6f6;
  border: 2px solid #0052b4;
}
.services_card1 .bluebtn:hover {
  background: #f6f6f6;
  color: #0052b4;
  border: 2px solid #0052b4;
}

.services_card1 .whitebtn{
  background: #f6f6f6;
  color: #081f54;
  border: 2px solid #f6f6f6;
}

.services_card1 .whitebtn:hover{
  background: #081f54;
  color: #f6f6f6;
  border: 2px solid #f6f6f6;
}

.services_card1 .skybluebtn{
  background: #f6f6f6;
  color: #2a7bd9;
  border: 2px solid #f6f6f6;
} 

.services_card1 .skybluebtn:hover{
  background: #2a7bd9;
  color: #f6f6f6;
  border: 2px solid #f6f6f6;
}

/* ------------ Innertest Banner Mid Section ------- */
.innertext_bannermidsection {
  margin-bottom: 100px;
  position: relative;
}
.innertext_bannermidsection::after {
  background-image: url("../../images/green-effect1.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  top: 18%;
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  width: 280px;
  z-index: 2;
}
.innertext_bannermidsection::before {
  background-image: url("../../images/light-blureffect.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0%;
  content: "";
  height: 100%;
  position: absolute;
  left: 0;
  width: 265px;
  z-index: -1;
}

.innerbanner_bgimage {
  background-image: url("../../images/inner_banerbg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  /* padding-bottom: 160px; */
  padding: 0% 0% 10% 0%;
}

.innerbanner_contentpart {
  background: #00133799;
  padding: 55px 40px;
  border-radius: 24px;
  width: 48%;
  margin-left: 100px;
  backdrop-filter: blur(36px);
}
.innerbanner_contentpart h2 {
  font-size: var(--font-30);
  font-weight: 500;
  color: #fff;
}
.innerbanner_contentpart p {
  font-family: var(--font-Roboto);
  font-size: var(--font-16);
  font-weight: 400;
  color: #ffffffd9;
  margin-bottom: 28px;
}

.innerbanner_contentpart .learnmore_btn {
  background: #fff;
  font-size: var(--font-18);
  font-weight: 600;
  line-height: 32px;
  color: #0052b4;
  padding: 8px 8px 8px 28px;
  width: fit-content;
  border-radius: 100px;
  border: 4px solid #fff;
}
.innerbanner_contentpart .learnmore_btn:hover{
  transition: 0.3s;
  border-color: #0052b4;
}
.innerbanner_contentpart .learnmore_btn span {
  margin-right: 35px;
}

/* --------- Refernce Section --------- */
.reference_mainsection {
  margin-bottom: 100px;
}
.reference_mainsection .refrence_flexpart {
  display: flex;
  gap: 50px;
}
.reference_mainsection .left_sectionimg {
  width: 40%;
  position: relative;
}
.reference_mainsection .left_sectionimg img {
  width: 100%;
}
.reference_mainsection .left_sectionimg .second_img{
height: 200px;
}
.reference_mainsection .left_sectionimg .images_flexpart{
display: flex;
gap: 20px;
width: 100%;

}
.reference_mainsection .refeence_pointscards{
position: absolute;
bottom: 50px;
right: 0px;
width: 75%;
}
.reference_mainsection .refeence_pointscards .point_cards1{
  background: #FFFFFFCC;
  border: 2px solid #fff;
  padding: 10px 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-radius: 24px;
  margin-bottom: 20px;
  backdrop-filter: blur(36px);
  box-shadow: 0px 1px 11px 12px rgba(0, 0, 0, 0.01);
}
.reference_mainsection .refeence_pointscards .point_cards1 img{
height: 25px;width: 25px;
}
.reference_mainsection .refeence_pointscards .point_cards1 p{ 
  font-family: var(--font-Roboto);
  font-size: var(--font-16);
  font-weight: 400; 
  color: #202626;
  margin-bottom: 0;
}

.reference_mainsection .reference_rightcontent {
  width: 57%;
}
/* .reference_mainsection .reference_rightcontent .heading_topic {
  border-bottom: 2px solid #0a125412;
  padding-bottom: 22px;
} */
.reference_mainsection .reference_rightcontent .heading_topic h5 {
  font-size: var(--font-20);
  font-weight: 500;
  color: #36ba6f;
}
.reference_mainsection .reference_rightcontent .heading_topic h3 {
  font-size: var(--font-24);
  font-weight: 500;
  color: #202636;
  margin: 16px 0px 20px 0px;
}
.reference_mainsection .reference_rightcontent .heading_topic a {
  font-size: var(--font-16);
  font-weight: 600;
  color: #0052b4;
  display: flex;
  gap: 20px;
  align-items: center;
  border-bottom: 2px solid #0a125412;
    padding-bottom: 22px;
}
.reference_mainsection .reference_rightcontent p {
  font-family: var(--font-Roboto);
  font-size: var(--font-16);
  font-weight: 400;
  color: #737b8f;
  margin-top: 25px;
  margin-bottom: 0px;
}
.reference_mainsection .reference_rightcontent .referece-tabs{padding-top: 25px;}
.reference_mainsection .reference_rightcontent .referece-tabs .nav-link{
  font-size: var(--font-16);
  font-weight: 500;
  color: #0052b4;
  padding: 0 20px 0 0;
    border: 0;
    position: relative;
}
.reference_mainsection .reference_rightcontent .referece-tabs .nav-tabs{
  border: 0;
}
.reference_mainsection .reference_rightcontent .referece-tabs .nav-link.active{
  font-weight: 600;
 }
 .reference_mainsection .reference_rightcontent .referece-tabs .nav-link:before {
  content: '';
  position: absolute;
  bottom: -3px;
  width: 0%;
  height: 3px;
  background: #0052b4;
  transition: .3s ease;
}
.reference_mainsection .reference_rightcontent .referece-tabs .nav-link.active:before {
 
  width: 50%;
 
}

.reference_rightcontent .heading_topic .tab-content button.read-more-btn {
  border: none;
  background: none;
  /* color: blue; */
  font-size: var(--font-16);
  font-weight: 600;
  color: #0052b4;
}
/* -------------- Contact us section ---------- */

.contact_sectiontopmain {
  position: relative;
}
.contact_sectiontopmain:after {
  background-image: url("../../images/green-effect1.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  top: -20%;
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  /* width: 450px; */
  width: 220px;
  z-index: -2;
}
.contact_sectiontopmain:before {
  background-image: url("../../images/light-blureffect.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  top: 42%;
  content: "";
  height: 100%;
  position: absolute;
  left: 0;
  /* width: 500px; */
  width: 185px;
  z-index: -2;
}

.contactus_sectionmain {
  position: relative;
  /* margin-bottom: 100px; */
}

.contact_usbgpart {
  background-image: url("../../images/contact-usbg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  width: 65%;
  height: 740px;
  border-radius: 24px;
}

.leftcontact_detailpart {
  background: #00133799;
  padding: 64px 48px;
  border-radius: 0px 24px 24px 24px;
  position: absolute;
  bottom: -16%;
  left: 0px;
  width: 36%;
  background: rgba(0, 19, 55, 0.6);
  backdrop-filter: blur(36px);
}
.leftcontact_detailpart img {
  height: 64px;
  width: 64px;
}
.leftcontact_detailpart h4 {
  font-family: var(--font-Roboto);
  font-size: var(--font-20);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}
.leftcontact_detailpart p {
  font-family: var(--font-Roboto);
  font-size: var(--font-16);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0px;
}
.leftcontact_detailpart .detail_flexlist {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.contact_rightformaprt {
  padding: 56px;
  border: 2px solid;
  border-image-source: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow: 25px 26px 100px 0px #295f8314;
  position: absolute;
  right: 0px;
  bottom: -14%;
  width: 60%;
  border-radius: 24px;
  z-index: 100;

  border: 2px solid #fff;
  background: var(--effects-white-80, rgba(255, 255, 255, 0.8));
  box-shadow: 25px 26px 100px 0px rgba(41, 95, 131, 0.08);
  backdrop-filter: blur(33px);
}
.contact_rightformaprt h3 {
  font-size: var(--font-24);
  font-weight: 500;
  margin-bottom: 16px;
}

.contact_rightformaprt p {
  font-family: var(--font-Roboto);
  font-size: var(--font-18);
  font-weight: 400;
  color: #737b8f;
  margin-bottom: 40px;
}
.contact_rightformaprt .inputfield_flex {
  display: flex;
  gap: 24px;
  align-items: center;
}
.contact_rightformaprt input {
  padding: 16px 30px;
  background: #ffffffcc;
  border: none;
  outline: none;
  font-family: var(--font-Roboto);
  font-size: var(--font-16);
  font-weight: 400;
  color: #737b8f;
  margin-bottom: 24px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0px 4px 100px 0px #0756c714;
}
.contact_rightformaprt textarea {
  padding: 16px 30px;
  background: #ffffffcc;
  border: none;
  outline: none;
  font-family: var(--font-Roboto);
  font-size: var(--font-16);
  font-weight: 400;
  color: #737b8f;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0px 4px 100px 0px #0756c714;
}
.contact_rightformaprt .formsend_btn {
  background: #0052b4;
  padding: 8px 8px 8px 28px;
  border-radius: 100px;
  width: fit-content;
  font-size: var(--font-18);
  font-weight: 600;
  text-align: left;
  color: #ffffff;
  margin-top: 30px;
  border:none;
  border: 4px solid #0052b4;
  display: flex;
  align-items: center;
  gap: 10px;

}
.contact_rightformaprt .formsend_btn:hover{
transition: 0.3s;
background: #fff;
color: #0052b4;
}
.contact_rightformaprt .formsend_btn:hover rect{
  transition: 0.3s;
fill: #0052b4;
/* stroke: #fff; */
}
.contact_rightformaprt .formsend_btn:hover path{
  transition: 0.3s;
/* fill: red; */
stroke: #fff;
}

/* ------------- Footer Section ------- */
.footer_sectionmain {
  margin-top: 250px;
}
.footer_sectionmain img {
  margin-bottom: 26px;
  height: 45px;
}
.footer_sectionmain p {
  font-family: var(--font-Roboto);
  font-size: var(--font-16);
  font-weight: 400;
  color: #737b8f;
  margin-bottom: 12px;
}
.footer_sectionmain a:hover p{
  transition: 0.3s;
  color: #0052b4;
}
.footer_sectionmain h6 {
  font-family: var(--font-Roboto);
  font-size: var(--font-18);
  font-weight: 500;
  color: #737b8f;
  margin-bottom: 24px;
}
.footer_sectionmain .footer_copyright_part {
  margin-top: 60px;
  margin-bottom: 40px;
}
.footer_sectionmain .footer_endflex {
  display: flex;
  gap: 40px;
  align-items: center;
  /* justify-content: space-between; */
}

/* ---------- Our Solution Section --------- */
.oursolution_mainsection {
  margin-bottom: 20px;
}
.oursolution_mainsection .heading_topic {
  width: 53%;
}
.oursolution_mainsection .heading_topic h5 {
  font-size: var(--font-20);
  font-weight: 500;
  color: #36ba6f;
  margin-bottom: 8px;
}
.oursolution_mainsection .heading_topic h3 {
  font-size: var(--font-24);
  font-weight: 500;
  color: #202636;
  margin-bottom: 32px;
  margin-top: 16px;
}
.oursolution_mainsection .heading_topic a {
  font-size: var(--font-16);
  font-weight: 600;
  color: #0052b4;
  display: flex;
  gap: 20px;
  align-items: center;
}
.oursolution_mainsection .oursolution_bgimage {
  background-image: url("../../images/our-solutionbg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  /* height: 720px; */
  padding: 0% 0% 24% 0%;
  position: relative;
}
.oursolution_mainsection .oursolution_para {
  font-family: var(--font-Roboto);
  font-size: var(--font-18);
  font-weight: 400;
  color: #ffffffa6;
  position: absolute;
  bottom: 20%;
  width: 32%;
  left: 10%;
}
 
.oursolution_mainsection .automatestrung_box {
  box-shadow: 0px 80px 232px 0px #0030793D;
  border: 2px solid;
  border-image-source: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  background: #FFFFFFCC;
  position: absolute;
  right: 0px;
  border-radius: 24px;
  text-align: center;
  padding: 35px 25px;
  backdrop-filter: blur(36px);
}
.oursolution_mainsection .automatestrung_box h5{ 
font-size: var(--font-20);
font-weight: 600; 
color: #202636;
margin-top: 12px;
}
 
.referencez_imgs{
  display: flex;
  gap: 20px;
  padding: 20px 0;
}
.referencez_imgs img{
  width: 23%;
  object-fit: cover;
  height: 155px;
}