@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=News+Cycle:wght@400;700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

* {
  margin: 0px;

  padding: 0px;

  outline: none;
}

ul {
  list-style: none;
}

ul li::marker {
  font-size: 14px;
}

a {
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
}

img {
  border: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
b,
strong,
ul,
li,
span,
ol {
  margin: 0px;

  padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "News Cycle" !important;
}

body {
  font-size: 15px;

  color: #000;

  font-family: "News Cycle" !important;

  box-sizing: border-box;

  overflow-x: hidden;
}

/** **************** **/

html {
  scroll-behvior: smooth;
}

::-webkit-scrollbar {
  -webkit-appearance: none;
}

::-webkit-scrollbar:vertical {
  width: 7px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;

  border: none;

  background-color: #7c797a;
}

::-webkit-scrollbar:horizontal {
  height: 7px;
}

::-webkit-scrollbar-track {
  background-color: rgba(239, 239, 239, 0.5);
}

/** **************** **/

.mt15 {
  margin-top: 15px;
}

.mb15 {
  margin-bottom: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mb25 {
  margin-bottom: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mb30 {
  margin-bottom: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mb40 {
  margin-bottom: 40px;
}

.ptb60 {
  padding-top: 60px;

  padding-bottom: 60px;
}

/** **************** **/

.align-center {
  align-items: center;
}

.container {
  max-width: 1000px;

  margin: 0 auto;
}

/** **************** **/

.header_menu .container {
  max-width: 100%;

  padding: 0 40px;
}

.fixed-top {
  position: relative;

  display: block;

  top: 0px;

  padding: 0px 0;

  background: #070707;

  border-top: 5px solid #ffc800;

  /*padding: 4px 0 2px;*/

  box-shadow: 0 2px 2px 0 rgb(0 0 0 / 15%);

  /* box-shadow:0px 0px 12px rgb(0 0 0 / 30%); */
}

.header-scrolled .logo {
  transition: all.5s ease;
}

.header-scrolled .scrollto img {
  width: auto;

  height: auto;

  transition: all.5s ease;
}

.logo {
  position: relative;

  transition: all.5s ease;

  /*box-shadow: 0 2px 2px 0 rgb(0 0 0 / 15%);*/

  margin-top: 8px;
  margin-bottom:8px;
}

/*.logo:after {

    content: "";

    position: absolute;

    background: #6865651f;

    height: 85px;

    width: 2px;

    right: -36px;

    top: -5px;

    z-index: -1;

}*/

.header-scrolled .logo:after {
  height: 78px;
}

.header-scrolled {
  position: fixed;

  padding: 0px 0;

  background: rgba(0, 0, 0, 0.9);

  box-shadow: 0 8px 20px 0 rgb(0 0 0 / 5%);
}

.scrollto img {
  width: auto;

  height: auto;

  transition: all.5s ease;
}

.main-nav {
  float: right;

  transition: all.3s ease-in-out;
}

.main-nav > ul {
  margin: 15px 0 0 0;

  display: flex;
}

.main-nav > ul > li {
  position: relative;

  white-space: nowrap;

  float: left;
}

.main-nav a {
  color: #fff;

  font-weight: 400;

  letter-spacing: 0.25px;

  position: relative;

  display: inline-block;

  font-size: 14px;

  padding: 28px 13px;
}

/*.main-nav ul li:after {

    position: absolute;

    bottom:0;

    left: 0;

	right:0;

	margin:0 auto;

    width: 90%;

    height: 2px;

    content: '';

    background-color: #d90d80;

    opacity: 0;

    transition: all 200ms linear;

}

.main-nav ul li:hover:after {

	bottom: 0px;

	opacity: 1;

}*/

.main-nav .drop-down ul li:after {
  display: none;
}

.main-nav li:last-child {
  /*border-right:0px;*/
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: #fff;

  background: #ffc800;

  text-decoration: none;
}

.main-nav .drop-down ul {
  display: block;

  position: absolute;

  left: 0px;

  top: calc(100% + 30px);

  z-index: 99;

  opacity: 0;

  visibility: hidden;

  transition: ease all 0.3s;

  padding: 10px;

  background-color: #070707;

  box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 10%);

  border: none;

  /* border-radius: 3px; */
}

.main-nav .drop-down:hover > ul {
  opacity: 1;

  top: 100%;

  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 220px;

  position: relative;
}

.main-nav .drop-down ul li {
  border-bottom: 1px solid #f4f4f72e;

  margin-top: 0px;
}

.main-nav .drop-down ul li:last-child {
  border-bottom: 0px;
}

.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}

.main-nav .drop-down ul li a {
  padding: 8px 5px;

  color: #fff;

  border-radius: 0px;

  font-weight: 500;

  transition: all 200ms linear;

  font-size: 14px;

  letter-spacing: 0.25px;

  text-transform: capitalize;

  font-family: "Lato", sans-serif;

  width: 100%;
}

.main-nav .drop-down ul li a span {
  color: #da1214;
}

.main-nav .drop-down ul li a:hover span {
  color: #fff;
}

.main-nav .drop-down ul li a span img {
  width: 20px;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
  color: #fff;

  background-color: #ffc800;
}

.main-nav .drop-down > a:after {
  content: "\f107";

  font-family: FontAwesome;

  padding-left: 5px;

  font-size: 14px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;

  left: calc(100% - 10px);
}

.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;

  top: 0;

  left: 100%;
}

.main-nav .drop-down .drop-down > a:after {
  content: "\f105";

  position: absolute;

  right: 15px;
}

/*******************/

.call_start {
  margin-left: 35px !important;

  margin-top: 2px;

  position: relative;
}

.call_start:after {
  content: "";

  position: absolute;

  top: 2px;

  left: -20px;

  width: 1px;

  height: 35px;

  background: #e3e3e3;
}

.call_tp {
  border-radius: 50px;

  padding: 5px 12px 5px 11px;

  margin-left: 15px;

  height: 43px;

  display: flex;

  background: #384777;

  border: 2px solid #384777;
}

.call_tp img {
  margin-right: 8px;

  width: 22px;

  height: 22px;

  margin-top: 4px;
}

.call_tp a {
  color: #fff;

  font-weight: 400;

  font-size: 14px;

  display: block;

  line-height: 15px;

  padding: 0px;
}

.call_tp a span {
  font-weight: 400;

  color: #292929;
}

.call_start a {
  padding-top: 6px;
}

.head-cont {
  position: relative;
}

.head-cont:after {
  content: "";

  position: absolute;

  left: 16px;

  bottom: 5px;

  width: 113px;

  height: 1px;

  background: #678fd5;
}

/*.head-cont:hover:after{

    background: #f9ad00;

}*/

.head-cont .pbmit-svg-arrow {
  stroke: #0a2540;

  width: 13px;

  height: 13px;

  fill: none;

  stroke-width: 2;

  stroke-miterlimit: 10;

  position: relative;

  bottom: -2px;

  left: 5px;
}

.head-cont .pbmit-svg-arrow line:nth-child(1) {
  stroke-dasharray: 25px;

  stroke-dashoffset: 50px;

  transition: stroke-dashoffset 0.5s cubic-bezier(0.61, 1, 0.88, 1);
}

.head-cont .pbmit-svg-arrow line:nth-child(2) {
  stroke-dasharray: 20px;

  stroke-dashoffset: 40px;

  transition: stroke-dashoffset 0.6s cubic-bezier(0.61, 1, 0.88, 1) 0.3s;
}

.head-cont .pbmit-svg-arrow line:nth-child(3) {
  stroke-dasharray: 20px;

  stroke-dashoffset: 40px;

  transition: stroke-dashoffset 0.6s cubic-bezier(0.61, 1, 0.88, 1) 0.3s;
}

.head-cont:hover svg line {
  stroke-dashoffset: 0 !important;

  stroke: #678fd5;
}

/** *************** **/

.mobile-nav {
  position: fixed;

  top: 0;

  bottom: 0;

  z-index: 9999;

  overflow-y: auto;

  left: -260px;

  width: 260px;

  padding-top: 18px;

  background: #416b9d;

  transition: 0.4s;
}

.mobile-nav a {
  display: block;

  color: #fff;

  padding: 10px 20px;

  font-weight: 600;

  font-size: 13px;

  letter-spacing: 1px;

  text-transform: uppercase;

  position: relative;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #fbbc00;

  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\f078";

  font-family: FontAwesome;

  padding-left: 10px;

  position: absolute;

  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;

  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: absolute;

  right: 0;

  top: 0;

  z-index: 9998;

  border: 0;

  background: none;

  font-size: 24px;

  transition: all 0.4s;

  outline: none;

  line-height: 1;

  cursor: pointer;

  text-align: right;
}

.mobile-nav-toggle i {
  margin: 0px 0px 0 0;

  color: #004289;
}

.mobile-nav-overly {
  width: 100%;

  height: 100%;

  z-index: 9997;

  top: 0;

  left: 0;

  position: fixed;

  background: rgba(19, 39, 57, 0.8);

  overflow: hidden;

  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/** **************** **/

.hm-banner {
  background: url(../images/banner.jpg);

  background-repeat: no-repeat;

  background-position: 50% 82.32%;

  background-size: 100%;

  background-color: transparent;

  background-size: cover;

  padding: 120px 0 93px;

  text-align: center;
}

.hm-banner-head h2 {
  color: #fbbc00;

  word-spacing: 0.1em;

  font-family: "Rubik", sans-serif !important;

  font-weight: 800;

  line-height: 45px;

  font-size: 2.2rem;

  margin-bottom: 30px;
}

.hm-banner-head h2 span {
  display: block;
}

.hm-banner-head h1 {
  color: #fff;

  font-family: "Lato", sans-serif;

  font-weight: 600;

  font-size: xxx-large;

  margin-bottom: 30px;
}

.hm-banner-head ul {
  display: flex;

  justify-content: center;

  align-items: center;
}

.hm-banner-head ul li {
  background: #ffc800;

  color: #ffffff !important;

  display: block;

  height: auto;

  padding: 12px 15px;

  /*width: 23%;*/

  margin: 0 1.1%;

  border-radius: 4px;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  white-space: normal;

  font-family: "Lato", sans-serif;

  font-size: 14px;

  font-weight: 700;

  line-height: normal;

  -webkit-transition: all 500ms ease;

  -moz-transition: all 500ms ease;

  -ms-transition: all 500ms ease;

  -o-transition: all 500ms ease;

  transition: all 500ms ease;

  height: 75px;

  cursor: pointer;
}

.hm-banner-head ul li:hover {
  background: #e6b400;
}

/*-----------------*/

.hm-about {
  background: #fcc300;

  padding-top: 40px;

  padding-bottom: 40px;
}

.hm-about-head {
  text-align: center;

  padding-bottom: 15px;

  border-bottom: 1px solid #dcab01;

  margin-bottom: 30px;
}

.hm-about-head h2 {
  line-height: 33px !important;

  color: #2a2a2a !important;

  font-family: "News Cycle" !important;

  font-style: normal !important;

  text-transform: uppercase !important;

  letter-spacing: 0px !important;

  margin-bottom: 30px;
}

.hm-about-head h2 span {
  padding: 10px;
}

.hm-automate span {
  text-align: center;

  display: block;

  font-size: 21px;

  color: #2a2a2a;

  font-family: "News Cycle" !important;

  font-weight: 600 !important;

  text-transform: uppercase !important;

  letter-spacing: 0px !important;

  margin-bottom: 15px;
}

.hm-automate p {
  line-height: 21px;

  color: rgb(42, 42, 42);

  font-family: "News Cycle" !important;

  text-transform: none !important;

  letter-spacing: 0px !important;

  font-weight: normal;

  font-size: 16px;
}

.hm-automate-success {
  margin-top: 0px;
}

.contact_form h4 {
  text-align: center;

  display: block;

  font-size: 23px;

  color: #2a2a2a;

  font-family: "News Cycle" !important;

  font-weight: 600 !important;

  text-transform: uppercase !important;

  letter-spacing: 0px !important;

  margin-bottom: 15px;
}

.contact_form .form-group input,
.contact_form .form-group textarea {
  display: block;

  width: 100%;

  color: #b2b2ad;

  font-weight: 500;

  border: 0px;

  padding: 5px 5px;

  font-size: 14px;

  background: #fff;

  margin-bottom: 8px;

  border-radius: 0;

  width: 100%;

  border: 1px solid #b2b2ad;

  font-family: "Lato", sans-serif;
}

.contact_form h6 {
  font-style: italic;

  display: inline-block;

  color: #3b3b3b;

  font-family: "Lato", sans-serif !important;

  font-size: 15px;

  font-weight: normal;

  line-height: normal;
}

.contact_form h6 span {
  color: red;
}

.contact_form form label {
  font-size: 13px !important;

  line-height: 21px !important;

  font-family: "News Cycle" !important;

  text-transform: none !important;

  letter-spacing: 0px !important;

  font-weight: normal;

  color: #3b3b3b;

  margin-bottom: 5px;
}

.contact_form form label span {
  font-size: 20px;

  color: red;
}

.contact_form form .form-group {
  margin-bottom: 8px;
}

.butn-bg {
  display: block;

  height: auto;

  padding: 12px 16px;

  background: #333333;

  color: #fff !important;

  border-radius: 4px;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  white-space: normal;

  font-family: "Lato", sans-serif;

  font-size: 14px;

  font-weight: 700;

  line-height: normal;

  -webkit-transition: all 500ms ease;

  -moz-transition: all 500ms ease;

  -ms-transition: all 500ms ease;

  -o-transition: all 500ms ease;

  transition: all 500ms ease;

  outline: none;

  border: none;

  margin-top: 5px;
}

.butn-bg:hover {
  background: #b2b2ad;
}

.hm-cleint {
  padding: 0px 0 40px 0;
}

.hm-cleint-head {
  border-top: 1px solid rgba(0, 0, 0, 0.13);

  border-bottom: 1px solid rgba(0, 0, 0, 0.13);

  margin-bottom: 30px;
}

.hm-cleint-head h2 {
  text-align: center;

  font-size: 40px;

  color: #2a2a2a;

  font-family: "News Cycle";

  font-style: normal;

  text-transform: uppercase;

  letter-spacing: 0px;

  padding: 15px 0;
}

/*-----------------*/

footer {
  width: 100%;

  background: #222121;

  font-size: 13px;

  padding-bottom: 60px;

  color: #ffffff;
}

.ftr-dtl {
  position: relative;

  padding-left: 70px;
}

.ftr-dtl span {
  position: absolute;

  left: 0;

  top: 0;

  color: rgb(194, 164, 59);

  font-weight: 600;

  font-family: "News Cycle" !important;

  font-size: 16px;
}

.ftr-dtl ul li {
  font-family: "News Cycle" !important;
  color: rgb(255 255 255);
  font-size: 16px;
}

.ftr-dtl ul li a {
  color: rgb(255, 255, 255);

  font-family: "News Cycle" !important;

  font-size: 16px;
}

.ftr-reserved p {
  color: #989794;

  font-family: "Lato", sans-serif;

  font-size: 15px;

  font-weight: bold;

  line-height: normal;
}

.ftr-reserved p span {
  color: rgb(194, 164, 59);
}

.ftr-social ul {
  text-align: right;
}

.ftr-social ul li {
  display: inline-block;

  padding: 0 5px;
}

.ftr-social ul li a {
  color: #ffc800;
}

/*-----------------*/

.inr-banner {
  background-image: linear-gradient(rgb(7 7 7 / 55%) 100%, #000000ba 50%),
    url(../images/team-career.jpeg);

  background-repeat: no-repeat;

  background-position: 50% 62.99%;

  background-size: 100%;

  background-size: cover;

  padding: 110px 0;

  text-align: center;

  color: #fff;
}

.inr-cont {
  background-image: url(../images/contact-bg.jpg);

  background-repeat: no-repeat;

  background-position: 50% 34.99%;

  background-size: 100%;

  background-color: transparent;

  background-size: cover;

  padding: 110px 0;

  text-align: center;

  color: #fff;
}

.inr-banner-dtl h1 {
  text-align: center;

  color: #fffcfc;

  font-size: xxx-large;

  font-family: "Lato", sans-serif;

  font-weight: 600;
}

/*-----------------*/

.our-team-head {
  padding: 25px 0;

  margin-bottom: 15px;

  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
}

.our-team-head h2 {
  color: rgb(98, 98, 98);

  text-align: center;

  font-family: "News Cycle" !important;

  font-style: normal !important;

  text-transform: uppercase !important;

  letter-spacing: 0px !important;

  font-size: 45px;
}

.our-found-head h3 span {
  color: rgb(252, 196, 1);
}
.our-found-head h3 {
  color: rgb(98, 98, 98);

  text-align: center;

  font-family: "News Cycle" !important;

  font-style: normal !important;

  text-transform: uppercase !important;

  letter-spacing: 0px !important;

  font-size: 45px;
}

.our-team-head h2 span {
  color: rgb(252, 196, 1);
}

.our-team-dtl ul li {
  display: inline-block;

  width: 19.6%;

  padding: 20px 15px;

  text-align: center;

  vertical-align: top;
}

.our-team-dtl ul li span {
  padding-top: 4px;

  color: #666666;

  font-weight: normal;

  line-height: 24px;

  font-size: 15px;

  display: block;

  font-family: "Maven Pro" !important;

  text-transform: none !important;

  letter-spacing: -1px !important;
}

.apply-job {
  text-align: center;

  padding: 20px 0;

  border-bottom: 1px solid rgba(0, 0, 0, 0.13);

  margin-bottom: 20px;
}

.apply-job span {
  text-align: center;

  color: #626262;

  font-size: 25px;

  text-align: center;
}

.apply-job a {
  width: 168px;

  border-radius: 6px;

  background: #cccbc6;

  display: block;

  padding: 16px 24px;

  color: #333333 !important;

  font-family: "Lato", sans-serif;

  font-size: 16px;

  font-weight: 700;

  line-height: normal;

  margin: 0 auto;

  display: table;
}

.apply-job-committed {
  padding-bottom: 60px;
}

.apply-job-committed p {
  color: #626262;

  font-size: 22px;

  text-align: center;
}

.student {
  background-color: #fcc401;

  padding: 50px 0;
}

.student-head {
  border-top: 1px solid rgba(0, 0, 0, 0.13);

  padding-top: 20px;

  padding-bottom: 20px;
}

.student-head h2 {
  color: rgb(63, 63, 63);

  font-family: "News Cycle" !important;

  text-transform: none !important;

  letter-spacing: 0px !important;

  font-weight: 600;
}

.student-head h2 span {
  color: #da8044;
}

.student-team h4 {
  text-align: center;
}

.student-team ul {
  text-align: center;
}

.student-team ul li {
  width: 13.5%;

  padding: 0 10px;

  display: inline-block;
}

.student-team ul li img {
  margin-bottom: 5px;
}

.student-team ul li span {
  font-family: "Maven Pro" !important;

  text-transform: none !important;

  letter-spacing: -1px !important;

  color: #666666;

  letter-spacing: 1px;
}

.student-team h4 {
  color: rgb(63, 63, 63);

  font-size: 32px;

  border-bottom: 1px solid rgba(0, 0, 0, 0.13);

  padding-bottom: 10px;

  margin-bottom: 20px;

  font-weight: 600;
}

.student-team2 {
  padding-left: 80px;
}

.student-team2 ul li {
  width: 24%;
}

.story {
  border-top: 1px solid rgba(0, 0, 0, 0.13);

  margin-top: 30px;

  padding-top: 30px;
}

.story h2 {
  font-size: 25px;

  font-weight: 600;

  color: #2a2a2a;

  margin-bottom: 30px;
}

.story-dtl p {
  color: rgb(42, 42, 42);

  font-size: medium;

  padding-bottom: 15px;

  text-align: justify;

  line-height: 21px !important;

  font-family: "News Cycle" !important;

  text-transform: none !important;

  letter-spacing: 0px !important;
}

.story-dtl p span {
  font-weight: 600;
}

.story-dtl iframe {
  margin-bottom: 15px;
}

.bb1 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);

  padding-bottom: 30px;
}

/*-----------------*/

.hm-prod {
  padding: 40px 0 60px;
}

.hm-prod-head h1 {
  font-size: 35px;

  color: rgb(218, 184, 68);

  font-size: xx-large;

  margin-bottom: 20px;
}

.hm-prod-head p {
  font-family: "News Cycle" !important;

  font-style: normal !important;

  text-transform: uppercase !important;

  letter-spacing: 0px !important;

  font-weight: normal;

  font-size: 16px;

  color: #626262;

  padding-bottom: 20px;
}

.hm-prod-head p span {
  color: #dab844;
}

.hm-prod-head ul li {
  font-family: "News Cycle" !important;

  text-transform: none !important;

  letter-spacing: 0px !important;
}

.hm-prod-head ul li span {
  color: rgb(218, 184, 68);
}

.usege-head h4 {
  color: #dab844;

  font-family: "News Cycle" !important;

  font-style: normal !important;

  text-transform: uppercase !important;

  letter-spacing: 0px !important;

  font-weight: normal;

  font-size: 18px;

  padding-bottom: 15px;
}

.prod-list-dtl ul li {
  padding-left: 5px;

  margin: 3px 0 0;

  list-style: disc inside;

  font-family: "News Cycle";

  text-transform: none;

  letter-spacing: 0px;

  color: #626262;

  font-size: 16px;
}

.prod-list-img {
  margin-top: 20px;
}

.prod-benifit {
  border-top: 1px solid rgba(0, 0, 0, 0.13);

  border-bottom: 1px solid rgba(0, 0, 0, 0.13);

  margin-top: 30px;

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;
}

.prod-benifit p {
  font-family: "News Cycle";

  text-transform: none;

  letter-spacing: 0px;

  color: rgb(63, 63, 63);

  font-size: 18px;

  padding-bottom: 20px;

  font-weight: normal;

  line-height: 22px !important;
}

.prod-benifit p span {
  color: rgb(194, 164, 59);
}

.prod-benifit ul {
  padding-bottom: 20px;
}

.prod-benifit ul li {
  font-family: "News Cycle";

  text-transform: none;

  letter-spacing: 0px;

  color: rgb(63, 63, 63);

  font-size: 18px;

  padding: 8px 0;

  font-weight: normal;

  line-height: 24px !important;

  list-style-type: disc;

  list-style-position: inside;
}

.prod-benifit h4 {
  color: rgb(194, 164, 59);

  font-family: "News Cycle" !important;

  text-transform: none !important;

  letter-spacing: 0px !important;

  font-size: 18px;

  padding-bottom: 5px;
}

.prod-video-head h2 {
  color: rgb(194, 164, 59);

  font-size: xx-large;

  text-align: center;

  font-family: "News Cycle" !important;

  text-transform: none !important;

  letter-spacing: 0px !important;

  font-weight: normal;

  padding-bottom: 30px;
}

.cnc-profile p {
  font-family: "News Cycle";

  text-transform: none;

  letter-spacing: 0px;

  color: rgb(63, 63, 63);

  font-size: 18px;

  padding-top: 20px;

  font-weight: normal;

  line-height: 22px !important;
}

.cnc-pipe {
  border-top: 1px solid rgba(0, 0, 0, 0.13);

  margin-top: 30px;

  padding-top: 30px;
}

.cnc-name p {
  font-size: x-large;

  color: #626262 !important;

  font-family: "News Cycle" !important;

  text-transform: none !important;

  letter-spacing: 0px !important;

  line-height: 30px;
}

.mb10 {
  margin-bottom: 10px;
}

.border-none {
  border-bottom: 0px;
}

.prod-benifit-img {
  align-items: end;
}

.prod-benifit-img img {
  margin-bottom: 30px;
}

.prod-benifit h2 {
  color: rgb(194, 164, 59);

  font-size: x-large;

  margin-bottom: 30px;

  font-family: "News Cycle" !important;

  font-style: normal !important;

  text-transform: uppercase !important;

  letter-spacing: 0px !important;
}

.prod-hydraulic h4 {
  color: rgb(194, 164, 59);

  font-size: x-large;

  margin-bottom: 30px;

  font-family: "News Cycle" !important;

  font-style: normal !important;

  text-transform: uppercase !important;

  letter-spacing: 0px !important;
}

.prod-hydraulic p {
  font-family: "News Cycle" !important;

  font-style: normal !important;

  text-transform: uppercase !important;

  letter-spacing: 0px !important;

  font-weight: normal;

  font-size: 18px;

  color: #626262;

  padding-bottom: 20px;
}

.prod-hydraulic p span {
  color: #dab844;
}

.prod-hydraulic-dtl h6 {
  font-family: "News Cycle" !important;

  font-style: normal !important;

  letter-spacing: 0px !important;

  font-weight: normal;

  font-size: 19px;

  color: rgb(194, 164, 59);

  margin-bottom: 8px;
}

.prod-hydraulic-dtl ul li {
  font-family: "News Cycle";

  text-transform: none;

  letter-spacing: 0px;

  color: rgb(63, 63, 63);

  font-size: 16px;

  padding-bottom: 4px;

  font-weight: normal;

  line-height: 22px !important;

  list-style-type: disc;

  list-style-position: inside;
}

.bb {
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);

  margin-bottom: 30px;

  padding-bottom: 30px;
}

