:root {
  /**
  @font family declaration
  */
  --tp-ff-body: Fractul;
  --tp-ff-heading: Fractul;
  --tp-ff-p: Fractul;
  --tp-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @font Size declaration
  */
  --tp-fz-body: 15px;
  --tp-fz-p: 16px;
  --tp-fz-a: 15px;
  --tp-fz-h1: 50px;
  --tp-fz-h2: 36px;
  --tp-fz-h3: 24px;
  --tp-fz-h4: 20px;
  --tp-fz-h5: 18px;
  --tp-fz-h6: 16px;
  --tp-fz-font: 10px;
  --tp-fz-font1: 12px;
  --tp-fz-font2: 13px;
  /**
   @font Weight declaration
  */
  --tp-fw-normal: normal;
  --tp-fw-elight: 200;
  --tp-fw-light: 300;
  --tp-fw-regular: 400;
  --tp-fw-medium: 500;
  --tp-fw-sbold: 600;
  --tp-fw-bold: 700;
  --tp-fw-ebold: 800;
  --tp-fw-black: 900;
  /**


  @color declaration
  */
  --tp-common-white: #ffffff;
  --tp-common-black: #000;
  --tp-heading-primary: #363636;
  --tp-heading-spanred: #A8CB00;
  --tp-heading-spanred1: #232323;
  --tp-bg-1: #F6FCFF;
  --tp-bg-4: #0084DB;
  --tp-bg-2: #f6f6f6;
  --tp-bg-3: #0084DB;
  --tp-bg-5: #F2FAFF;
  --tp-bg-6: #F5F5F5;
  --tp-grey-1: #4E4E4E;
  --tp-text-body: #3A3A3A;
  --tp-text-1: #3D3D3D;
  --tp-text-2: #383838;
  --tp-text-3: #3c3c3c;
  --tp-text-4: #006EB1;
  --tp-text-5: #E77817;
  --tp-text-6: #0084DB;
  --tp-border-primary: #B9DDFF;
  --tp-border-secondary: #EAEAEA;
  --tp-border-btnborder: #E77817;
  --tp-border-headborder: #9F9F9F;
  --tp-border-1: #C7E8FF;
  --tp-border-2: #C5C5C5;
  --tp-icon-blue: #006EB1;
  --tp-icon-blue-light: #E7efFF;
  --tp-icon-green: #10D0A1;
  --tp-icon-green-light: #E7FAF6;
  --tp-icon-pink: #F72A75;
  --tp-icon-pink-light: #FEEAf1;
  --tp-icon-sky: #42BFFF;
  --tp-icon-sky-light: #ECF9FF;
  --tp-icon-red: #FF0000;
  --tp-icon-tweet: #1DA1F2;
  --tp-icon-fb: #4267B2;
  --tp-icon-skype: #00A6E4;
}

