@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  overflow-x: hidden !important;
}

:root {
  --blue: #233dff;
  --heading-fm: "PT Serif", serif;
}

/* ***************************************NAVBAR****************************************************** */
header{
  text-align: center;
  font-family: var(--heading-fm);
  font-weight: 600;
  background-color: #233dff;
  padding: 10px;
}
.header_icons{
  color: white;
  font-size: larger;
  padding: 10px 0px;
  
}

.center-class {
  overflow: hidden;
}

.logo_img {
  width: 13vw;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #f6f6f6;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.13);
  padding: 10px 4%;
  height: 12vh;
}

.links {
  display: flex;
  margin: 0;
  padding: 0;
}

.navLink {
  list-style: none;
  display: flex;
  align-items: center;
}

.navLink a {
  padding: 5px 20px;
  text-decoration: none;
  color: black;
  margin: 0 5px;
  position: relative;
}

.navLink :hover {
  transition: 0.1s ease-in-out;
  background: var(--blue);
  border-radius: 5px;
  color: white !important;
  cursor: pointer;
}

.callBtn button {
  background: white;
  color: black;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.13);
  border: none;
  padding: 10px 25px;
  border-radius: 10px;
  cursor: pointer;
}

.callIcon {
  margin-right: 5px;
  width: 1.5vw;
}

.active a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 80%;
  border-radius: 5px;
  border-bottom: #3665c1 2px solid;
  color: white !important;
  cursor: pointer;
}

/* *******************************************************MOBILE NAVBAR************************************************* */
.mobile_container {
  display: none;
}

.mobile_container .header_mobile {
  position: fixed !important;
  display: block;
  top: 0;
  left: 0;
  overflow-x: hidden !important;
  z-index: 999;
}

.content {
  padding: 40px 5% 20px;
  text-align: justify;
  max-height: 100%;
  color: #333;
  overflow-y: scroll;
}
.footer_icon{
  font-size:xx-large;
  margin-right: 10px;
}
.content img {
  width: 100%;
  position: relative;
  display: block;
  margin: 40px auto 30px;
}

/* End container/placeholder */

/* Menu header_mobile */
.header_mobile {
  background: #ffffff;
  overflow: hidden !important;
  height: 15vh;
  width: 100%;
  z-index: 1;
  position: fixed !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease-out, background 1s ease-out;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.13);
}

.header_mobile.menu-open {
  height: 100%;
  background: var(--blue);
  transition: all 0.45s ease-out, background 0.8s ease-out;
}

/* Menu List items */
.mobile-menu {
  clear: both;
  display: flex;
  justify-content: end;
  align-items: center;
  height: 100vh;
}

.header_mobile ul.menu {
  position: relative;
  margin-bottom: 40vw;
  padding: 0px 40px 0;
  list-style: none;
}

.header_mobile ul.menu li.menu-item a {
  display: block;
  position: relative;
  color: #fff;
  text-align: right;
  text-decoration: none;

  line-height: 2.8;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}

.header_mobile ul.menu li.menu-item {
  margin-top: 5px;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99),
    -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99),
    opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99),
    opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99),
    -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

.header_mobile ul.menu li.menu-item:nth-child(1) {
  transition-delay: 0.35s;
}

.header_mobile ul.menu li.menu-item:nth-child(2) {
  transition-delay: 0.3s;
}

.header_mobile ul.menu li.menu-item:nth-child(3) {
  transition-delay: 0.25s;
}

.header_mobile ul.menu li.menu-item:nth-child(4) {
  transition-delay: 0.2s;
}

.header_mobile ul.menu li.menu-item:nth-child(5) {
  transition-delay: 0.15s;
}

.header_mobile ul.menu li.menu-item:nth-child(6) {
  transition-delay: 0.1s;
}

.header_mobile ul.menu li.menu-item:nth-child(7) {
  transition-delay: 0.05s;
}