.bt {
  border-top: 1px solid rgba(0, 0, 0, 0.13);

  margin-top: 30px;

  padding-top: 30px;

  align-items: center;
}

.prod-list-dtl h3 {
  font-family: "News Cycle" !important;

  font-style: normal !important;

  letter-spacing: 0px !important;

  font-weight: normal;

  font-size: 24px;

  color: #2a2a2a;

  margin-bottom: 15px;

  text-align: center;
}

.prod-list-dtl img {
  margin: 0 auto 10px;

  display: table;
}

.prod-application ul li {
  font-size: 15px;

  padding: 1px 0;
}

.prod-application ul li::marker {
  font-size: 11px;
}

.prod-application h3 {
  color: rgb(194, 164, 59);

  font-family: "News Cycle" !important;

  text-transform: none !important;

  letter-spacing: 0px !important;

  font-size: 18px;

  padding-bottom: 10px;

  font-weight: 600;
}

.prod-listing ul li {
  font-size: 14px;
}

.prod-listing ul li::marker {
  font-size: 11px;
}

.solar-dtl h5 {
  font-weight: bold;

  color: #626262 !important;

  font-family: "News Cycle" !important;

  text-transform: none !important;

  letter-spacing: 0px !important;

  font-size: 15px;

  margin-bottom: 4px;
}