body {
  font-family: var(--tp-ff-body);
  font-size: var(--tp-fz-body);
  font-weight: var(--tp-fw-regular);
  color: var(--tp-text-body);
  line-height: 26px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

p {
  font-size: var(--tp-fz-p);
  color: var(--tp-heading-primary);
  font-weight: var(--tp-fw-regular);
  margin-bottom: 22px;
}

.head {
  text-align: center;
  padding-bottom: 50px;
}
@media screen and (max-width: 991px) {
  .head {
    padding-bottom: 30px;
  }
}
.head h3 {
  font-size: var(--tp-fz-body);
  color: var(--tp-heading-spanred);
  font-weight: 500;
  letter-spacing: 3px;
  padding-bottom: 10px;
}
.head h2 {
  font-size: var(--tp-fz-h2);
  color: var(--tp-heading-spanred1);
  font-weight: var(--tp-fw-bold);
  padding-bottom: 10px;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 767px) {
  .head h2 {
    font-size: calc(var(--tp-fz-h2) - 6px);
  }
}
.head p {
  color: var(--tp-heading-primary);
  font-size: var(--tp-fz-h5);
  font-weight: var(--tp-fw-regular);
}

@media screen and (max-width: 1450px) {
  .container {
    max-width: 1240px;
  }
}
@media screen and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media screen and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
.privacy-policies {
  padding: 60px 0;
}

.error-page {
  float: left;
  width: 100%;
  padding: 300px 15px 100px;
  text-align: center;
  background: var(--tp-bg-1);
}
@media screen and (max-width: 1399px) {
  .error-page {
    padding: 200px 15px 80px;
  }
}
@media screen and (max-width: 991px) {
  .error-page {
    padding: 150px 15px 80px;
  }
}

.page_not_found {
  max-width: 980px;
  margin: 0 auto;
}

.error-page h1 {
  color: #F6F7F7;
  padding-bottom: 30px;
  max-width: 675px;
  margin: 0 auto;
  font-size: var(--tp-fz-h1);
  color: var(--tp-heading-primary);
  font-weight: var(--tp-fw-bold);
  text-transform: uppercase;
  line-height: normal;
}
@media screen and (max-width: 1399px) {
  .error-page h1 {
    font-size: var(--tp-fz-h2);
    line-height: normal;
  }
}
@media screen and (max-width: 767px) {
  .error-page h1 {
    font-size: calc(var(--tp-fz-h2) - 6px);
  }
}

.error-page p {
  font-size: var(--tp-fz-p);
  color: var(--tp-heading-primary);
  font-weight: var(--tp-fw-regular);
  margin-bottom: 22px;
}

.error-page a {
  font-size: var(--tp-fz-a);
  color: var(--tp-common-white);
  font-weight: var(--tp-fw-sbold);
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease-out 0s;
  height: 48px;
  padding: 10px 35px;
  display: inline-block;
  border-radius: 3px;
  border: 1px solid var(--tp-common-white);
  background: var(--tp-heading-orange);
  color: var(--tp-common-white);
  display: inline-block;
}
.error-page a img {
  margin-left: 5px;
  transition: all 0.1s ease-out 0s;
  vertical-align: middle;
  display: inline-block;
  margin-top: -3px;
}
.error-page a:hover {
  background: var(--tp-heading-orange);
  border-color: var(--tp-heading-orange);
}
.error-page a:hover {
  background: transparent;
  color: var(--tp-text-body);
}

.search-outer {
  padding: 60px 0;
}
.search-outer .head h2 span {
  font-size: var(--tp-fz-h3);
  color: var(--tp-heading-orange);
}
.search-outer .search-inner .entry-summary {
  margin-bottom: 40px;
}
.search-outer .search-inner .entry-summary a {
  text-decoration: none;
}
.search-outer .search-inner .entry-summary h3 {
  color: #292929;
  font-weight: var(--tp-fw-sbold);
}
.search-outer .search-inner .entry-summary p a {
  color: var(--tp-heading-orange);
  font-weight: var(--tp-fw-sbold);
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
header .top-row {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
  align-items: center;
}
header .top-row .logo a {
  display: block;
}
header .top-row .logo a img {
  max-width: 100%;
}
@media screen and (max-width: 1199px) {
  header .top-row {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 576px) {
  header .top-row {
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: center;
  }
}
header .navbar {
  padding-bottom: 0;
  flex-wrap: nowrap;
}
header .navbar ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
header .navbar ul li {
  display: inline-block;
  padding: 0 50px 0 0px;
  width: auto;
}
header .navbar ul li a {
  font-size: var(--tp-fz-h5);
  font-weight: var(--tp-fw-medium);
  color: var(--tp-common-white);
  text-decoration: none;
  line-height: normal;
}
header .navbar ul li a:hover {
  background: none;
  color: var(--tp-heading-spanred);
}
@media screen and (max-width: 1450px) {
  header .navbar ul li {
    padding: 0 25px;
  }
}
@media screen and (max-width: 1199px) {
  header .navbar ul li {
    padding: 0 10px;
  }
}
header .navbar ul li:last-child {
  padding-right: 0px;
}
header .navbar ul li.dropdown {
  position: relative;
}
header .navbar ul li.dropdown a {
  padding-right: 18px;
  background: url(../images/drop.webp) no-repeat right center;
}
header .navbar ul li.dropdown ul {
  position: absolute;
  top: 26px;
  left: 0;
  width: 100%;
  display: none;
  background: var(--tp-common-white);
  padding: 26px 34px;
  min-width: 254px;
  box-shadow: 0px 18px 25px 0px rgba(0, 0, 0, 0.15);
}
header .navbar ul li.dropdown ul li {
  padding: 0;
  margin-bottom: 15px;
  display: block;
}
header .navbar ul li.dropdown ul li a {
  background: none;
  padding: 0;
  font-size: var(--tp-fz-font2);
  font-weight: var(--tp-fw-light);
  text-transform: uppercase;
  color: #555555;
  display: block;
}
header .navbar ul li.dropdown ul li a img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
}
header .navbar ul li.dropdown ul li a span {
  width: 16px;
  margin-right: 11px;
}
header .navbar ul li.dropdown ul li:last-child {
  margin-bottom: 0;
}
header .navbar ul li.dropdown ul > li.active > a {
  color: var(--tp-heading-spanred);
}
header .navbar ul li.dropdown:hover ul {
  display: block;
}
header .navbar ul li.dropdown:hover ul li:hover a {
  color: var(--tp-heading-spanred);
}
header .navbar ul > li.active > a {
  color: var(--tp-heading-spanred);
}
@media screen and (max-width: 991px) {
  header .navbar {
    display: none;
  }
}
header .navbar .input-box {
  cursor: pointer;
  transition: all 0.1s ease;
  margin-right: 16px;
  position: relative;
}
header .navbar .input-box button {
  background: none;
  border: none;
}
header .navbar .input-box .search-box {
  position: absolute;
  top: 40px;
  right: 0px;
  border-top: 4px solid var(--tp-heading-spanred);
  display: none;
  z-index: 9;
}
header .navbar .input-box .search-box input {
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  padding: 10px 8px;
}
header .navbar .input-box .search-box input:focus-visible {
  outline: none;
}
@media screen and (max-width: 991px) {
  header .navbar .input-box .search-box input {
    max-width: 100%;
    width: 100%;
    padding-right: 50px;
  }
}
@media screen and (max-width: 991px) {
  header .navbar .input-box .search-box {
    display: block;
    position: relative;
    right: 0;
    max-width: 100%;
    top: 0;
  }
}
header .navbar .input-box .search-box.showhide {
  display: block;
}
@media screen and (max-width: 991px) {
  header .navbar .input-box .search-box.showhide {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  header .navbar .input-box {
    position: relative;
    right: 0;
    max-width: 100%;
    top: 0;
  }
  header .navbar .input-box .search.search-head {
    float: right;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
  }
}
@media screen and (max-width: 991px) {
  header .navbar .input-box {
    margin-bottom: 35px;
  }
}
header .navbar .contact-sec {
  border-radius: 26px;
  border: 1px solid var(--tp-heading-spanred);
  width: 196px;
  padding: 10px 20px;
}
header .navbar .contact-sec a {
  text-decoration: none;
  color: var(--tp-text-3);
}
header .nav-mobile {
  display: none;
}
@media screen and (max-width: 991px) {
  header .nav-mobile {
    display: block;
  }
}

.scrollheader1 {
  background: #1b5499;
}

header.scrollheader {
  position: fixed;
  background: #1b5499;
  z-index: 99999;
  box-shadow: 0px 5px 13px 0px rgba(0, 0, 0, 0.14);
}
header.scrollheader .top-row {
  padding-top: 0px;
  padding-bottom: 0px;
}
header.scrollheader .navbar {
  padding-bottom: 30px;
  padding-top: 30px;
}
.banner-outer {
  position: relative;
}
.banner-outer .banner-slider {
  margin-bottom: 0;
  line-height: 0;
}
.banner-outer .banner-slide {
  position: relative;
  margin-bottom: 0;
  line-height: 0;
}
.banner-outer .banner-slide figure {
  margin-bottom: 0;
}
.banner-outer .banner-slide figure img, .banner-outer .banner-slide figure video {
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .banner-outer .banner-slide figure img, .banner-outer .banner-slide figure video {
    height: 450px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 767px) {
  .banner-outer .banner-slide figure img, .banner-outer .banner-slide figure video {
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.banner-outer .banner-slide .banner-text-outer {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  align-items: center;
  display: flex;
  margin-top: 50px;
  top: 0;
}
.banner-outer .banner-slide .banner-text-outer .banner-text-width {
  max-width: 830px;
}
.banner-outer .banner-slide .banner-text-outer .banner-text-width P {
  font-size: calc(var(--tp-fz-p) + 2px);
  line-height: normal;
  color: var(--tp-common-white);
}
.banner-outer .banner-slide .banner-text-outer .banner-text-width h1 {
  font-size: var(--tp-fz-h1);
  color: var(--tp-common-white);
  font-weight: var(--tp-fw-bold);
  line-height: 67px;
}
@media screen and (max-width: 1399px) {
  .banner-outer .banner-slide .banner-text-outer .banner-text-width h1 {
    font-size: var(--tp-fz-h2);
    line-height: normal;
  }
}
@media screen and (max-width: 767px) {
  .banner-outer .banner-slide .banner-text-outer .banner-text-width h1 {
    font-size: 25px;
  }
}
@media screen and (max-width: 467px) {
  .banner-outer .banner-slide .banner-text-outer .banner-text-width h1 {
    font-size: calc(var(--tp-fz-h2) - 11px);
  }
}
.banner-outer .banner-slide .banner-text-outer .banner-text-width a {
  background: var(--tp-heading-spanred);
  color: var(--tp-common-white);
  font-size: var(--tp-fz-a);
  color: var(--tp-common-white);
  font-weight: var(--tp-fw-sbold);
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease-out 0s;
  height: 48px;
  padding: 10px 35px;
  display: inline-block;
  border-radius: 3px;
  border: 1px solid var(--tp-common-white);
  line-height: 25px;
  border: 1px solid var(--tp-heading-spanred);
  margin-top: 30px;
}
.banner-outer .banner-slide .banner-text-outer .banner-text-width a img {
  margin-left: 5px;
  transition: all 0.1s ease-out 0s;
  vertical-align: middle;
  display: inline-block;
  margin-top: -3px;
}
.banner-outer .banner-slide .banner-text-outer .banner-text-width a:hover {
  background: var(--tp-heading-orange);
  border-color: var(--tp-heading-orange);
}
.banner-outer .banner-slide .banner-text-outer .banner-text-width a:hover {
  background: transparent;
  color: var(--tp-common-white);
  border: 1px solid var(--tp-heading-spanred);
}
@media screen and (max-width: 767px) {
  .banner-outer .banner-slide .banner-text-outer .banner-text-width a {
    margin-top: 0px;
  }
}
@media screen and (max-width: 767px) {
  .banner-outer .banner-slide .banner-text-outer .banner-text-width {
    max-width: 600px;
  }
}
@media screen and (max-width: 1199px) {
  .banner-outer .banner-slide .banner-text-outer {
    margin-top: 140px;
  }
}
@media screen and (max-width: 991px) {
  .banner-outer .banner-slide .banner-text-outer {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .banner-outer .banner-slide .banner-text-outer {
    margin-top: 60px;
  }
}
@media screen and (max-width: 500px) {
  .banner-outer .banner-slide .banner-text-outer {
    margin-top: 40px;
  }
}
.banner-outer .slider-dots-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 34px;
  width: 100%;
}
.banner-outer .slider-dots-box .slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
}
.banner-outer .slider-dots-box .slider-dots button {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
  border: 0;
  background-color: transparent;
  margin: 0 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  transition: 0.3s all;
  position: relative;
  z-index: 0;
}
.banner-outer .slider-dots-box .slider-dots button::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: var(--tp-icon-blue);
  border: 2px solid var(--tp-common-white);
}
.banner-outer .slider-dots-box .slick-active button {
  width: 40px;
  height: 40px;
}
.banner-outer .slider-dots-box .slick-active button::after {
  content: none;
  display: none;
}
.banner-outer .slider-dots-box .slick-active button::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  border: 2px solid var(--tp-common-white);
  border-radius: 50%;
}
@media screen and (max-width: 1399px) {
  .banner-outer .slider-dots-box {
    bottom: 20px;
  }
}

.banner-outer.error-404.not-found .banner-text-outer .head-title {
  color: #fff;
}
.banner-outer.error-404.not-found .banner-text-outer .head-title a {
  background: var(--tp-heading-spanred);
  color: var(--tp-common-white);
  font-size: var(--tp-fz-a);
  color: var(--tp-common-white);
  font-weight: var(--tp-fw-sbold);
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease-out 0s;
  height: 48px;
  padding: 10px 35px;
  display: inline-block;
  border-radius: 3px;
  border: 1px solid var(--tp-common-white);
  line-height: 25px;
  border: 1px solid var(--tp-heading-spanred);
  margin-top: 30px;
}
.banner-outer.error-404.not-found .banner-text-outer .head-title a img {
  margin-left: 5px;
  transition: all 0.1s ease-out 0s;
  vertical-align: middle;
  display: inline-block;
  margin-top: -3px;
}
.banner-outer.error-404.not-found .banner-text-outer .head-title a:hover {
  background: var(--tp-heading-orange);
  border-color: var(--tp-heading-orange);
}
.banner-outer.error-404.not-found .banner-text-outer .head-title a:hover {
  background: transparent;
  color: var(--tp-common-white);
  border: 1px solid var(--tp-heading-spanred);
}
@media screen and (max-width: 767px) {
  .banner-outer.error-404.not-found .banner-text-outer .head-title a {
    margin-top: 0px;
  }
}

footer {
  padding: 60px 0px 0px;
  background: var(--tp-common-white);
  clear: left;
}
footer .footer-logo {
  margin-bottom: 50px;
}
footer .footer-main {
  display: flex;
  margin-left: -15px;
  margin-left: -15px;
  padding-bottom: 40px;
}
footer .footer-main .footer-bx {
  width: 25%;
  padding: 0px 15px;
}
footer .footer-main .footer-bx .footer-logo {
  margin-bottom: 25px;
}
footer .footer-main .footer-bx p {
  font-size: var(--tp-fz-font);
  color: #4E4E4E;
  line-height: normal;
  text-align: justify;
}
@media screen and (max-width: 991px) {
  footer .footer-main .footer-bx p {
    text-align: left;
  }
}
@media screen and (max-width: 576px) {
  footer .footer-main .footer-bx p {
    margin-bottom: 0;
  }
}
footer .footer-main .footer-bx:nth-child(1) {
  width: 40%;
  padding-right: 0px;
}
@media screen and (max-width: 1450px) {
  footer .footer-main .footer-bx:nth-child(1) {
    padding-right: 50px;
  }
}
@media screen and (max-width: 991px) {
  footer .footer-main .footer-bx:nth-child(1) {
    width: 50%;
    padding-right: 20px;
  }
}
@media screen and (max-width: 576px) {
  footer .footer-main .footer-bx:nth-child(1) {
    width: 100%;
    padding-right: 0;
  }
}
footer .footer-main .footer-bx:nth-child(2) {
  width: 25%;
}
@media screen and (max-width: 991px) {
  footer .footer-main .footer-bx:nth-child(2) {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  footer .footer-main .footer-bx:nth-child(2) {
    width: 100%;
  }
}
footer .footer-main .footer-bx:nth-child(3) {
  width: 20%;
}
@media screen and (max-width: 991px) {
  footer .footer-main .footer-bx:nth-child(3) {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  footer .footer-main .footer-bx:nth-child(3) {
    width: 100%;
  }
}
footer .footer-main .footer-bx h3 {
  font-size: var(--tp-fz-h5);
  color: var(--tp-common-grey);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: var(--tp-fw-sbold);
}
footer .footer-main .footer-bx ul li {
  display: block;
  margin-bottom: 10px;
}
footer .footer-main .footer-bx ul li a {
  font-size: var(--tp-fz-p);
  color: #000000;
  letter-spacing: 0.08px;
  text-transform: capitalize;
  text-decoration: none;
  opacity: 0.7;
  transition: all 0.5s ease-out 0s;
}
footer .footer-main .footer-bx ul li:hover a {
  color: #1b5499;
  opacity: 1;
}
footer .footer-main .footer-bx .footer-information ul {
  display: flex;
}
footer .footer-main .footer-bx .footer-information ul li {
  padding-bottom: 15px;
  margin-right: 25px;
}
footer .footer-main .footer-bx .footer-information ul li a {
  color: var(--tp-common-black);
  font-size: 20px;
  opacity: 1;
}
footer .footer-main .footer-bx .footer-information ul li a i {
  color: var(--tp-common-black);
}
footer .footer-main .footer-bx .footer-information ul li a i:hover {
  color: #1b5499;
}
@media screen and (max-width: 991px) {
  footer .footer-main .footer-bx {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  footer .footer-main .footer-bx {
    width: 100%;
  }
  footer .footer-main .footer-bx:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 991px) {
  footer .footer-main {
    flex-wrap: wrap;
  }
}
footer .copy-right {
  padding: 10px 0px;
  border-top: 1px solid rgba(9, 9, 9, 0.0823529412);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .copy-right p {
  font-size: var(--tp-fz-font);
  font-weight: var(--tp-fw-light);
  line-height: 112.5%;
  text-transform: capitalize;
  letter-spacing: 0.05px;
  color: #535353;
  opacity: 0.5;
  margin: 0;
}
footer .copy-right a {
  font-size: var(--tp-fz-font);
  font-weight: var(--tp-fw-light);
  line-height: 112.5%;
  text-transform: uppercase;
  letter-spacing: 0.05px;
  color: #535353;
  opacity: 0.5;
  margin: 0;
  text-decoration: none;
}
footer .copy-right a:hover {
  color: #1b5499;
  opacity: 1;
}
@media screen and (max-width: 450px) {
  footer .copy-right {
    flex-wrap: wrap;
  }
  footer .copy-right p {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  footer {
    padding-top: 50px;
  }
}

#onlineService {
  position: absolute;
  right: 45px;
  top: 60%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #onlineService .offside {
    display: flex;
  }
}
#onlineService .offside li {
  width: 45px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3137254902);
  margin-bottom: 10px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
#onlineService .offside li a {
  border-radius: 50%;
  font-size: 16px;
}
#onlineService .offside li a i {
  color: #fff;
}
#onlineService .offside li:hover {
  background: var(--tp-heading-spanred);
}
@media (max-width: 1399px) {
  #onlineService .offside li {
    width: 46px;
    height: 46px;
  }
}
@media screen and (max-width: 767px) {
  #onlineService .offside li {
    margin-right: 10px;
  }
}
@media (max-width: 700px) {
  #onlineService .offside li {
    margin-right: 6px;
  }
}
@media (max-width: 400px) {
  #onlineService .offside li {
    margin-right: 6px;
  }
}
@media (max-width: 1399px) {
  #onlineService {
    top: 50%;
  }
}
@media (max-width: 1199px) {
  #onlineService {
    top: 35%;
  }
}
@media (max-width: 991px) {
  #onlineService {
    top: 25%;
  }
}
@media (max-width: 767px) {
  #onlineService {
    right: 12px;
    top: 39%;
  }
}
@media (max-width: 700px) {
  #onlineService {
    top: 38%;
  }
}
@media (max-width: 430px) {
  #onlineService {
    top: 39%;
  }
}
@media (max-width: 390px) {
  #onlineService {
    top: 39%;
  }
}

