/* Montserrat fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');
/*===================== off line fonts End =======================*/
:root {
  --dark-blue: #13bcf4;
  --light-green: #d2f7e4;
  --light-gray: #dfdfdf;
  --gray: #ccc;
  --bg-color:#c8e2f9;
  --black:#000;
  --white:#fff;
  --footer-bg:#202c33;
  --menu-color:#202020;
  --input-filled:#2a3942;
  --orange:#ff4300;

}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  /* font-family: 'Montserrat', sans-serif; */
  font-family: 'Roboto Condensed';
  font-size: 18px;
  counter-reset: my-sec-counter;
  color: #24252E;
  line-height: 1.4;
  overflow-x: hidden;
  /* background-color: #f2f2f2; */
}
body.is-active {
  overflow-y: hidden !important;
}

h1,
h2,
h3,
h4,
h5,
h6{
  color: #334259;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
ul {
  margin-bottom: 0;
}
ul {
  margin-left: 0;
}
a,
a:hover {
  text-decoration: none;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
}
input:focus,
textarea:focus,
button:focus {
  box-shadow: none;
  border: none;
  outline: none;
}
.menu_listing>li>a,
.menu_listing>li>a:hover,
.menu_listing>li>a::after,
.menu_listing>li>a:hover::after {
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
}

/*==================== header css ===================*/
.header-wrapper {
  padding-top: 8px;
  padding-bottom: 8px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  z-index: 9999999;
  /* background-color: transparent; */
}
body .header-wrapper.sticky {
  box-shadow: 0px 8px 20px -4px rgb(128 128 128);
  -webkit-box-shadow: 0px 8px 20px -4px rgb(128 128 128);
  -moz-box-shadow: 0px 8px 20px -4px rgb(128 128 128);
  -ms-box-shadow: 0px 8px 20px -4px rgb(128 128 128);
  -o-box-shadow: 0px 8px 20px -4px rgb(128 128 128);
  padding-top: 15px;
  padding-bottom: 15px;
}
.main_logo {
  margin-bottom: 0;
  transition: all 0.4s ease;
}
.mobile_menu_icon {
  display: none;
}
.menu_listing>li>a {
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
}
.menu_listing>li>div>a,
.left-banner-sec a {
  background-color: var(--primary-color);
  border-radius: 5px;
  border: none;
  padding: 10px 30px;
  color: var(--primary-color);
  font-size: 17px;
  font-weight: 500;
  margin-left: 5px;
  display: inline-block;
}
.menu_listing>li>div>a:hover,
.left-banner-sec a:hover {
  box-shadow: 0 20px 38px rgba(0, 0, 0, .16) !important;
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
}
.menu_listing>li {
  padding-right: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
}
/* .menu_listing>li>a:hover::after,
.menu_listing>li>a.menu-item_active::after {
  width: 100%;
  left: 0;
  right: auto;
} */
.main_logo a {
  color: var(--white);
  font-weight: 600;
  font-size: 48px;
  text-transform: uppercase;
}
.home .main_logo a {
  font-weight: 600;
  color: var(--white);
  font-size: 48px;
  text-transform: uppercase;
}
.menu_listing>li>a::before{
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  /* background-color: #fff; */
  width: 2px;
  height: 100%;
}
/*============== mobile menu icon strat ===========*/
#hamburger-1 {
  float: left;
}
.hamburger .line {
  width: 30px;
  height: 3px;
  background-color: var(--dark-blue);
  display: block;
  margin: 4px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 999;
}
#hamburger-1 .line:nth-child(2) {
  display: block;
  width: 25px;
  margin-right: inherit;
}
#hamburger-1 .line:last-child {
  width: 20px;
  margin-right: inherit;
}
#hamburger-1.is-active .line:nth-child(1) {
  -webkit-transform: translateY(3px) rotate(45deg);
  -ms-transform: translateY(3px) rotate(45deg);
  -o-transform: translateY(3px) rotate(45deg);
  transform: translateY(3px) rotate(45deg);
}
#hamburger-1.is-active .line:nth-child(2) {
  display: none;
}
#hamburger-1.is-active .line:nth-child(3) {
  width: 30px;
  -webkit-transform: translateY(-4px) rotate(-50deg);
  -ms-transform: translateY(-4px) rotate(-50deg);
  -o-transform: translateY(-4px) rotate(-50deg);
  transform: translateY(-4px) rotate(-50deg);
}
.header-wrapper.active .menu_listing>li>a{
  color: #334259;
}
.header-wrapper.active{
  background-color: #fff;
}
.header-wrapper.active .main_logo a{
  color: #006b8d;
}
body.is-active .header-wrapper.active .menu_listing>li>a{
  color: #fff;
}

/*------------====== Footer Css End =======------------*/

/* back to top btn start */
#scroll {
  position: fixed;
  right: 30px;
  bottom: 30px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #006b8d;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px
}
#scroll span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -12px;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom-color: #ffffff;
}
#scroll:hover {
  background-color: #e74c3c;
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}
/* back to top btn end */