.solar-dtl p {
  text-align: justify;

  font-family: "News Cycle" !important;

  text-transform: none !important;

  letter-spacing: 0px !important;

  color: #626262 !important;

  font-size: 16px;
}

.prod-solar-benifit h2 {
  margin-bottom: 0px;
}

.prod-solar-benifit {
  margin-bottom: 0px;

  padding-bottom: 0px;
}

/*-----------------*/

.contact {
  padding: 80px 0;
}
.contact_form h2 {
  color: rgb(218, 184, 68);
  line-height: 33px !important;
  margin-bottom: 25px;
}
.contact_form p {
  font-size: 18px !important;
  line-height: 22px;
  color: #626262;
  font-family: "News Cycle" !important;
  text-transform: none;
  letter-spacing: 0px;
  padding-bottom: 10px;
}
.contact_form h5 {
  font-size: 13px;
  font-weight: 600;
  color: #626262;
  font-family: "News Cycle" !important;
  margin-bottom: 20px;
}
.contact-box {
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
  padding: 15px 0;
}
.contact-box h5 {
  color: #666666;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  padding-bottom: 5px;
}
.contact-box ul li a {
  font-family: "News Cycle" !important;
  text-transform: none !important;
  letter-spacing: 0px !important;
  font-size: 18px;
  line-height: 22px;
  color: #626262 !important;
}
.contact-box p {
  font-family: "News Cycle" !important;
  text-transform: none !important;
  letter-spacing: 0px !important;
  font-size: 16px;
  line-height: 22px;
  color: #626262 !important;
}
.contact-map {
  margin-top: 20px;
}
.pt0 {
  padding-top: 0px;
}

