@import url("https://fonts.googleapis.com/css2?family=Boogaloo&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Lobster&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Syne:wght@400..800&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif !important;
}

h1 {
  font-size: 55px !important;
  font-weight: 700 !important;
  line-height: 70px !important;
}

h2 {
  font-size: 25px !important;
  font-weight: 600 !important;
}

h3 {
  font-size: 35px !important;
  font-weight: 700 !important;
}

.line__height {
  line-height: 50px !important;
}

span {
  color: #43B02A;
}

.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999 !important;
  padding: 0;
  box-shadow: 0px 0px 5px gainsboro;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5058823529) !important;
  background: linear-gradient(90deg, rgba(253, 253, 255, 0.582) 0%, rgba(225, 227, 231, 0.425) 0%);
  animation-name: example;
  animation-duration: 1s;
  transition: top 500ms ease-in;
  color: #000 !important;
  box-shadow: 0px 0px 5px gainsboro;
}

@keyframes example {
  0% {
    top: -100px;
  }
  100% {
    top: 0px;
  }
}
.navbar {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.navbar .navbar-brand img {
  height: 80px;
}
.navbar .nav-item {
  margin-right: 30px;
  position: relative;
}
.navbar .nav-item::before {
  content: "";
  position: absolute;
  background-color: #43B02A;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-item:hover a {
  color: #43B02A;
}
.navbar .nav-item:hover::before {
  width: 100%;
}
.navbar .nav-item .nav-link {
  color: #000;
}

/* Dropdown Animation */
.dropdown-menu {
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden !important;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s !important;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible !important;
  display: block;
}

.nav-item .dropdown-menu li a {
  color: #000 !important;
}

.nav-item:hover .dropdown-menu li {
  padding: 3px 0;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: rgba(67, 176, 42, 0.4509803922) !important;
}

/* Rotate Icon on Hover */
.nav-item .fa-chevron-down {
  transition: transform 0.3s ease;
}

.nav-item:hover .fa-chevron-down {
  transform: rotate(180deg) !important;
}

.main_sec {
  background-color: #F4F9FC;
}

.banner_left {
  margin-left: 5%;
}

.banner_video {
  margin: 0 auto;
  width: 95%;
  padding: 25px 0;
  position: relative;
}
.banner_video video {
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}

.sec_fluid {
  width: 95%;
  margin: 0 auto !important;
}

.modal-body {
  position: relative;
  z-index: 999999 !important;
}
.modal-body label {
  padding-bottom: 10px;
}
.modal-body .form-select {
  border-radius: 30px;
}
.modal-body .form-control,
.modal-body .input-group {
  border-radius: 30px;
  border: 1px solid #43B02A;
}
.modal-body .Btn_1 {
  background-color: #43B02A;
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 30px;
  color: #fff;
}

.modal-body label {
  padding-bottom: 10px;
  border-radius: 30px;
}

.about_text h2 {
  line-height: 40px;
}
.about_text ul li {
  margin-bottom: 22px;
  padding-left: 10px;
  list-style: none;
  position: relative;
}
.about_text ul li::before {
  content: "";
  background-color: #0089CF;
  width: 18px;
  height: 18px;
  position: absolute;
  left: -25px;
  top: 5px;
  transform: rotate(45deg);
}

.owl-carousel .owl-item img {
  display: block;
  width: auto !important;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  display: none !important;
}

.about_text2 ul li {
  margin-bottom: 18px;
  list-style: none;
}
.about_text2 ul li span img {
  height: 40px;
  margin-right: 15px;
}

.row_flex {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 15px;
}

.card_box {
  border: 1px solid #43B02A;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.card_box:hover {
  background-color: rgba(67, 176, 42, 0.337254902);
}
.card_box:hover p {
  opacity: 1;
}
.card_box .card_title {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
}
.card_box .card_title h5 {
  color: #43B02A;
}
.card_box p {
  margin-bottom: 0 !important;
  padding-top: 10px;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}

.bg-col {
  background-color: #fff;
  position: relative !important;
}
.bg-col .col-img {
  position: absolute !important;
  right: -180px !important;
  bottom: -80px !important;
  width: 350px;
}

.bg-col2 {
  background-color: #fff;
  margin-right: 0;
  margin-left: auto;
  margin-top: 40px !important;
  height: 450px;
}

.img-wrp {
  margin-top: -280px !important;
}

#sildertwo .carousel_bg {
  background-color: #fff;
  padding: 15px;
}
#sildertwo .carousel_bg img {
  height: 30px;
}
#sildertwo .carousel_bg p {
  padding-top: 10px;
}