/* ================================================home page start====================================================== */
.mainsection{
  height: 100vh;
  background-color: #334259;
  background-image: url(../images/servicecontent.png);
  position: relative;
  background-size: contain;
}
.wavebg-img{
  position: absolute;
  bottom: 0px;
  width: 100%;
}
.bothside{
  display: flex;
  max-width: 1490px;
  height: 100vh;
  width: 100%;
  margin: auto;
  justify-content: space-between;
  padding-left: 15px;
  padding-right: 15px;
  align-items: center;
}
.rightside img{
  width: 100%;
}
h1.subheadinghearosection{
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
}
.leftside .mainheadingcompanyname{
  font-size: 65px;
  font-weight: 700;
  color: #ffffff;
}
.leftside{
  width: 30%;
}
.rightside{
  width: 50%;
}
.demo-btn:hover{
  background-color: unset;
  color: #fff;
}
.demo-btn{
  color: #000;
  padding: 8px 16px;
  background-color: white;
  font-size: 19px;
  border-radius: 7px;
  border: 1px solid #fff;
  transition: all 0.7s ease;
}
.btn-part{
  margin-top: 35px;
}

/* ======================================Boots your business section start========================= */

.boostbusiness{
  padding-top: 90px;
}
.boostpart{
  width: 100%;
  display: flex;
  align-items: center;
}

.boostpart-rightside,
.boostpart-leftside{
  width: 50%;
}
.boostpart-leftside{
  padding: 35px;
}
.boostpart-leftside p{
  font-size: 22px;
  padding-bottom: 23px;
}
.boostpart-leftside h2{
  color: #334259;
  font-size: 40px;
  font-weight: 700;
  padding-bottom: 25px;
}
.enquire-btn:hover{
  color: #006b8d;
  background-color: unset;
}
.enquire-btn{
  transition: all 0.7s ease;
  color: #fff;
  padding: 12px 33px;
  background-color: #006b8d;
  font-size: 19px;
  border-radius: 7px;
  border: 2px solid #006b8d;
  transition: all 0.7s ease;
}

/* ======================================Boots your business section start========================= */


/* ======================================unicroedition section start========================= */
.unicroedition{
  padding-top: 90px;
}
.unicroedition-title{
  font-size: 45px;
  text-align: center;
  font-weight: 700;
  padding-left: 15px;
  padding-right: 15px;
  color: #334259;
}
.editionbothside{
  display: flex;
  align-items:center;
  justify-content: center;
  margin-top: 55px;
  padding-left: 15px;
  padding-right: 15px;
}
.edition-leftside img{
  /* filter: brightness(0); */
  width: 100%;
}
.edition-rightside ul{
  padding-left: 120px;
}
.edition-rightside ul li p{
  font-size: 22px;
  font-weight: 500;
}
.edition-rightside ul li i{
  position: absolute;
  top: 10%;
  left: -45px;
}
.edition-rightside ul li{
  position: relative;
  list-style-type: none;
  font-weight: 700;
  padding-bottom: 25px;
  font-size: 30px;
}
/* ======================================unicroedition section end========================= */


/* ======================================ourserverice section start========================= */
.ourserverice{
  padding: 90px 0;
  margin-top: 40px;
  background-color: #2F7CA7;
}
.ourserverice .unicroedition-title{
  color: #fff;
}
.mainservicepart{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 45px;
  align-items: stretch;
  justify-content: center;
}
.service-listing-box{
  background-color: #fff;
  padding: 30px;
  max-width: 487px;
  width: 100%;
  border-radius: 18px;
  position: relative;
}
.service-listing-box img{
  width: 100%;
  max-width: 40px;
  filter: invert(1);
}
.service-listing-box p{
  line-height: 1.5;
}
.service-listing-box h3{
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  padding-left: 12px;
}
.lernmore-btn{
  /* position: absolute;
  bottom: 15px;
  left: -5px; */
  background-color: #2F7CA7;
  padding: 6px 19px;
  color: #000;
  margin-top: 10px;
  display: inline-block;
  border-radius: 5px;
  border: 2px solid #2F7CA7;
  transition: all 0.7s ease;
}
.lernmore-btn:hover{
    background-color: unset;
    color: #000;
}

 /* .service-listing-box:before {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  background-color: #2F7CA7;
  width: 130px;
  height: 62px;
  border-radius: 9px 0 0 0;
}  */
/* ======================================ourserverice section end========================= */

/* ======================================why-section section Start========================= */

.why-section{
  padding-top: 100px;
}
.customerppart{
  display: flex;
  width: 100%;
  align-items: center;
}
.customerpdetails h2{
  font-weight: 700;
  padding-bottom: 15px;
  font-size: 45px;
}
.why-heading{
  padding-bottom: 25px;
}
.customerpdetails,
.manufacture-part{
  width: 50%;
}
.manufacture-part{
  text-align: center;
}
.manufacture-part img{
  width: 100%;
  max-width: 450px;
}
.customerpdetails{
  padding: 0 25px;
}

/* ======================================why-section section end========================= */