/*-----------------*/
.contact_form_home p {
  font-size: 15px !important;
}
.contact_form_home h4 {
  text-align: left;
  font-weight: 400 !important;
  font-size: 2rem;
  color: #000;
  line-height: 33px !important;
  margin-bottom: 10px;
}
/*-----------------*/
/* company page */

/*-----------------*/
.inr-comp {
  background-image: url(../images/New-York-Cityscape.jpg);

  background-repeat: no-repeat;

  background-position: 50% 57.99%;

  background-size: 100%;

  background-color: transparent;

  background-size: cover;

  padding: 110px 0;

  text-align: center;

  color: #fff;
}

.inr-banner-dtl h1 {
  text-align: center;

  color: #fffcfc;

  font-size: xxx-large;

  font-family: "Lato", sans-serif;

  font-weight: 600;
}

/*-----------------*/

/*-----------------*/
.company-section {
  padding: 55px 0 50px 0;
}

.company-head {
  padding: 25px 0;
}
.company-head h2 {
  color: rgb(98, 98, 98);
  text-align: center;
  font-family: "News Cycle" !important;
  font-style: normal !important;
  text-transform: uppercase !important;
  letter-spacing: 0px !important;
  font-size: 40px;
}
.company-head h2 span {
  color: rgb(252, 196, 1);
}
.company-section p {
  font-family: "News Cycle";
  text-transform: none;
  text-align: justify;
  letter-spacing: 0.5px;
  word-spacing: 3px;
  color: rgb(63, 63, 63);
  font-size: 18px;
  padding-bottom: 20px;
  font-weight: normal;
  line-height: 22px !important;
}
.company-section li {
  font-family: "News Cycle";
  text-transform: none;
  letter-spacing: 0.5px;
  word-spacing: 3px;
  color: rgb(63, 63, 63);
  font-size: 18px;
  font-weight: normal;
  line-height: 22px !important;
}
.company-img {
  position: sticky;
  top: 70px;
}