.second-top {
  top: 28% !important;
}
@media (max-width: 1399px) {
  .second-top {
    top: 18% !important;
  }
}
@media (max-width: 992px) {
  .second-top {
    top: 24% !important;
  }
}
@media (max-width: 767px) {
  .second-top {
    top: 37% !important;
    left: 30px;
  }
}
@media (max-width: 700px) {
  .second-top {
    top: 38% !important;
  }
}

.slicknav_menu {
  font-size: 16px;
  box-sizing: border-box;
  padding: 5px;
}
.slicknav_menu * {
  box-sizing: border-box;
}
.slicknav_menu .slicknav_menutxt {
  color: #fff;
  font-weight: bold;
  text-shadow: 0 1px 3px var(--tp-heading-orange);
}
.slicknav_menu .slicknav_icon-bar {
  background-color: var(--tp-common-white);
}

.slicknav_btn {
  text-decoration: none;
  text-shadow: 0 1px 1px var(--tp-heading-orange);
  border-radius: 4px;
}

.slicknav_nav {
  color: #fff;
  margin: 0;
  padding: 0;
  font-size: 0.875em;
  list-style: none;
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  top: 76px;
  background: var(--tp-bg-1);
  max-width: 720px;
  margin: 0 auto;
  right: 0;
}
.slicknav_nav li:last-child a {
  border-bottom: none;
}
.slicknav_nav ul {
  list-style: none;
  overflow: hidden;
  padding: 0;
  margin: 0 0 0 20px;
}
.slicknav_nav .slicknav_row {
  padding: 5px 10px;
  margin: 2px 5px;
}
.slicknav_nav .slicknav_row:hover {
  border-radius: 0px;
  color: var(--tp-grey-1);
}
.slicknav_nav a {
  padding: 5px 10px;
  margin: 2px 5px;
  text-decoration: none;
  color: var(--tp-grey-1);
  font-weight: var(--tp-fw-medium);
  border-bottom: 1px solid #c1cfdf;
}
.slicknav_nav a span {
  margin-right: 8px;
}
.slicknav_nav a:hover {
  border-radius: 6px;
  color: var(--tp-heading-spanred);
}
.slicknav_nav .slicknav_txtnode {
  margin-left: 15px;
}
.slicknav_nav .slicknav_item a {
  padding: 0;
  margin: 0;
  border: none;
}
.slicknav_nav .slicknav_parent-link a {
  padding: 0;
  margin: 0;
}
.slicknav_nav .slicknav_parent ul li a {
  font-weight: var(--tp-fw-regular);
}

.slicknav_brand {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  padding: 7px 12px;
  height: 44px;
}

.slicknav_btn {
  position: relative;
  display: block;
  vertical-align: middle;
  float: right;
  line-height: 1.125em;
  cursor: pointer;
}
.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar {
  margin-top: 8px;
}

.slicknav_menu {
  *zoom: 1;
  display: none;
}
.slicknav_menu .slicknav_menutxt {
  display: block;
  line-height: 1.188em;
  float: left;
}
.slicknav_menu .slicknav_icon {
  float: left;
  width: 30px;
  height: 25px;
  margin: 0.188em 0 0 0.438em;
}
.slicknav_menu .slicknav_icon:before {
  background: transparent;
  width: 1.125em;
  height: 0.875em;
  display: block;
  content: "";
  position: absolute;
}
.slicknav_menu .slicknav_no-text {
  margin: 0;
}
.slicknav_menu .slicknav_icon-bar {
  display: block;
  width: 30px;
  height: 2px;
  border-radius: 1px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}
.slicknav_menu:before {
  content: " ";
  display: table;
}
.slicknav_menu:after {
  content: " ";
  display: table;
  clear: both;
}
@media screen and (max-width: 991px) {
  .slicknav_menu {
    display: block;
    order: 3;
    margin-left: 10px;
  }
}

.slicknav_nav {
  clear: both;
}
.slicknav_nav ul {
  display: block;
}
.slicknav_nav li {
  display: block;
}
.slicknav_nav .slicknav_arrow {
  font-size: 0.8em;
  margin: 0 0 0 0.4em;
}
.slicknav_nav .slicknav_item {
  cursor: pointer;
}
.slicknav_nav .slicknav_item a {
  display: inline;
}
.slicknav_nav .slicknav_row {
  display: block;
}
.slicknav_nav a {
  display: block;
}
.slicknav_nav .slicknav_parent-link a {
  display: inline;
}

.slicknav_brand {
  float: left;
}