/* ======================================features-section section start========================= */
.features-section{
  padding-top: 90px;
  position: relative;
}
.border-shap{
  position: absolute;
  bottom: 0%;
  left: 2%;
  border: 25px solid #2F7CA7;
  width: 150px;
  height: 140px;
  border-radius: 50%;
  animation-name: flip-horizontal;
  animation-duration: 8.2s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
}
@keyframes flip-horizontal {
    
  0% {
    transform:rotateX(0);
  }
  100% {
    transform:rotateX(-180deg);
  }
}
.features-titledetails h2{
  padding-bottom: 15px;
}
.features-titledetails p{
  text-align: center;
  padding: 0 15px;
  margin-bottom: 35px;
  font-size: 25px;
}
.features-part{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 22px;
}
.features-details p{
  font-size: 16px;
  line-height: 25px;
  color: #000;
  transition: all 0.5s;
}
.features-details h3{
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 10px;
  word-wrap: break-word;
}
.features-details::before{
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  background-color: #2F7CA7;
  width: 100%;
  height: 4%;
  border-radius: 6px;
  border: 1px solid #2F7CA7;
  transition: all 0.7s;
  z-index: -1;
}
.features-details:hover h3,
.features-details:hover p{
  color: #fff;
}
.features-details:hover::before{
  height: 100%;
  top: 0;
}
.features-details{
  max-width: 330px;
  width: 100%;
  padding: 23px;
  border: 1px solid #2F7CA7;
  border-radius: 6px;
  position: relative;
}

/* ======================================features-section section end========================= */
/* ======================================banner-section section start========================= */

.banner-section{
  padding: 90px 0;
  background-color: #334259;
  margin: 35px 0;
}
.banner-details{
  background: #fff;
  padding: 45px 5px;
  border-radius: 12px;
  background-image: linear-gradient(90deg, rgb(0 107 141) -1.3px, rgba(0, 0, 0, 0) 0px), linear-gradient(rgb(0 107 141) 0px, rgba(0, 0, 0, 0) 0.6px);
  background-size: 1px 26px;
  border: 1px dashed transparent;
}
.banner-details h2{
  font-weight: 700;
  padding-bottom: 15px;
  font-size: 45px;
}
.schedule-btn,
.banner-details h2{
  text-align: center;
}
.schedule-btn a:hover{
    background-color: unset;
    color: #006b8d;
}
.schedule-btn a{
  padding: 11px 35px;
  background-color: #006b8d;
  color: #fff;
  border-radius: 6px;
  margin-top: 9px;
  display: inline-block;
  font-size: 21px;
  border: 2px solid #006b8d;
}
/* ======================================banner-section section end ========================= */



/* ======================================footer section start========================= */
.footer-part{
  position: relative;
}
.footer {
  background-color: #000;
  color: white;
  padding: 63px 0 6px 0;
}
.border-green {
  width: 90px;
  border-bottom: 2px solid #006b8d;
}
.title {
  text-transform: uppercase;
  margin-bottom: 13px;
  font-size: 47px;
  color: #fff;
}
.btn-primary {
  background-color: #fff;
  border-color: #fff;
  padding: 9px 15px;
  color: #000;
  transition: all 0.7s;
}
.btn-primary:hover {
  color: #fff;
  background-color: #006b8d;
  border-color: #006b8d;
}
.btn-outline-light {
  padding: 11px 16px;
}
.btns {
  padding: 11px 12px;
}
.link {
  color: #fafafa;
  text-decoration: none;
  width: 100%;
  display: inline-block;
}
.link:hover {
  color: #fafafa;
}
.buttons {
  margin: 18px 0;
}
.form-control {
  background-color: #000;
  border: 1px solid #6c757d;
}
.box1 p,
.box1 a{
  padding: 5px 0;
}
.desktop-btn{
  display: none;
}


/* ======================================footer section end========================= */




/* ===============================================Our Products and Services Start===================================================== */
.productservice{
  position: absolute;
  z-index: 1;
  top: 0;
}
.ourlistsection{
  position: relative;
  margin-top: 80px;
}
.OurProductsandServices img{
  width: 100%;
  height: 250px;
}
.productservice h2{
  font-size: 65px;
  padding: 90px 0;
  color: #fff;
  font-weight: 600;
}
.servicecontentdetails{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 65px;
}
.servicecontentleftside{
  width: 50%;
}
.servicecontentimg{
  width: 40%;
}
.servicecontentimg img{
  width: 100%;
  border-radius: 12px;
}
.header-wrapper.active .main_logo a{
  filter: invert(1);
}
.servicecontentleftside ul li a{
  color: #000;
  font-size: 22px;
  font-weight: 600;
  transition: all 0.6s ease;
}
.servicecontentleftside ul li a:hover{
  color: #334259;
}
.servicecontentleftside ul li {
  list-style-type: none;
  border-bottom: 1px solid #dfdfdf;
  padding: 12px 0;
}
.servicecontentleftside ul li a img{
  width: 100%;
  max-width: 31px;
  margin-right: 14px;
}
.bookdemo-btn a{
  color: #fff;
}
.bookdemo-btn{
  margin-top: 15px;
    background: #334259;
    display: inline-block;
    padding: 7px 25px;
    border-radius: 4px;
}
/* ===============================================Our Products and Services end===================================================== */