.car_img {
  background: url("../images/car-driver.jpg") center no-repeat;
  width: 100%;
  height: 350px;
  background-size: cover;
  border-radius: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 25px !important;
  justify-content: end;
  text-align: start;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.4235294118);
}

.footer_sec {
  background-color: #fff;
}
.footer_sec .footer-logo {
  height: 120px !important;
}
.footer_sec .footer_cont h5 {
  padding-bottom: 10px;
}
.footer_sec .footer_cont ul {
  padding-left: 0 !important;
}
.footer_sec .footer_cont ul li {
  margin-bottom: 10px;
  color: #000;
  list-style: none;
  font-size: 14px;
}
.footer_sec .footer_cont ul li span i {
  font-size: 18px;
  padding-right: 10px;
  color: #000;
}
.footer_sec .footer_cont ul li a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}
.footer_sec .footer_cont ul li a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.footer_sec .footer_icons a {
  color: #000;
  font-size: 20px;
  text-decoration: none;
  padding-right: 15px;
}
.footer_sec .copy-right a {
  color: #000;
  font-size: 14px;
  text-decoration: none;
}

.about__sec {
  background: url("../images/about_sec.jpg") center;
  width: 100%;
  background-size: cover;
  color: #fff;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.4588235294);
  padding: 55px 0;
}
.about__sec h5 {
  font-size: 25px !important;
  padding-top: 10px;
}

.banner__btn .demo_btn {
  background-color: rgba(93, 231, 62, 0.6431372549);
}

/* From Uiverse.io by alexmaracinaru */
/* From Uiverse.io by alexmaracinaru */
.demo_btn {
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s;
  padding: 10px 25px;
  background-color: #fff;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  font-size: 17px;
  border-radius: 30px !important;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.demo_btn span {
  color: #000 !important;
}

.demo_btn:hover {
  background: #43B02A;
}
.demo_btn:hover span {
  color: #fff !important;
}

.demo_btn > svg {
  width: 34px;
  margin-left: 10px;
  transition: transform 0.3s ease-in-out;
}

.demo_btn:hover svg {
  transform: translateX(5px);
  color: #fff !important;
}

.demo_btn:active {
  transform: scale(0.95);
}

.sec__br {
  background: url("../images/bg.png") center no-repeat;
  width: 100%;
  height: 200px;
  background-size: cover;
  color: #fff;
}

.list_core li {
  display: flex;
  gap: 15px;
  margin-bottom: 50px;
}
.list_core li .icon-img {
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}

.smart_card {
  background-color: rgba(67, 176, 42, 0.2196078431);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 25px;
  border-radius: 10px;
  height: calc(100% - 10px);
}
.smart_card .card_icons img {
  margin-bottom: 15px;
}

.video_sec {
  width: 100%;
  height: 100%;
}
.video_sec video {
  height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}

.col__grid {
  display: grid;
  grid-template-columns: repeat(5, auto);
}
.col__grid .col {
  border: 1px solid rgba(66, 66, 66, 0.231372549);
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  padding: 15px;
  transition: all 0.3s ease-in-out;
}
.col__grid .col:hover {
  background: rgba(67, 176, 42, 0.2549019608);
}
.col__grid .col:hover img {
  transform: scale(1.1) !important;
}
.col__grid .col h5 {
  font-size: 18px;
}
.col__grid .col .col-img {
  margin-bottom: 20px;
}

.col__grid > :nth-child(6) {
  border-bottom: 1px solid rgba(66, 66, 66, 0.231372549) !important;
}

.col__grid > :nth-child(7) {
  border-bottom: 1px solid rgba(66, 66, 66, 0.231372549) !important;
}

.col__grid > :nth-child(8) {
  border-bottom: 1px solid rgba(66, 66, 66, 0.231372549) !important;
}

.col__grid > :nth-child(9) {
  border-bottom: 1px solid rgba(66, 66, 66, 0.231372549) !important;
}

.col__grid > :nth-child(10) {
  border-bottom: 1px solid rgba(66, 66, 66, 0.231372549) !important;
}

.col__grid > :nth-child(5) {
  border-right: 1px solid rgba(66, 66, 66, 0.231372549) !important;
}

.col__grid > :nth-child(10) {
  border-right: 1px solid rgba(66, 66, 66, 0.231372549) !important;
}

.list_one {
  padding-left: 0 !important;
}
.list_one li {
  margin-bottom: 18px;
  position: relative;
  list-style: none;
  padding-left: 35px;
}
.list_one li::before {
  content: "";
  position: absolute;
  background: url("../images/icons/correct.png");
  background-size: cover;
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  left: 0px;
  bottom: 0;
}

.subtitle {
  position: relative;
  border-bottom: 2px solid #43B02A;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 15px;
}

.about_sec {
  background: url("../images/about-img.jpg") center no-repeat;
  width: 100%;
  height: 400px;
  background-size: cover;
  border-radius: 30px !important;
  position: relative;
}
.about_sec .demo_btn {
  right: 10px;
  position: absolute;
  bottom: 10px;
}

.about_content2 h5 {
  line-height: 32px;
}

.col__circle {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 15px;
  text-align: center !important;
}
.col__circle .circle_img {
  width: 80px;
  border-radius: 50%;
  margin: 25px auto;
  background-color: #fff;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}

#system_id .col__grid {
  display: grid;
  grid-template-columns: repeat(4, auto);
  text-align: center;
}
#system_id .col {
  display: grid;
  place-items: center;
}
#system_id .col__grid > :nth-child(5) {
  border-bottom: 1px solid rgba(66, 66, 66, 0.231372549) !important;
  border-right: 1px solid transparent !important;
}
#system_id .col__grid > :nth-child(4) {
  border-right: 1px solid rgba(66, 66, 66, 0.231372549) !important;
}
#system_id .col__grid > :nth-child(8) {
  border-right: 1px solid rgba(66, 66, 66, 0.231372549) !important;
}