.header_mobile.menu-open ul.menu li.menu-item {
  opacity: 1;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(1) {
  transition-delay: 0.05s;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(2) {
  transition-delay: 0.1s;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(3) {
  transition-delay: 0.15s;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(4) {
  transition-delay: 0.2s;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(5) {
  transition-delay: 0.25s;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(6) {
  transition-delay: 0.3s;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(7) {
  transition-delay: 0.35s;
}

.hamburger {
  color: #000000;
}

/* Menu Icon */
.icon-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  cursor: pointer;
  font-size: 5vw;
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

.icon-container #menuicon {
  width: 20px;
  height: 10px;
  position: relative;
  display: block;
  margin: -4px auto 0;
  top: 50%;
}

.closed {
  display: none;
}

#menuicon .bar {
  width: 100%;
  height: 1px;
  display: block;
  position: relative;
  background: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

#menuicon .bar.bar1 {
  -webkit-transform: translateY(0px) rotate(0deg);
  transform: translateY(0px) rotate(0deg);
}

#menuicon .bar.bar2 {
  -webkit-transform: translateY(6px) rotate(0deg);
  transform: translateY(6px) rotate(0deg);
}

#menuicon .bar.bar3 {
  -webkit-transform: translateY(12px) rotate(0deg);
  transform: translateY(12px) rotate(0deg);
}

.menu-open .closed {
  display: block;
  float: right;
  color: #fff;
}

.menu-open .icon-container .hamburger {
  display: none;
}

.menu-open .logo {
  display: none !important;
  transition: all 0.5s ease;
}

.menu-open .icon-container #menuicon .bar {
  transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0.1s;
}

.menu-open .icon-container #menuicon .bar.bar1 {
  -webkit-transform: translateY(4px) rotate(45deg);
  transform: translateY(4px) rotate(45deg);
}

.menu-open .icon-container #menuicon .bar.bar2 {
  -webkit-transform: translateY(3px) rotate(-45deg);
  transform: translateY(3px) rotate(-45deg);
}

.mobile_pallete {
  height: 15vh;
}

.logo {
  transition: all 0.5s ease;
}

/* ****************************************HOME******************************************* */
.sliders {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  margin-top: 1%;
  height: 85vh !important;
  border-radius: 50px;
  box-shadow:inset 0px 0px 0px 2000px #200d160a;
}

.slick-prev,
.slick-next {
  background: none;
  border: none;
  position: absolute;
  top: 14%;
  transform: translateY(-50%);
  z-index: 1;
}

.slick-prev {
  right: 200px;
}

.slick-next {
  right: 90px;
}

.slick-prev img,
.slick-next img {
  width: 40px;
  height: 40px;
}

.slider_text {
  font-size: larger;
  visibility: hidden;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  color: transparent;
  background: transparent;
  border: none;
}

.slick-dots li {
  margin: 0 6px;
}

.slick-dots li button:before {
  content: '';
  display: block;
  width: 10px;
  height: 6px;
  background-color: white;
  border-radius: 4px;
  transition: all 1s ease;
  opacity: 0.5;
}

.slick-dots li.slick-active button:before {
  width: 30px;
  opacity: 1;
  background-color: white;
}

.Slider-container .slick-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  color: transparent;
  transform: translateX(-50%);
  display: flex !important;
  justify-content: center;
  align-items: center;
}


.glassmorphism {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 2%;
}

.slider_head {
  font-family: var(--heading-fm);
  font-weight: 600;
  font-size: calc(1.375rem + 2vw);
}

.homeaboutContainer {
  padding: 3% 0px;
}

.home-about-container {
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.13);
  padding: 2%;
  border-radius: 15px;
}

.home-about-container2 {
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, .2);
  padding: 2%;
  border-radius: 20px;
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home-about-para {
  /* line-height: 3vw; */
  font-size: larger;
}

.aboutImg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: start;
  height: 30vh;
  border-radius: 15px;
}

.aboutImg2 {
  width: 100%;
  height: 55vh;
  object-fit: cover;
  border-radius: 50px;
}

.productContainer {
  position: relative;
  padding: 3% 0;
}

.productsBigSlider {
  height: 60vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.productSmallContainer {
  position: absolute;
  bottom: 7%;
  right: -10%;
  width: 100%;
  display: flex;
  justify-content: end;
}
.solution_images{
  height: 20vw;
  width: 100%;
  object-fit: cover;
}

.productsSmallSlider {
  width: 20%;
  min-width: 200px;
}

.productsSmallSliderImg {
  background-repeat: no-repeat;
  height: 55vh;
  background-size: contain;
}

.serviceImg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 22vw;
  height: 27vw;
}

.serviceImg_head {
  background-color: rgb(255 255 255 / 78%);
  color: black !important;
  border-radius: 15px;
  width: 80%;
  padding: 2%;
}

.serviceArrow {
  width: 3vw;
}

.knowmoreBtn {
  border: 1px solid #000000ab;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 20px;
  background-color: #fff;
}

.knowmoreBtn a {
  text-decoration: none;
  color: black;
}

.solutionImg {
  box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.23);
  padding: 4%;
  border-radius: 15px;
}

.solutionImg img {
  width: 18vw;
}

.solutionImg_head {
  margin-top: 10px;
  font-weight: 600;
}