.company-head h3 {
  color: rgb(98, 98, 98);
  font-family: "News Cycle" !important;
  font-style: normal !important;
  text-transform: uppercase !important;
  letter-spacing: 0px !important;
  font-size: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
  padding: 0px 0 15px;
  font-weight: 600;
}
.company-head h3 span {
  color: rgb(252, 196, 1);
}
.company-main-first {
  padding: 0 0 50px;
}

.company-main-second h4 span {
  color: rgb(98, 98, 98);
  text-align: center;
  font-family: "News Cycle" !important;
  font-style: normal !important;
  text-transform: uppercase !important;
  letter-spacing: 0px !important;
  font-size: 25px;
  padding: 0px 0 15px;
  float: right;
}
.company-main-second h4 span {
  color: rgb(252, 196, 1);
}
.company-main-second .container {
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
  padding-bottom: 30px;
}
.para-div .para {
  padding-top: 40px;
}
.clientele {
  padding: 0 0 80px 0;
}
.clientele-head {
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
  border-top: 1px solid rgba(0, 0, 0, 0.13);
  padding-block: 10px;
}
.clientele-head h3 {
  color: rgb(53, 53, 53);
  text-align: center;
  font-family: "News Cycle" !important;
  font-style: normal !important;
  text-transform: uppercase !important;
  letter-spacing: 0px !important;
  font-size: 45px;
}
.cleint-img {
  padding: 40px 0 0 0;
}