.vission_sec {
  background: url("../images/vision.jpg") center no-repeat;
  width: 100%;
  height: 400px;
  background-size: cover;
  border-radius: 30px !important;
  position: relative;
}
.vission_sec .demo_btn {
  right: 10px;
  position: absolute;
  bottom: 10px;
}

.mission_sec {
  background: url("../images/mision.jpg") center no-repeat;
  width: 100%;
  height: 400px;
  background-size: cover;
  border-radius: 30px !important;
  position: relative;
}
.mission_sec .demo_btn {
  right: 10px;
  position: absolute;
  bottom: 10px;
}

.contact_bg {
  background-color: #fff;
  padding: 25px;
}
.contact_bg .col_bg {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
}
.contact_bg .inquery-form .form-title {
  text-align: center;
  padding-bottom: 30px;
}
.contact_bg .inquery-form .form-group input {
  border: none;
  border: 1px solid rgba(148, 140, 140, 0.7450980392);
  border-radius: 0;
}
.contact_bg .inquery-form textarea {
  border: none;
  border: 1px solid rgba(148, 140, 140, 0.7450980392);
  border-radius: 0;
}
.contact_bg .inquery-form .captcha-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact_bg .inquery-form .dynamic-code {
  padding: 6px 0;
  background: #fff;
  color: #000;
  border: 1px solid #393376;
  border-radius: 8px;
  border: 1px solid rgba(148, 140, 140, 0.7450980392);
  text-align: center;
  border-radius: 0;
}
.contact_bg .inquery-form .captcha-reload {
  padding-left: 5px;
}
.contact_bg .inquery-form .captcha-input {
  border: 1px solid rgba(148, 140, 140, 0.7450980392);
  border-radius: 0;
}
.contact_bg .captcha-reload {
  padding-left: 10px !important;
}
.contact_bg .Btn_1 {
  background-color: #43B02A;
  border: none;
  padding: 8px 30px;
  color: #fff;
  box-shadow: 2px 2px 8px 0px #000;
}
.contact_bg .Btn_1:hover {
  background-color: #0089CF;
}

.contact_info {
  margin-top: 30px;
}
.contact_info ul {
  padding-left: 0 !important;
}
.contact_info ul li {
  list-style: none;
  display: flex;
  align-items: center;
}
.contact_info ul li i {
  font-size: 20px;
  padding-right: 15px;
}
.contact_info ul li a {
  text-decoration: none;
  color: #000;
}