.discoverCard {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 35vh;
  border-radius: 15px;
  overflow: hidden;
}

.discover-para {
  width: 60%;
}

.underlineHeader {
  font-family: var(--heading-fm);
  font-weight: 600;
  position: relative;
}

.underlineHeader::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 40px;
  height: 2px;
  background-color: #233dff;
  transition: all 0.3s ease-in-out;
}

.discoverHead {
  font-family: var(--heading-fm);
  font-weight: 600;
}

/* ****************************************FOOTER******************************************* */
.footer-content {
  width: 100%;
  display: flex;
  justify-content: space-around;
  color: white;
  background-color: #233dff;
  margin-top: 1%;
}

.footer-logo-container {
  background-color: #fff;
  height: 12vw;
  border-bottom-right-radius: 100%;
}

.footer-menu {
  color: white;
  text-decoration: none;
}

.footer-links-parent {
  padding: 2% 0px;
}

.footer-ul {
  padding: 0;
}

.footer_logo_img {
  width: 15vw;
  margin-top: 5%;
}

.footer-ul li {
  list-style: none;
  padding: 1vh;
}

.link_all {
  color: inherit;
  text-decoration: none;
}

.link_all:hover {
  color: inherit;
  text-decoration: none;
}

.footer_link {
  margin-top: 3%;
  text-align: left;
}

.sitemap_head {
  color: white;
  font-weight: 700;
  text-decoration: underline;
  padding-bottom: 1px;
  font-family: var(--heading-fm);
}

.bottomslg_footer {
  text-align: left;
  width:80%;
}

.footer_logo {
  width: 10vw;
}

.footer_end {
  border-top: 2px solid rgb(255, 255, 255);
}

.footerend_parra {
  padding: 20px;
  text-align: center;
}

.footer_para {
  text-align: justify;
}

/* **************************************CONTACT***************************************** */
.form-control {
  border-top: none;
  border-left: none;
  border-right: none;
}

.form-control:focus {
  border-color: none;
  box-shadow: none;
}

.form-label {
  padding: 3% 1.5%;
}

.map{
  width: 100%;
  height: 40vw;
}

button:disabled{
  cursor: not-allowed;
}

/* ****************************************About******************************************* */
.bannerImg {
  width: 100%;
  height: 70vh;
  background-position: center;
  background-repeat: no-repeat !important;
  background-size: cover;
  display: flex;
  justify-content: start;
  align-items: center;
  border-radius: 50px;
box-shadow:inset 0px 0px 0px 2000px #200d160a !important;
}
.bannerImg1 {
  width: 100%;
  height: 60vh;
  background-position: center;
  background-repeat: no-repeat !important;
  background-size: cover;
  display: flex;
  justify-content: start;
  align-items: center;
  border-radius: 50px;
box-shadow:inset 0px 0px 0px 2000px #200d160a !important;
}

.banner-text {
  padding: 2%;
}

/* *************************************Discorver**************************************** */
.borderedContainer {
  border-radius: 15px;
  border: 1px solid #233dff;
  padding: 3%;
  height: auto;
}

.borderedContainerTop {
  border-top: 1px solid #233dff;
  border-bottom: 1px solid #233dff;
  padding: 3%;
  height: auto;
}

.borderedcontentlist {
  padding: 3%;
}

.boldText {
  font-weight: 600;
}

/* ****************************************PRODUCT******************************************* */
.gray-bg {
  background-color: #f9f9f9;
  border: .5px solid #0000004d;
}

.rightBorder {
  border-right: .5px solid #0000004d;
}

.bottomborder {
  border-bottom: .5px solid #0000004d;
}

.rightBorderNew {
  border-right: .5px solid #0000004d;
  height: 100%;
}

.tabButton {
  position: relative;
  border: none;
  background-color: transparent;
  color: black;
  text-decoration: none;
  cursor: pointer;
  margin: 0px 20px;
  padding: 5px 0px;
}

.tabButtonRight {
  position: relative;
  border: 1px solid #0000004d;
  background-color: transparent;
  color: black;
  text-decoration: none;
  outline: none;
  margin: 1% 5px;
  cursor: pointer;
  padding: 10px 15px;
  text-align: center;
  border-radius: 10px;
}

.tabButton:focus {
  border: none !important;
  outline: none !important;
}

.tabButtonRightActive {
  background-color: #e7f4ff;
  border-radius: 10px;

  font-weight: 500;
  padding: 10px 15px;
  cursor: pointer;
  /* border: 1px solid #0000004d !important; */

}
.subtab,
[id$='-content'] {
  display: none;
}
.button_active {
  background-color: #e7f4ff;
  border-radius: 10px;

  font-weight: 500;
  padding: 10px 15px;
  cursor: pointer;
}