/* application page */
/*-----------------*/
.inr-appl {
  background-image: url(../images/Bokeh.jpg);

  background-repeat: no-repeat;

  background-position: 50% 57.99%;

  background-size: 100%;

  background-color: transparent;

  background-size: cover;

  padding: 110px 0;

  text-align: center;

  color: #fff;
}

.inr-banner-dtl h1 {
  text-align: center;

  color: #fffcfc;

  font-size: xxx-large;

  font-family: "Lato", sans-serif;

  font-weight: 600;
}

.applin-section {
  padding: 55px 0 80px 0;
}
.applin-section .company-head h2 {
  color: rgb(252 196 1);
  text-align: start;
  font-family: "News Cycle" !important;
  font-style: normal !important;
  text-transform: uppercase !important;
  letter-spacing: 0px !important;
  font-size: 45px;
}
.applin-section .company-head h2 span {
  color: rgb(252, 196, 1);
}

.applin-section .applin-main-first p {
  font-family: "News Cycle";
  text-transform: none;
  text-align: justify;
  letter-spacing: 0.5px;
  word-spacing: 3px;
  color: rgb(63, 63, 63);
  font-size: 18px;

  font-weight: normal;
  line-height: 22px !important;
}
.applin-main-first {
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
  padding: 0 0 30px 0;
}
.applin-img-section {
  padding: 30px 0 0 0;
}
.applin-img-section p {
  font-family: "News Cycle";
  text-transform: none;
  text-align: justify;
  letter-spacing: 0.5px;
  word-spacing: 3px;
  color: rgb(63, 63, 63);
  font-size: 18px;
  font-weight: normal;
  margin-top: 10px;
}
.applin-main-second {
  padding: 80px 0 0;
}
.applin-main-second h4 {
  color: rgb(252, 196, 1);
  font-family: "News Cycle";
  font-size: 17px;
  text-transform: uppercase;
  line-height: 22px !important;
  font-weight: 600;
  margin: 0 0 5px;
}
.applin-main-second p,
.applin-main-second li {
  color: rgb(63, 63, 63);
  font-family: "News Cycle";
  text-transform: none;
  letter-spacing: 0.5px;
  text-align: justify;
  font-size: 17px;
  font-weight: normal;
  line-height: 22px !important;
}