.our-client-outer {
  padding: 60px 0px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .our-client-outer {
    padding: 30px 0;
  }
}
.our-client-outer .head {
  padding-bottom: 0px;
}
.our-client-outer .head h2 {
  color: var(--tp-common-white);
}
.our-client-outer .our-clients-main .our-clients-slider .clients-text {
  text-align: center;
  position: relative;
  padding: 50px 110px 0 110px;
}
.our-client-outer .our-clients-main .our-clients-slider .clients-text p {
  color: var(--tp-common-white);
  font-size: var(--tp-fz-p);
}
.our-client-outer .our-clients-main .our-clients-slider .clients-text h5 {
  color: var(--tp-heading-spanred);
  font-size: 18px;
  text-transform: uppercase;
}
.our-client-outer .our-clients-main .our-clients-slider .clients-text h6 {
  color: var(--tp-common-white);
  font-size: 14px;
  text-transform: capitalize;
}
.our-client-outer .our-clients-main .our-clients-slider .clients-text:before {
  content: "";
  position: absolute;
  background: url(../images/tp.webp) no-repeat;
  width: 100%;
  height: 37px;
  width: 49px;
  top: 0%;
  right: 10%;
}
.our-client-outer .our-clients-main .our-clients-slider .clients-text:after {
  content: "";
  position: absolute;
  background: url(../images/bot.webp) no-repeat;
  height: 37px;
  width: 49px;
  bottom: 20px;
  left: 11%;
}
@media screen and (max-width: 576px) {
  .our-client-outer .our-clients-main .our-clients-slider .clients-text:after {
    bottom: -14px;
  }
}
@media screen and (max-width: 450px) {
  .our-client-outer .our-clients-main .our-clients-slider .clients-text:after {
    bottom: 74px;
  }
}
@media screen and (max-width: 576px) {
  .our-client-outer .our-clients-main .our-clients-slider .clients-text {
    padding: 40px 40px 0 40px;
  }
}
.our-client-outer .our-clients-main .our-clients-slider .slick-list.draggable {
  padding: 10px 0px 40px;
}
.our-client-outer .our-clients-main .our-clients-slider button.slick-arrow {
  width: 51px;
  height: 51px;
  border-radius: 60px;
  border: 1px solid #A0A0A0;
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  .our-client-outer .our-clients-main .our-clients-slider button.slick-arrow {
    width: 40px;
    height: 40px;
    border-radius: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .our-client-outer .our-clients-main .our-clients-slider button.slick-arrow {
    width: 30px;
    height: 30px;
    border-radius: 30px;
  }
}
.our-client-outer .our-clients-main .our-clients-slider button.slick-prev {
  left: 0px;
  top: 50%;
  background: transparent url(../images/arr1.png) center center no-repeat;
  transform: rotate(0deg);
}
.our-client-outer .our-clients-main .our-clients-slider button.slick-prev:before {
  display: none;
}
.our-client-outer .our-clients-main .our-clients-slider button.slick-prev:hover {
  background: var(--tp-heading-spanred) url(../images/arr1.png) center center no-repeat;
  border: 1px solid var(--tp-heading-spanred);
}
@media screen and (max-width: 1399px) {
  .our-client-outer .our-clients-main .our-clients-slider button.slick-prev {
    left: 0px;
  }
}
@media screen and (max-width: 576px) {
  .our-client-outer .our-clients-main .our-clients-slider button.slick-prev {
    top: 300px;
    background-size: 8px auto !important;
  }
}
.our-client-outer .our-clients-main .our-clients-slider button.slick-next {
  right: 0px;
  top: 50%;
  background: transparent url(../images/arr2.png) center center no-repeat;
  transform: rotate(0deg);
}
.our-client-outer .our-clients-main .our-clients-slider button.slick-next:before {
  display: none;
}
.our-client-outer .our-clients-main .our-clients-slider button.slick-next:hover {
  background: var(--tp-heading-spanred) url(../images/arr2.png) center center no-repeat;
  border: 1px solid var(--tp-heading-spanred);
  transform: rotate(0deg);
}
@media screen and (max-width: 576px) {
  .our-client-outer .our-clients-main .our-clients-slider button.slick-next {
    top: 300px;
    background-size: 8px auto !important;
  }
}

.analytical-system {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .analytical-system {
    padding: 30px 0;
  }
}
.analytical-system .analytics-system-row {
  display: flex;
}
@media screen and (max-width: 991px) {
  .analytical-system .analytics-system-row {
    flex-wrap: wrap;
  }
}
.analytical-system .analytics-system-row .analytics-system-bx {
  width: 25%;
  margin-right: 25px;
}
.analytical-system .analytics-system-row .analytics-system-bx .analytics-top {
  position: relative;
}
.analytical-system .analytics-system-row .analytics-system-bx .analytics-top figure {
  position: relative;
}
.analytical-system .analytics-system-row .analytics-system-bx .analytics-top figure img {
  width: 100%;
}
.analytical-system .analytics-system-row .analytics-system-bx .analytics-top figure::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #000000 150%);
}
.analytical-system .analytics-system-row .analytics-system-bx .analytics-top .cont-analy {
  position: absolute;
  top: 15px;
  display: flex;
  left: 1%;
  padding-left: 10px;
  padding-right: 10px;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between;
}
.analytical-system .analytics-system-row .analytics-system-bx .analytics-top .cont-analy h5 {
  color: var(--tp-common-white);
  font-size: 20px;
  text-transform: capitalize;
}
@media screen and (max-width: 991px) {
  .analytical-system .analytics-system-row .analytics-system-bx .analytics-top {
    margin-right: 18px;
  }
}
@media screen and (max-width: 467px) {
  .analytical-system .analytics-system-row .analytics-system-bx .analytics-top {
    margin-right: 0px;
  }
}
.analytical-system .analytics-system-row .analytics-system-bx:last-child {
  margin-right: 0;
}
@media screen and (max-width: 991px) {
  .analytical-system .analytics-system-row .analytics-system-bx {
    width: 50%;
    margin-right: 0;
  }
}
@media screen and (max-width: 467px) {
  .analytical-system .analytics-system-row .analytics-system-bx {
    width: 100%;
  }
}
.analytical-system .img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9999;
  right: 0;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 0.5s ease;
  box-shadow: 0px 23px 23px 0px rgba(0, 0, 0, 0.1);
}
.analytical-system .img-overlay img {
  width: 100%;
}
.analytical-system .img-overlay .analytics-text {
  background: #fff;
  padding: 25px 21px 40px 21px;
}
.analytical-system .img-overlay .analytics-text a {
  text-decoration: none;
}
.analytical-system .img-overlay .analytics-text h6 {
  font-size: 20px;
  color: var(--tp-common-black);
  font-weight: 500;
  margin-bottom: 23px;
}
@media screen and (max-width: 1399px) {
  .analytical-system .img-overlay .analytics-text h6 {
    margin-bottom: 12px;
  }
}
.analytical-system .img-overlay .analytics-text p {
  font-size: var(--tp-fz-p);
  text-align: justify;
}
@media screen and (max-width: 1399px) {
  .analytical-system .img-overlay .analytics-text p {
    font-size: 16px;
  }
}
.analytical-system .img-overlay .analytics-text a {
  color: var(--tp-common-black);
  font-weight: 600;
  text-transform: capitalize;
}
.analytical-system .img-overlay .analytics-text a img {
  width: auto;
}
@media screen and (max-width: 1399px) {
  .analytical-system .img-overlay .analytics-text {
    padding: 17px 21px 40px 21px;
  }
}
@media screen and (max-width: 991px) {
  .analytical-system .img-overlay .analytics-text {
    padding: 49px 21px 40px 21px;
  }
}
@media screen and (max-width: 427px) {
  .analytical-system .img-overlay .analytics-text {
    padding: 79px 21px 104px 21px;
  }
}
.analytical-system .analytics-top:hover .img-overlay {
  height: 100%;
}