.tabActive::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  height: 3px;
  width: 100%;
  border-radius: 5px;
  border-bottom: #3665c1 2px solid;
  color: white !important;
  cursor: pointer;
}

.productPara {
  line-height: 1.7;
  text-align: justify;
}

.esp-box {
  border: 2.25vw black;
  box-sizing: border-box;

}

.productCard {
  border: .2px solid #00000007;
  border-radius: 10px;
  padding: 20px 20px;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.13);
  margin-top: 10px;
}

.img-alter {
  width: 13.35vw;
  height: 13.48vw;
}
.solutionImg_para{
  margin-bottom: 0 !important;
}
.highFrequency-img {
  width: 30%;
  height: auto;
  max-width: 200px;
}

.midFrequency-img {
  width: 90%;
  max-width: 300px;
  height: auto;
}

.esp-img {
  width: 90%;
  max-width: 600px;
}

.egimi-img {
  width: 100%;
  max-width: 600px;
  border-radius: 8%;
  height: 30vw;
  object-fit: cover;
}

.titleBoxes {
  padding: 1vw;
  height: auto;
}

.tabcontainer {
  display: none;
}
 .contactuss{
  text-decoration: none;
  }
  .contactussButton{
    background-color: #233dff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
  }

/* ****************************************TAB******************************************* */
@media screen and (max-width: 990px) {
  .nav {
    display: none;
  }


  .mobile_container {
    display: block;
    margin-bottom: 12vh;
  }

  .logo {
    width: 10vw;
  }

  .mobile_logo {
    width: 10vw;
  }
.solution_images{
  height: 30vw;
  width: 100%;
  object-fit: cover;
}


  .sliders {
    height: 100vh !important;
    margin-top: 5%;
  }

  .productContainer {
    display: none !important;
  }


  .serviceImg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 29vw;
    height: 40vw;
  }

  .solutionImg img {
    width: 35vw;
  }

  .bannerImg {
    height: 35vh;
    border-radius: 0px;
  }
  .bannerImg1 {
    height: 35vh;
    border-radius: 0px;
  }










  .footerLogoImg {
    width: 20vw;
    margin: 0px auto;
  }

  .footerPara {
    color: white;
    font-weight: 400;
    line-height: 3vw;
    text-align: center;
  }

  .Footer-container {
    background: var(--blue);
  }

  .footerMap {
    width: 100%;
    height: 25vw;
    border-radius: 5px !important;
  }

  .footerNavHeading {
    color: white !important;

  }

  .footerNavItem a,
  .footermail {
    text-decoration: none !important;
    color: white !important;

  }

  .footerBottomPara {
    color: white !important;
    margin: 0;

  }
}

/* ********************************************************RESPONSIVE MOBILE******************************************* */
@media screen and (max-width: 600px) {
  .logo {
    width: 25vw;
  }

  .sliders {
    height: 100vh !important;
  }
  .solution_images{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

  .icon-container {
    font-size: 10vw;
  }

  .serviceArrow {
    width: 12vw;
    margin-bottom: 10px;
  }

  .mobile_container {
    display: block;
    margin-bottom: 12vh;
  }

  .serviceImg {
    width: 100%;
    height: 80vw;
    margin-bottom: 10px;
  }

  .solutionImg img {
    width: 100%;
  }

  .discover-para {
    width: 100%;
  }

  .home-about-container2 {
    width: 100%;
  }

  .Slider-container .slick-dots {
    padding: 0;
    bottom: -8px;
  }
  .aboutImg {
    background-size: cover;
  }
  .footer-logo-container {
    background-color: #fff;
    height: 31vw;
    border-bottom-right-radius: 0%;
    width: 100%;
    margin-top: 21px;
  }
  .bannerImg {
    height: 25vh;
    border-radius: 0px;
  }
  .bannerImg1 {
    height: 25vh;
    border-radius: 0px;
  }
  .footer_logo_img {
    width: 25vw;
    margin-top: 10%;
  }


  .Footer-container {
    background: var(--blue);
  }

  .contactItemIcon {
    width: 7vw;
  }

  .footerLogoImg {
    width: 45vw;
  }

  .footerPara {
    line-height: 6vw;
  }

  .footerNavHeading {
    color: white;
  }

  .footerNavItem a,
  .footermail {
    text-decoration: none !important;
    color: white !important;
  }

 
}