.contact_sec {
  background: url("../images/contact-us.jpg") center no-repeat;
  width: 100%;
  height: 400px;
  background-size: cover;
  border-radius: 30px !important;
}

.career__sec {
  background: url("../images/career.jpg") center;
  width: 100%;
  background-size: cover;
  color: #fff;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.4588235294);
  padding: 30px 0;
}
.career__sec h5 {
  font-size: 25px !important;
  padding-top: 10px;
}

.career__container {
  background-color: #fff;
  padding: 15px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  border-radius: 10px;
  height: 280px;
}
.career__container h5 {
  padding-bottom: 10px;
}
.career__container ul li {
  margin-bottom: 8px;
}

.career-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.traning__sec {
  background: url("../images/traning-bg.jpg") bottom;
  width: 100%;
  background-size: cover;
  color: #fff;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.4588235294);
  padding: 40px 0;
}
.traning__sec h5 {
  font-size: 25px !important;
  padding-top: 10px;
}

#car_img2 {
  background: url("../images/car_img2.jpg") center no-repeat;
  width: 100%;
  height: 350px;
  background-size: cover;
  border-radius: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 25px !important;
  justify-content: end;
  text-align: start;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.4235294118);
}

.circle_flex {
  display: flex;
  align-items: center;
}

.circle_col ul {
  padding-left: 0 !important;
}
.circle_col ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.circle_col ul li .circle-img {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 18px;
}
.circle_col ul li .circle-img img {
  height: 50px;
}
.circle_col ul li .circle_content h5 {
  font-size: 16px !important;
  font-weight: bold;
}
.circle_col ul li .circle_content p {
  margin-bottom: 0 !important;
}

#circle_col2 ul li .circle_content h5,
#circle_col2 ul li .circle_content p {
  text-align: start !important;
}

.ecg_img {
  background: url("../images/ecg-img.jpg") center no-repeat;
  width: 100%;
  height: 300px;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.568627451);
  background-attachment: fixed;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 15px;
}
.ecg_img .demo_btn {
  display: inline-block;
  margin-top: 15px;
}

.text_wp {
  font-style: italic;
  color: rgba(0, 0, 0, 0.768627451);
}
.text_wp h2 span i {
  font-size: 35px !important;
}

.container_count {
  display: flex;
  align-items: center;
  gap: 25px;
}
.container_count .tech_list {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.container_count .tech_list .icon_img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #43B02A;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.container_count .tech_list .icon_img img {
  height: 40px;
}
.container_count .tech_list .counter_title {
  text-align: end;
}
.container_count .tech_list .counter_title h5 {
  font-size: 18px !important;
  font-weight: 500;
}
.container_count .tech_list .counter_title p {
  font-size: 14px !important;
}
.container_count .mobile_img img {
  width: 250px;
}
.container_count .mright1 {
  margin-right: 50px !important;
}
.container_count .mright2 {
  margin-right: 60px !important;
}
.container_count .mright3 {
  margin-right: 70px !important;
}
.container_count .mright4 {
  margin-left: 70px !important;
}
.container_count .mright5 {
  margin-left: 50px !important;
}
.container_count .mright6 {
  margin-left: 60px !important;
}

.overaly-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: url("../images/tech.jpg") center no-repeat;
  width: 100%;
  height: 400px;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3647058824);
}
.overaly-img img {
  width: 100%;
  height: 100%;
}
.overaly-img .overlay_title {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  width: 100%;
  transition: 0.5s ease;
  opacity: 0;
  background-color: rgba(67, 176, 42, 0.9529411765);
  text-align: center;
}
.overaly-img .overlay_title p {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  color: #fff;
  padding: 25px;
  font-size: 19px;
}
.overaly-img h5 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 25%;
  height: 100%;
  color: #fff;
  font-weight: 600;
  font-size: 28px !important;
}

.overaly-img:hover .overlay_title {
  height: 100% !important;
  opacity: 1;
}

.overaly-img2 {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: url("../images/fleet.png") center no-repeat;
  width: 100%;
  height: 400px;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3647058824);
}

.overaly-img3 {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: url("../images/operations.jpg") center no-repeat;
  width: 100%;
  height: 400px;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3647058824);
}

.policy_list ol li {
  margin-bottom: 15px;
  list-style: decimal;
}

.col-contnet h2 {
  color: #0089CF;
}/*# sourceMappingURL=style.css.map */