.cleint-per-img {
  height: 100%;
  padding: 0 0 25px;
  align-content: center;
  justify-self: center;
}
.clientele-home {
  padding: 50px 0 0;
}
/* .cleint-per-img img{
  width:50%;
} */

/*-----------------*/
.prod-list-dtl ul li a:hover {
  color: #070707;
}
.prod-list-dtl ul li a {
  color: #626262;
}

.hm-prod-head p a:hover {
  color: #070707;
}

.hm-prod-head p a {
  color: #626262;
}
/* ------ */
.founder-img-box img {
  border-radius: 15px;
  border: 2px solid #1a1a1a;
}
.founder-img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15px;
  width: 94%;
  height: 100%;
  rotate: 3deg;
  background-color: #ffc019;
  border-radius: 15px;
  z-index: -1;
}
.founders-name h4 {
  color: rgb(58, 58, 58);
  font-size: 22px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  margin-left: 25px;
  margin-bottom: 15px;
  padding: 10px 0 10px 23px;
  border-left: 4px solid #ffc019;
}
.founders-name {
  height: 100%;
  align-content: center;
}
.founder-sec {
  padding: 40px 0 50px;
}
.our-found-head {
  padding: 25px 0;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
}

/*-----------------*/

.hm-map {
  background: #f5f5f5;
  padding: 40px 0;
}
.hm-maping {
  padding-bottom: 40px;
}
.hm-maping h2 {
  text-align: center;
}
.hm-maping-india-main {
  border: 4px solid #b2b2b2;
  padding: 20px;
  background: #fff;
}
.hm-maping-india-main span {
  position: relative;
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  margin: 0 auto;
  display: table;
  text-decoration: underline;
}
.hm-maping-india-main span img {
  position: absolute;
  left: -44px;
  top: 5px;
  width: 40px;
}

.goog-te-gadget {
  font-size: 0px !important;
  display: block;
  place-items: end;
}
.goog-te-gadget a {
  padding: 0 !important;
  display: none;
}

.goog-te-gadget .goog-te-combo {
  margin: 0px !important;
  padding: 3px 12px;
  font-size: 13px;
  font-family: gotham;
  border-radius: 20px;
}
.language {
  height: 100%;
}
.top-header {
  padding: 2px 0;
  padding-bottom: 4px;
  background-color: #f8c815;
  margin-bottom: 5px;
}
.top-header .container {
  max-width: 100%;
  padding: 0 50px;
}