.cutting-outer {
  padding: 60px 0;
  background-image: url(../images/cut-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .cutting-outer {
    padding: 30px 0;
  }
}
@media screen and (max-width: 1024px) {
  .cutting-outer .head {
    padding-bottom: 30px;
  }
}
.cutting-outer .head h2 {
  color: var(--tp-common-white);
}
.cutting-outer .cutting-main {
  display: flex;
  flex-wrap: wrap;
}
.cutting-outer .cutting-main .our-patents-bx {
  width: 50%;
  padding: 0px 15px 30px;
  display: flex;
}
.cutting-outer .cutting-main .our-patents-bx .our-patents-area {
  display: flex;
  overflow: hidden;
}
@media screen and (max-width: 427px) {
  .cutting-outer .cutting-main .our-patents-bx .our-patents-area .our-patents-fig {
    width: 100%;
  }
}
.cutting-outer .cutting-main .our-patents-bx .our-patents-area .our-patents-fig figure {
  margin: 0;
}
.cutting-outer .cutting-main .our-patents-bx .our-patents-area .our-patents-fig figure img {
  transition: all 0.5s ease-in;
}
@media screen and (max-width: 427px) {
  .cutting-outer .cutting-main .our-patents-bx .our-patents-area .our-patents-fig figure img {
    width: 100%;
  }
}
.cutting-outer .cutting-main .our-patents-bx .our-patents-area .our-patners-details {
  padding-left: 24px;
  background: rgba(255, 255, 255, 0.0823529412);
  padding-top: 39px;
  padding-right: 15px;
}
.cutting-outer .cutting-main .our-patents-bx .our-patents-area .our-patners-details h6 {
  font-size: 20px;
  color: var(--tp-common-white);
}
.cutting-outer .cutting-main .our-patents-bx .our-patents-area .our-patners-details p {
  font-size: var(--tp-fz-p);
  text-align: justify;
  color: var(--tp-common-white);
}
@media screen and (max-width: 500px) {
  .cutting-outer .cutting-main .our-patents-bx .our-patents-area .our-patners-details p {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .cutting-outer .cutting-main .our-patents-bx .our-patents-area .our-patners-details {
    padding-top: 50px;
  }
}
@media screen and (max-width: 576px) {
  .cutting-outer .cutting-main .our-patents-bx .our-patents-area .our-patners-details {
    padding-top: 30px;
  }
}
@media screen and (max-width: 500px) {
  .cutting-outer .cutting-main .our-patents-bx .our-patents-area .our-patners-details {
    padding-top: 12px;
    padding-left: 11px;
  }
}
.cutting-outer .cutting-main .our-patents-bx .our-patents-area:hover .our-patents-fig figure img {
  transform: scale(1.1);
}
@media screen and (max-width: 427px) {
  .cutting-outer .cutting-main .our-patents-bx .our-patents-area {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1024px) {
  .cutting-outer .cutting-main .our-patents-bx {
    width: 100%;
  }
}

.mind-outer {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .mind-outer {
    padding: 30px 0;
  }
}
@media (max-width: 390px) {
  .mind-outer {
    padding: 30px 0 70px;
  }
}
.mind-outer .mind-inner-main {
  display: flex;
  align-items: center;
}
.mind-outer .mind-inner-main .mind-bx-right {
  width: 40%;
}
.mind-outer .mind-inner-main .mind-bx-right figure {
  margin: 0;
}
.mind-outer .mind-inner-main .mind-bx-right figure img {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .mind-outer .mind-inner-main .mind-bx-right {
    width: 100%;
  }
}
.mind-outer .mind-inner-main .mind-bx-left {
  width: 60%;
  position: relative;
  padding-left: 37px;
}
.mind-outer .mind-inner-main .mind-bx-left:before {
  content: "";
  position: absolute;
  background: url(../images/tes-b.webp);
  width: 100%;
  height: 37px;
  width: 49px;
  top: -52px;
  left: 4%;
}
@media screen and (max-width: 991px) {
  .mind-outer .mind-inner-main .mind-bx-left:before {
    top: 15px;
    left: 0;
  }
}
.mind-outer .mind-inner-main .mind-bx-left:after {
  content: "";
  position: absolute;
  background: url(../images/tes-a.webp);
  height: 37px;
  width: 49px;
  bottom: -33px;
  right: 0%;
}
@media screen and (max-width: 450px) {
  .mind-outer .mind-inner-main .mind-bx-left:after {
    bottom: 2px;
  }
}
@media (max-width: 390px) {
  .mind-outer .mind-inner-main .mind-bx-left:after {
    bottom: -50px;
  }
}
.mind-outer .mind-inner-main .mind-bx-left h5 {
  color: var(--tp-heading-spanred);
  font-size: 24px;
  font-weight: 600;
}
.mind-outer .mind-inner-main .mind-bx-left h6 {
  font-size: 25px;
  color: #424242;
  font-weight: 500;
  padding-bottom: 26px;
  margin: 0;
}
.mind-outer .mind-inner-main .mind-bx-left p {
  color: #424242;
  font-size: var(--tp-fz-p);
  margin-bottom: 8px;
  text-align: justify;
}
@media screen and (max-width: 991px) {
  .mind-outer .mind-inner-main .mind-bx-left {
    width: 100%;
    padding-left: 0;
    padding-top: 60px;
  }
}
@media screen and (max-width: 991px) {
  .mind-outer .mind-inner-main {
    flex-wrap: wrap;
  }
}

.stay-outer {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .stay-outer {
    padding: 30px 0;
  }
}
.stay-outer .stay-ouer-main {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .stay-outer .stay-ouer-main {
    flex-wrap: wrap;
  }
}
.stay-outer .stay-ouer-main .stay-bx {
  width: 50%;
}
.stay-outer .stay-ouer-main .stay-bx figure {
  margin: 0;
  position: relative;
}
.stay-outer .stay-ouer-main .stay-bx figure img {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .stay-outer .stay-ouer-main .stay-bx figure img {
    width: 100%;
  }
}
.stay-outer .stay-ouer-main .stay-bx figure .date-btn {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--tp-heading-spanred);
  font-size: var(--tp-fz-a);
  color: var(--tp-common-white);
  font-weight: var(--tp-fw-sbold);
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease-out 0s;
  height: 48px;
  padding: 10px 20px;
  display: inline-block;
  line-height: 25px;
  border: 1px solid var(--tp-heading-spanred);
  margin-top: 8px;
}
.stay-outer .stay-ouer-main .stay-bx figure .date-btn img {
  width: auto;
}
.stay-outer .stay-ouer-main .stay-bx figure .date-btn:hover {
  background: transparent;
  color: var(--tp-text-body);
  border: 1px solid var(--tp-heading-spanred);
  color: var(--tp-common-white);
}
.stay-outer .stay-ouer-main .stay-bx figure .cmc-btn {
  position: absolute;
  left: 3%;
  bottom: 15px;
}
.stay-outer .stay-ouer-main .stay-bx figure .cmc-btn h5 {
  color: var(--tp-common-white);
  font-size: 20px;
  font-weight: 600;
}
.stay-outer .stay-ouer-main .stay-bx figure .cmc-btn a {
  text-decoration: none;
  color: var(--tp-common-white);
}
.stay-outer .stay-ouer-main .stay-bx figure .cmc-btn a img {
  width: auto;
}
@media screen and (max-width: 1024px) {
  .stay-outer .stay-ouer-main .stay-bx figure .cmc-btn a img {
    width: auto;
  }
}
.stay-outer .stay-ouer-main .stay-bx .stay-area {
  padding-left: 15px;
}
.stay-outer .stay-ouer-main .stay-bx .stay-area .stay-area-bx {
  border: 1px solid var(--tp-heading-spanred);
  display: flex;
  padding: 9px;
  margin-bottom: 12px;
}
.stay-outer .stay-ouer-main .stay-bx .stay-area .stay-area-bx .stay-img {
  min-width: 114px;
  display: flex;
}
.stay-outer .stay-ouer-main .stay-bx .stay-area .stay-area-bx .stay-img img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.stay-outer .stay-ouer-main .stay-bx .stay-area .stay-area-bx .stay-cont {
  padding-left: 20px;
}
.stay-outer .stay-ouer-main .stay-bx .stay-area .stay-area-bx .date-btn {
  font-size: var(--tp-fz-a);
  font-weight: var(--tp-fw-sbold);
  text-transform: uppercase;
}
.stay-outer .stay-ouer-main .stay-bx .stay-area .stay-area-bx:hover {
  background: var(--tp-heading-spanred);
}
.stay-outer .stay-ouer-main .stay-bx .stay-area .stay-area-bx:hover .date-btn {
  color: #fff;
}
.stay-outer .stay-ouer-main .stay-bx .stay-area .stay-area-bx:hover h6 {
  color: var(--tp-common-white);
}
.stay-outer .stay-ouer-main .stay-bx .stay-area .stay-area-bx:hover p {
  color: var(--tp-common-white);
}
.stay-outer .stay-ouer-main .stay-bx .stay-area .stay-area-bx:hover a {
  text-decoration: none;
  color: var(--tp-common-white);
}
.stay-outer .stay-ouer-main .stay-bx .stay-area .stay-area-bx h6 {
  color: var(--tp-common-black);
  font-weight: 600;
  margin: 0;
  padding-bottom: 14px;
}
.stay-outer .stay-ouer-main .stay-bx .stay-area .stay-area-bx p {
  color: var(--tp-common-black);
  margin: 0;
  font-size: var(--tp-fz-p);
  padding-bottom: 18px;
}
.stay-outer .stay-ouer-main .stay-bx .stay-area .stay-area-bx a {
  text-decoration: none;
  color: var(--tp-common-black);
}
@media screen and (max-width: 1024px) {
  .stay-outer .stay-ouer-main .stay-bx .stay-area {
    padding-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .stay-outer .stay-ouer-main .stay-bx:last-child {
    padding-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .stay-outer .stay-ouer-main .stay-bx {
    width: 100%;
  }
}
.stay-outer .stay-btn {
  text-align: center;
}
.stay-outer .stay-btn a {
  background: var(--tp-heading-spanred);
  color: var(--tp-common-white);
  font-size: var(--tp-fz-a);
  color: var(--tp-common-white);
  font-weight: var(--tp-fw-sbold);
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease-out 0s;
  height: 48px;
  padding: 10px 35px;
  display: inline-block;
  border-radius: 3px;
  border: 1px solid var(--tp-common-white);
  line-height: 25px;
  border: 1px solid var(--tp-heading-spanred);
  margin-top: 30px;
}
.stay-outer .stay-btn a img {
  margin-left: 5px;
  transition: all 0.1s ease-out 0s;
  vertical-align: middle;
  display: inline-block;
  margin-top: -3px;
}
.stay-outer .stay-btn a:hover {
  background: var(--tp-heading-orange);
  border-color: var(--tp-heading-orange);
}
.stay-outer .stay-btn a:hover {
  background: transparent;
  color: var(--tp-text-body);
  border: 1px solid var(--tp-heading-spanred);
}

.home-contact {
  padding: 151px 0 130px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/cut-bg.webp);
}
.home-contact .head {
  text-align: left;
  max-width: 658px;
  padding-bottom: 0;
}
.home-contact .head h2 {
  color: var(--tp-common-white);
  font-size: 50px;
}
@media screen and (max-width: 991px) {
  .home-contact .head h2 {
    font-size: 33px;
  }
}
@media screen and (max-width: 500px) {
  .home-contact .head h2 {
    font-size: 22px;
  }
}
.home-contact .head a {
  background: var(--tp-heading-spanred);
  color: var(--tp-common-white);
  font-size: var(--tp-fz-a);
  color: var(--tp-common-white);
  font-weight: var(--tp-fw-sbold);
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease-out 0s;
  height: 48px;
  padding: 10px 35px;
  display: inline-block;
  border-radius: 3px;
  border: 1px solid var(--tp-common-white);
  line-height: 25px;
  border: 1px solid var(--tp-heading-spanred);
  margin-top: 30px;
}
.home-contact .head a img {
  margin-left: 5px;
  transition: all 0.1s ease-out 0s;
  vertical-align: middle;
  display: inline-block;
  margin-top: -3px;
}
.home-contact .head a:hover {
  background: var(--tp-heading-orange);
  border-color: var(--tp-heading-orange);
}
.home-contact .head a:hover {
  background: transparent;
  color: var(--tp-common-white);
  border: 1px solid var(--tp-heading-spanred);
}
@media screen and (max-width: 500px) {
  .home-contact .head a {
    margin-top: 6px;
  }
}
@media screen and (max-width: 1399px) {
  .home-contact {
    padding: 70px 0 70px 0;
  }
}
@media screen and (max-width: 500px) {
  .home-contact {
    padding: 30px 0 30px 0;
  }
}

.equip-outer {
  padding: 60px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/equip-banner.webp);
}
@media screen and (max-width: 767px) {
  .equip-outer {
    padding: 30px 0;
  }
}
.equip-outer .equip-inner-main .equip-row {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .equip-outer .equip-inner-main .equip-row {
    flex-wrap: wrap;
  }
}
.equip-outer .equip-inner-main .equip-row .equip-bx {
  width: 50%;
  padding-right: 50px;
}
.equip-outer .equip-inner-main .equip-row .equip-bx figure img {
  width: 100%;
}
.equip-outer .equip-inner-main .equip-row .equip-bx video {
  width: 100%;
}
.equip-outer .equip-inner-main .equip-row .equip-bx:nth-child(2n) {
  padding-right: 0;
}
@media screen and (max-width: 1024px) {
  .equip-outer .equip-inner-main .equip-row .equip-bx:nth-child(2n) {
    padding-top: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .equip-outer .equip-inner-main .equip-row .equip-bx {
    width: 100%;
    padding-right: 0;
  }
}
.equip-outer .equip-inner-main .equip-row .equip-bx p {
  font-size: var(--tp-fz-p);
}
.equip-outer .equip-inner-main .equip-row .counter-section .counter-row {
  display: flex;
}
@media screen and (max-width: 467px) {
  .equip-outer .equip-inner-main .equip-row .counter-section .counter-row {
    flex-wrap: wrap;
  }
}
.equip-outer .equip-inner-main .equip-row .counter-section .counter-row .counter-bx {
  width: 204px;
  height: 181px;
  text-align: center;
  box-shadow: 0px 16px 39.7px 0px rgb(247, 255, 210);
  position: relative;
  background: radial-gradient(circle at 100% 100%, #ffffff 0, #ffffff 3px, transparent 3px) 0% 0%/8px 8px no-repeat, radial-gradient(circle at 0 100%, #ffffff 0, #ffffff 3px, transparent 3px) 100% 0%/8px 8px no-repeat, radial-gradient(circle at 100% 0, #ffffff 0, #ffffff 3px, transparent 3px) 0% 100%/8px 8px no-repeat, radial-gradient(circle at 0 0, #ffffff 0, #ffffff 3px, transparent 3px) 100% 100%/8px 8px no-repeat, linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 2px) calc(100% - 2px) no-repeat, linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 3px) calc(100% - 3px) no-repeat, linear-gradient(180deg, transparent 0%, #B9D531 100%);
  margin-right: 17px;
  padding: 47px 13px;
  margin-bottom: 0;
}
.equip-outer .equip-inner-main .equip-row .counter-section .counter-row .counter-bx h3 {
  font-size: 50px;
  font-weight: 600;
  color: #A8CB00;
}
@media screen and (max-width: 767px) {
  .equip-outer .equip-inner-main .equip-row .counter-section .counter-row .counter-bx h3 {
    font-size: 50px;
  }
}
.equip-outer .equip-inner-main .equip-row .counter-section .counter-row .counter-bx h3:after {
  content: " +";
  display: inline-block;
  background: #A8CB00;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 1199px) {
  .equip-outer .equip-inner-main .equip-row .counter-section .counter-row .counter-bx h3 {
    font-size: 34px;
  }
}
.equip-outer .equip-inner-main .equip-row .counter-section .counter-row .counter-bx label {
  font-size: 14px;
}
@media screen and (max-width: 1199px) {
  .equip-outer .equip-inner-main .equip-row .counter-section .counter-row .counter-bx label {
    font-size: 12px;
  }
}
.equip-outer .equip-inner-main .equip-row .counter-section .counter-row .counter-bx:nth-child(2n) {
  top: 70px;
}
@media screen and (max-width: 1024px) {
  .equip-outer .equip-inner-main .equip-row .counter-section .counter-row .counter-bx:nth-child(2n) {
    top: 0;
  }
}
.equip-outer .equip-inner-main .equip-row .counter-section .counter-row .counter-bx:nth-child(3n) {
  top: 140px;
}
@media screen and (max-width: 1024px) {
  .equip-outer .equip-inner-main .equip-row .counter-section .counter-row .counter-bx:nth-child(3n) {
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .equip-outer .equip-inner-main .equip-row .counter-section .counter-row .counter-bx {
    height: auto;
  }
}
@media screen and (max-width: 467px) {
  .equip-outer .equip-inner-main .equip-row .counter-section .counter-row .counter-bx {
    margin-bottom: 20px;
  }
}

.page-numbers {
  display: flex;
  width: 30px;
  height: 30px;
  text-decoration: none;
  color: #A8CB00;
  border: 1px solid #A8CB00;
  align-items: center;
  justify-content: center;
  margin: 0px 3px;
}

.page-numbers.current {
  background: #A8CB00;
  color: #fff;
}

.mind-two-outer .mind-inner-main {
  flex-direction: row-reverse;
}
.mind-two-outer .mind-inner-main .mind-bx-right {
  padding-left: 70px;
}
@media screen and (max-width: 991px) {
  .mind-two-outer .mind-inner-main .mind-bx-right {
    padding-left: 0;
  }
}
.mind-two-outer .mind-inner-main .mind-bx-left {
  padding-right: 45px;
}
@media screen and (max-width: 991px) {
  .mind-two-outer .mind-inner-main .mind-bx-left {
    padding-right: 0;
  }
}

.mission-outer {
  padding: 60px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/equip-banner.webp);
}
@media screen and (max-width: 767px) {
  .mission-outer {
    padding: 30px 0;
  }
}
.mission-outer .mission-inner-row {
  display: flex;
}
.mission-outer .mission-inner-row .mission-bx {
  width: 33.3%;
  margin-right: 22px;
  text-align: center;
  box-shadow: 0px 16px 39.7px 0px rgb(247, 255, 210);
  position: relative;
  background: radial-gradient(circle at 100% 100%, #ffffff 0, #ffffff 3px, transparent 3px) 0% 0%/8px 8px no-repeat, radial-gradient(circle at 0 100%, #ffffff 0, #ffffff 3px, transparent 3px) 100% 0%/8px 8px no-repeat, radial-gradient(circle at 100% 0, #ffffff 0, #ffffff 3px, transparent 3px) 0% 100%/8px 8px no-repeat, radial-gradient(circle at 0 0, #ffffff 0, #ffffff 3px, transparent 3px) 100% 100%/8px 8px no-repeat, linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 2px) calc(100% - 2px) no-repeat, linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 3px) calc(100% - 3px) no-repeat, linear-gradient(180deg, transparent 0%, #B9D531 100%);
  padding: 19px 43px;
  margin-bottom: 0;
}
.mission-outer .mission-inner-row .mission-bx h2 {
  font-size: calc(var(--tp-fz-h3) - 2px);
  color: #040404;
  margin-bottom: 13px;
}
.mission-outer .mission-inner-row .mission-bx p {
  font-size: var(--tp-fz-p);
  color: #424242;
  margin-bottom: 10px;
}
@media screen and (max-width: 991px) {
  .mission-outer .mission-inner-row .mission-bx {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .mission-outer .mission-inner-row {
    flex-wrap: wrap;
  }
}

.our-story {
  padding: 60px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/we-banner.webp);
}
@media screen and (max-width: 767px) {
  .our-story {
    padding: 30px 0;
  }
}
.our-story .our-story-inner {
  display: flex;
  align-items: center;
}
.our-story .our-story-inner .head {
  text-align: left;
}
.our-story .our-story-inner .head h2 {
  color: var(--tp-common-white);
}
.our-story .our-story-inner .head p {
  color: var(--tp-common-white);
  font-size: var(--tp-fz-p);
}
.our-story .our-story-inner .our-story-left {
  width: 60%;
  padding-right: 40px;
}
@media screen and (max-width: 991px) {
  .our-story .our-story-inner .our-story-left {
    width: 100%;
    padding-right: 0;
  }
}
.our-story .our-story-inner .our-story-right {
  width: 40%;
  padding-left: 40px;
}
.our-story .our-story-inner .our-story-right figure img {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .our-story .our-story-inner .our-story-right {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 991px) {
  .our-story .our-story-inner {
    flex-wrap: wrap;
  }
}

.tech-second-section {
  padding: 60px 0;
}
@media screen and (max-width: 991px) {
  .tech-second-section {
    padding: 30px 0;
  }
}
.tech-second-section .head {
  padding-bottom: 0;
}
.tech-second-section .head h4 {
  font-size: calc(var(--tp-fz-h3) + 1px);
  font-weight: var(--tp-fw-medium);
  color: #424242;
  text-align: left;
  margin-top: 20px;
}
.tech-second-section .head p {
  text-align: left;
  font-size: var(--tp-fz-p);
  margin-bottom: 0;
}

.mass-outer {
  padding: 60px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/tech-banner-sec.webp);
}
@media screen and (max-width: 767px) {
  .mass-outer {
    padding: 30px 0;
  }
}
.mass-outer .mass-inner {
  display: flex;
  flex-wrap: wrap;
}
.mass-outer .mass-inner .mass-inner-bx {
  width: 33.3%;
  padding-right: 15px;
  margin-bottom: 15px;
}
@media (max-width: 1399px) {
  .mass-outer .mass-inner .mass-inner-bx:last-child {
    padding-right: 0 !important;
  }
  .mass-outer .mass-inner .mass-inner-bx:nth-child(3n) {
    padding-right: 0;
  }
}
@media (max-width: 1399px) and (max-width: 992px) {
  .mass-outer .mass-inner .mass-inner-bx:nth-child(3n) {
    padding-right: 15px;
  }
}
@media (max-width: 1399px) and (max-width: 400px) {
  .mass-outer .mass-inner .mass-inner-bx:nth-child(3n) {
    padding-right: 0;
  }
}
@media (max-width: 1399px) and (max-width: 992px) {
  .mass-outer .mass-inner .mass-inner-bx:nth-child(2n) {
    padding-right: 0;
  }
  .mass-outer .mass-inner .mass-inner-bx:nth-child(4n) {
    padding-right: 0;
  }
}
@media (max-width: 1399px) and (max-width: 400px) {
  .mass-outer .mass-inner .mass-inner-bx:nth-child(1n) {
    padding-right: 0;
  }
  .mass-outer .mass-inner .mass-inner-bx:nth-child(5n) {
    padding-right: 0;
  }
}
.mass-outer .mass-inner .mass-inner-bx figure {
  margin: 0;
  overflow: hidden;
}
.mass-outer .mass-inner .mass-inner-bx figure img {
  width: 100%;
  transform: scale(1);
  transition: all 0.7s;
}
.mass-outer .mass-inner .mass-inner-bx figure img:hover {
  transform: scale(1.3);
}
@media (max-width: 1399px) {
  .mass-outer .mass-inner .mass-inner-bx figure img {
    height: 268px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.mass-outer .mass-inner .mass-inner-bx .mass-text {
  padding: 62px 26px;
  background: rgba(255, 255, 255, 0.0823529412);
}
.mass-outer .mass-inner .mass-inner-bx .mass-text h6 {
  font-size: var(--tp-fz-h4);
  color: var(--tp-common-white);
  font-weight: var(--tp-fw-medium);
}
@media (max-width: 1024px) {
  .mass-outer .mass-inner .mass-inner-bx .mass-text h6 {
    font-size: var(--tp-fz-p);
  }
}
.mass-outer .mass-inner .mass-inner-bx .mass-text p {
  margin: 0;
  color: var(--tp-common-white);
  font-weight: var(--tp-fw-regular);
  text-align: justify;
}
@media (max-width: 1024px) {
  .mass-outer .mass-inner .mass-inner-bx .mass-text p {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .mass-outer .mass-inner .mass-inner-bx .mass-text {
    padding: 29px 20px;
  }
}
@media (max-width: 767px) {
  .mass-outer .mass-inner .mass-inner-bx .mass-text {
    padding: 29px 6px;
  }
}
@media (max-width: 992px) {
  .mass-outer .mass-inner .mass-inner-bx {
    width: 50%;
  }
}
@media (max-width: 400px) {
  .mass-outer .mass-inner .mass-inner-bx {
    width: 100%;
  }
}

.contact-information {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .contact-information {
    padding: 10px 0;
  }
}
.contact-information .contact-info-inner {
  display: flex;
  align-items: center;
}
.contact-information .contact-info-inner .contact-info-left {
  width: 45%;
}
.contact-information .contact-info-inner .contact-info-left .presence-content {
  padding-left: 60px;
  padding-bottom: 30px;
  padding-top: 30px;
}
@media (max-width: 992px) {
  .contact-information .contact-info-inner .contact-info-left .presence-content {
    padding-left: 0;
  }
}
.contact-information .contact-info-inner .contact-info-left ul li {
  display: flex;
  margin-bottom: 22px;
}
.contact-information .contact-info-inner .contact-info-left ul li .premise-ico {
  width: 50px;
  min-width: 50px;
  margin-right: 30px;
  float: left;
}
.contact-information .contact-info-inner .contact-info-left ul li .premise-data h6 {
  color: #0B2563;
  font-size: 20px;
}
.contact-information .contact-info-inner .contact-info-left ul li .premise-data .premise-text {
  font-size: calc(var(--tp-fz-p) - 1px);
  color: #424242;
  text-decoration: none;
  display: block;
  max-width: 270px;
  overflow: hidden;
  text-align: justify;
}
.contact-information .contact-info-inner .contact-info-left ul li .premise-data p {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .contact-information .contact-info-inner .contact-info-left ul li {
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .contact-information .contact-info-inner .contact-info-left {
    width: 100%;
  }
}
.contact-information .contact-info-inner .contact-info-right {
  width: 55%;
  padding-left: 20px;
}
.contact-information .contact-info-inner .contact-info-right .get-form {
  background: #06297C;
  padding: 35px 30px;
}
.contact-information .contact-info-inner .contact-info-right .get-form h5 {
  color: var(--tp-common-white);
  font-size: 38px;
  font-weight: var(--tp-fw-medium);
  padding-bottom: 20px;
  padding-left: 15px;
}
@media (max-width: 1024px) {
  .contact-information .contact-info-inner .contact-info-right .get-form h5 {
    font-size: 41px;
  }
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row {
  display: flex;
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx {
  width: 50%;
  padding: 0px 13px;
  margin-bottom: 23px;
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx p {
  margin-bottom: 0px;
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx input {
  width: 100%;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1882352941);
  border-right: none;
  border-left: none;
  border-top: none;
  height: 46px;
  padding: 8px 10px;
  outline: none !important;
  color: #fff;
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx input:focus {
  box-shadow: 0 0 0;
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx input::-moz-placeholder {
  color: var(--tp-common-white);
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx input::placeholder {
  color: var(--tp-common-white);
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx select {
  width: 100%;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1882352941);
  border-right: none;
  border-left: none;
  border-top: none;
  height: 46px;
  padding: 8px 10px;
  outline: none !important;
  color: var(--tp-common-white);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../images/drop-menu-bg.webp) no-repeat 96% center;
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx select:focus {
  box-shadow: 0 0 0;
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx select::-moz-placeholder {
  color: var(--tp-common-white);
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx select::placeholder {
  color: var(--tp-common-white);
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx select option {
  background: #06297c;
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx textarea {
  width: 100%;
  border: 1px solid #cacaca;
  background: transparent;
  border-right: none;
  border-left: none;
  border-top: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1882352941);
  height: 46px;
  padding: 8px 10px;
  resize: none;
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx textarea::-moz-placeholder {
  color: var(--tp-common-white);
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx textarea::placeholder {
  color: var(--tp-common-white);
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx textarea:focus {
  box-shadow: 0 0 0;
}
@media screen and (max-width: 400px) {
  .contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx {
    width: 100%;
    padding: 0;
  }
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx button {
  width: 100%;
  background: var(--tp-common-white);
  border: 1px solid var(--tp-heading-spanred);
  transition: all 0.3s ease-out 0s;
  color: var(--tp-heading-spanred);
  height: 46px;
  font-weight: var(--tp-fw-sbold);
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx button img {
  margin-left: 5px;
  transition: all 0.1s ease-out 0s;
  vertical-align: middle;
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx button:hover {
  background: transparent;
  color: var(--tp-heading-spanred);
  border: 1px solid var(--tp-heading-spanred);
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx button:hover img {
  margin-left: 8px;
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx span {
  color: red;
}
@media (max-width: 530px) {
  .contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx {
    width: 100%;
  }
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx .check-cont {
  display: flex;
  align-items: center;
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx .check-cont input {
  width: 25px;
  height: 25px;
  margin-right: 9px;
}
@media (max-width: 500px) {
  .contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx .check-cont input {
    width: 16px;
    height: 16px;
  }
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx .check-cont span {
  color: var(--tp-common-white);
  padding-left: 0;
  margin: 0;
}
@media (max-width: 500px) {
  .contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx .check-cont span {
    font-size: 9px;
    padding-left: 8px;
  }
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx .check-cont span .wpcf7-list-item label {
  display: flex;
  align-items: center;
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx.full {
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row .get-in-bx.full .wpcf7-spinner {
  position: absolute;
  right: 0;
  top: 12px;
}
@media screen and (max-width: 400px) {
  .contact-information .contact-info-inner .contact-info-right .get-form .get-form-row {
    margin: 0;
    flex-wrap: wrap;
  }
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row #mob-custom .iti {
  margin-bottom: 0px;
  display: block;
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row #mob-custom .iti__flag {
  display: none;
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row #mob-custom .iti__selected-dial-code {
  margin-left: 5px;
  font-size: 20px;
  font-weight: 500;
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row #mob-custom .iti__arrow {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #4A4A4A;
  margin-left: 9px;
  margin-top: 3px;
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row #mob-custom .iti__arrow--up {
  border-bottom: none;
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row #mob-custom .iti__flag.iti__in {
  display: none;
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row #mob-custom .iti__selected-flag {
  background-color: transparent;
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row #mob-custom .iti__selected-flag:after {
  content: "";
  background: #C4C4C4;
  width: 1px;
  height: 24px;
  margin-left: 17px;
}
@media (max-width: 530px) {
  .contact-information .contact-info-inner .contact-info-right .get-form .get-form-row {
    flex-wrap: wrap;
  }
}
.contact-information .contact-info-inner .contact-info-right .get-form .get-form-row:nth-child(5n) .get-in-bx.full {
  margin-bottom: 12px;
}
@media (max-width: 1024px) {
  .contact-information .contact-info-inner .contact-info-right .get-form {
    padding: 35px 40px;
  }
}
@media (max-width: 992px) {
  .contact-information .contact-info-inner .contact-info-right {
    width: 100%;
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .contact-information .contact-info-inner {
    flex-wrap: wrap;
  }
}

.map-outer figure {
  margin: 0;
}
.map-outer figure img {
  width: 100%;
}

.why-us.blog {
  padding: 60px 0;
}
.why-us.blog .nav-tabs {
  display: flex;
  justify-content: center;
  border-bottom: none;
  align-items: center;
}
.why-us.blog .nav-tabs li.nav-item a.nav-link {
  display: flex;
  align-items: center;
  border: none;
  font-weight: bold;
  line-height: 51px;
  font-size: 21px;
  text-transform: capitalize;
  color: #B7B7B7;
  padding: 0;
}
.why-us.blog .nav-tabs li.nav-item a.nav-link span {
  width: 40px;
  height: 33px;
  border-radius: 33px 0 0 33px;
  background: #A8CB00;
  margin-left: 15px;
  position: relative;
}
.why-us.blog .nav-tabs li.nav-item a.nav-link.active {
  border: none;
  color: #000;
}
.why-us.blog .nav-tabs li.nav-item a.nav-link.active span:before {
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 100%;
  position: absolute;
  display: block;
  content: "";
  left: 5px;
  top: 3px;
}
.why-us.blog .nav-tabs li.nav-item:last-child a.nav-link span {
  border-radius: 0 33px 33px 0;
  margin-left: 0;
  margin-right: 15px;
}
.why-us.blog .nav-tabs li.nav-item:last-child a.nav-link.active span:before {
  left: unset;
  right: 5px;
}
.why-us.blog .tab-content .head {
  width: 100%;
}
.why-us.blog .tab-content .head p {
  max-width: 817px;
  margin: 0 auto;
}
.why-us.blog .tab-content > .active {
  display: flex;
  flex-wrap: wrap;
  margin: 50px -15px 0 -15px;
}
.why-us.blog .pagination-ineer-outer {
  width: 100%;
}
.why-us.blog .pagination-ineer-outer ul.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.why-us.blog .pagination-ineer-outer ul.pagination li {
  margin-right: 50px;
}
@media (max-width: 767px) {
  .why-us.blog .pagination-ineer-outer ul.pagination li {
    margin-right: 20px;
  }
}
.why-us.blog .pagination-ineer-outer ul.pagination li:last-child {
  margin-right: 0;
}
.why-us.blog .pagination-ineer-outer ul.pagination li a {
  color: #000;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
}
.why-us.blog .pagination-ineer-outer ul.pagination li a:hover {
  color: #377EF9;
}
.why-us.blog .pagination-ineer-outer ul.pagination li.prev a {
  width: 45px;
  height: 45px;
  border: 1px solid #A8CB00;
  border-radius: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-us.blog .pagination-ineer-outer ul.pagination li.prev a i {
  color: #A8CB00;
}
.why-us.blog .pagination-ineer-outer ul.pagination li.prev a:hover {
  border: 1px solid #A8CB00;
  background: #A8CB00;
}
.why-us.blog .pagination-ineer-outer ul.pagination li.prev a:hover i {
  color: #fff;
}
.why-us.blog .pagination-ineer-outer ul.pagination li.next a {
  width: 45px;
  height: 45px;
  border: 1px solid #A8CB00;
  border-radius: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-us.blog .pagination-ineer-outer ul.pagination li.next a i {
  color: #A8CB00;
}
.why-us.blog .pagination-ineer-outer ul.pagination li.next a:hover {
  border: 1px solid #A8CB00;
  background: #A8CB00;
}
.why-us.blog .pagination-ineer-outer ul.pagination li.next a:hover i {
  color: #fff;
}
.why-us.blog .production-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.why-us.blog .production-inner .production-inner-bx {
  width: 33.3%;
  padding-right: 45px;
  margin-bottom: 70px;
  display: flex;
}
.why-us.blog .production-inner .production-inner-bx .production-area {
  background: #fff;
  box-shadow: 0px 23px 23px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1399px) {
  .why-us.blog .production-inner .production-inner-bx:last-child {
    padding-right: 0 !important;
  }
  .why-us.blog .production-inner .production-inner-bx:nth-child(3n) {
    padding-right: 0;
  }
}
@media (max-width: 1399px) and (max-width: 992px) {
  .why-us.blog .production-inner .production-inner-bx:nth-child(3n) {
    padding-right: 15px;
  }
}
@media (max-width: 1399px) and (max-width: 400px) {
  .why-us.blog .production-inner .production-inner-bx:nth-child(3n) {
    padding-right: 0;
  }
}
@media (max-width: 1399px) and (max-width: 992px) {
  .why-us.blog .production-inner .production-inner-bx {
    padding-right: 15px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1399px) and (max-width: 992px) {
  .why-us.blog .production-inner .production-inner-bx:nth-child(2n) {
    padding-right: 0;
  }
  .why-us.blog .production-inner .production-inner-bx:nth-child(4n) {
    padding-right: 0;
  }
}
@media (max-width: 1399px) and (max-width: 400px) {
  .why-us.blog .production-inner .production-inner-bx:nth-child(1n) {
    padding-right: 0;
  }
  .why-us.blog .production-inner .production-inner-bx:nth-child(5n) {
    padding-right: 0;
  }
}
.why-us.blog .production-inner .production-inner-bx figure {
  margin: 0;
  overflow: hidden;
}
.why-us.blog .production-inner .production-inner-bx figure img {
  width: 100%;
  transform: scale(1);
  transition: all 0.7s;
}
.why-us.blog .production-inner .production-inner-bx figure img:hover {
  transform: scale(1.3);
}
@media (max-width: 1399px) {
  .why-us.blog .production-inner .production-inner-bx figure img {
    height: 268px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.why-us.blog .production-inner .production-inner-bx .mass-text {
  padding: 22px 34px 22px 28px;
}
.why-us.blog .production-inner .production-inner-bx .mass-text h6 {
  font-size: var(--tp-fz-h5);
  color: var(--tp-heading-spanred);
  font-weight: var(--tp-fw-medium);
}
@media (max-width: 1024px) {
  .why-us.blog .production-inner .production-inner-bx .mass-text h6 {
    font-size: var(--tp-fz-p);
  }
}
.why-us.blog .production-inner .production-inner-bx .mass-text p {
  margin: 0;
  color: var(--tp-common-black);
  font-weight: var(--tp-fw-sbold);
  text-transform: capitalize;
}
@media (max-width: 1024px) {
  .why-us.blog .production-inner .production-inner-bx .mass-text p {
    font-size: 14px;
  }
}
.why-us.blog .production-inner .production-inner-bx .mass-text .text-prob {
  margin-top: 22px;
}
.why-us.blog .production-inner .production-inner-bx .mass-text .text-prob a {
  border: 1px solid #A8CB00;
  padding: 7px 15px;
  color: #282828;
  font-weight: var(--tp-fw-sbold);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
}
.why-us.blog .production-inner .production-inner-bx .mass-text .text-prob a:hover {
  color: var(--tp-common-white);
  background: var(--tp-heading-spanred);
}
@media (max-width: 1024px) {
  .why-us.blog .production-inner .production-inner-bx .mass-text {
    padding: 29px 29px;
  }
}
@media (max-width: 767px) {
  .why-us.blog .production-inner .production-inner-bx .mass-text {
    padding: 29px 29px;
  }
}
@media (max-width: 992px) {
  .why-us.blog .production-inner .production-inner-bx {
    width: 50%;
  }
}
@media (max-width: 400px) {
  .why-us.blog .production-inner .production-inner-bx {
    width: 100%;
  }
}
.why-us.blog #news .production-inner .production-inner-bx {
  width: 100%;
  position: relative;
  padding-right: 0;
  margin-bottom: 30px;
}
.why-us.blog #news .production-inner .production-inner-bx span {
  position: absolute;
  left: 8px;
  display: flex;
  width: 25px;
  height: 25px;
  background: #A8CB00;
  color: #fff;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  top: 25px;
  font-size: 16px;
}
.why-us.blog #news .production-inner .production-inner-bx .production-area {
  width: 100%;
}
.why-us.blog #news .production-inner .production-inner-bx .production-area .mass-text {
  padding: 22px 27px 22px 46px;
  width: 100%;
}

.publication-details-outer {
  margin-top: 180px;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .publication-details-outer {
    margin-top: 130px;
  }
}
@media (max-width: 576px) {
  .publication-details-outer {
    margin-top: 80px;
  }
}
.publication-details-outer .publication-details-inner {
  display: flex;
}
@media (max-width: 767px) {
  .publication-details-outer .publication-details-inner {
    flex-wrap: wrap;
  }
}
.publication-details-outer .publication-details-inner .publication-details-right {
  width: 40%;
  padding-right: 144px;
}
@media (max-width: 1199px) {
  .publication-details-outer .publication-details-inner .publication-details-right {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .publication-details-outer .publication-details-inner .publication-details-right {
    width: 100%;
  }
}
.publication-details-outer .publication-details-inner .publication-details-right h1 {
  font-size: var(--tp-fz-h2);
  color: #000;
  text-transform: capitalize;
  font-weight: 600;
  font-family: popins, sans-serif;
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .publication-details-outer .publication-details-inner .publication-details-right h1 {
    font-size: 30px;
  }
}
.publication-details-outer .publication-details-inner .publication-details-right p:last-child {
  font-weight: 500;
}
.publication-details-outer .publication-details-inner .publication-details-right .publication-details-share {
  border-bottom: 1px solid #000;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
}
.publication-details-outer .publication-details-inner .publication-details-right .publication-details-share h6 {
  margin: 0;
  font-size: 20px;
  color: #424242;
  font-weight: 600;
}
.publication-details-outer .publication-details-inner .publication-details-right .publication-details-share ul {
  display: flex;
  margin-left: 23px;
}
.publication-details-outer .publication-details-inner .publication-details-right .publication-details-share ul li {
  background: #090912;
  height: 35px;
  margin-right: 16px;
  width: 35px;
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 50%;
}
.publication-details-outer .publication-details-inner .publication-details-right .publication-details-share ul li a {
  color: #fff;
}
.publication-details-outer .publication-details-inner .publication-details-right .publication-details-share ul li:hover {
  background: var(--tp-heading-spanred);
}
.publication-details-outer .publication-details-inner .publication-details-right .publication-detail-btn {
  margin-top: 20px;
}
.publication-details-outer .publication-details-inner .publication-details-right .publication-detail-btn a {
  color: #424242;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease-out 0s;
}
.publication-details-outer .publication-details-inner .publication-details-right .publication-detail-btn a i {
  margin-right: 5px;
  transition: all 0.2s ease-out 0s;
}
.publication-details-outer .publication-details-inner .publication-details-right .publication-detail-btn a:hover i {
  margin-right: 8px;
}
.publication-details-outer .publication-details-inner .publication-details-left {
  width: 60%;
  padding-left: 50px;
}
@media (max-width: 767px) {
  .publication-details-outer .publication-details-inner .publication-details-left {
    width: 100%;
    padding-left: 0;
    padding-top: 50px;
  }
}
.publication-details-outer .publication-details-inner .publication-details-left figure img {
  width: 100%;
}
.publication-details-outer .publication-details-inner .publication-details-left .publication-details-text {
  padding-top: 15px;
}
.publication-details-outer .publication-details-inner .publication-details-left .publication-details-text p {
  font-size: var(--tp-fz-p);
  color: #424242;
  margin-bottom: 20px;
  text-align: justify;
}
.publication-details-outer .publication-details-inner .publication-details-left .publication-details-text h5 {
  font-size: var(--tp-fz-h3);
  color: #424242;
  font-weight: var(--tp-fw-medium);
}

.second-service-outer {
  padding: 60px 0 0;
}
@media (max-width: 991px) {
  .second-service-outer {
    padding: 30px 0 0;
  }
}
.second-service-outer .our-story-inner {
  display: flex;
  align-items: center;
}
.second-service-outer .our-story-inner .head {
  text-align: left;
}
.second-service-outer .our-story-inner .head h2 {
  color: #424242;
}
.second-service-outer .our-story-inner .head h4 {
  font-size: 25px;
  font-weight: 500;
  color: #424242;
}
.second-service-outer .our-story-inner .head p {
  color: var(--tp-common-white);
  color: #424242;
  font-size: var(--tp-fw-p);
}
.second-service-outer .our-story-inner .our-story-left {
  width: 60%;
  padding-right: 40px;
}
@media screen and (max-width: 991px) {
  .second-service-outer .our-story-inner .our-story-left {
    width: 100%;
    padding-right: 0;
  }
}
.second-service-outer .our-story-inner .our-story-left ul li {
  position: relative;
  padding-left: 15px;
}
.second-service-outer .our-story-inner .our-story-left ul li:before {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #a8cb00;
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 6px;
}
.second-service-outer .our-story-inner .our-story-right {
  width: 40%;
  padding-left: 40px;
}
.second-service-outer .our-story-inner .our-story-right figure img {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .second-service-outer .our-story-inner .our-story-right {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 991px) {
  .second-service-outer .our-story-inner {
    flex-wrap: wrap;
  }
}

.second-service-outer.reverse-row {
  padding: 0;
}
.second-service-outer.reverse-row .our-story-inner {
  flex-direction: row-reverse;
}
.second-service-outer.reverse-row .our-story-inner .our-story-right {
  padding-left: 0;
}
.second-service-outer.reverse-row .our-story-inner .our-story-left {
  padding-left: 40px;
}
@media (max-width: 991px) {
  .second-service-outer.reverse-row .our-story-inner .our-story-left {
    padding-left: 0;
  }
}

.service-explore {
  padding: 0px 0 40px;
}
.service-explore .service-explore-inner {
  display: flex;
  flex-wrap: wrap;
}
.service-explore .service-explore-inner .service-explore-bx {
  width: 33.3%;
  padding-right: 20px;
}
@media (max-width: 1200px) {
  .service-explore .service-explore-inner .service-explore-bx {
    padding: 0 10px;
  }
}
@media (max-width: 991px) {
  .service-explore .service-explore-inner .service-explore-bx {
    width: 100%;
    margin-bottom: 25px;
  }
}
.service-explore .service-explore-inner .service-explore-bx a {
  text-decoration: none;
  position: relative;
}
.service-explore .service-explore-inner .service-explore-bx a figure {
  margin: 0;
  overflow: hidden;
}
.service-explore .service-explore-inner .service-explore-bx a figure img {
  width: 100%;
  transform: scale(1);
  transition: all 0.7s;
}
.service-explore .service-explore-inner .service-explore-bx a figure .service-text {
  background: #052873;
  padding: 15px;
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 0;
}
.service-explore .service-explore-inner .service-explore-bx a figure .service-text h5 {
  color: var(--tp-common-white);
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0;
}
.service-explore .service-explore-inner .service-explore-bx a figure:hover img {
  transform: scale(1.3);
}/*# sourceMappingURL=main.css.map */