@charset "UTF-8";
:root {
  /**
  @font family declaration
  */
  --tp-ff-body: "Plus Jakarta Sans", sans-serif;;
  --tp-ff-heading: "Plus Jakarta Sans", sans-serif;;
  --tp-ff-p: "Plus Jakarta Sans", sans-serif;;
  --tp-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @font Size declaration
  */
  --tp-fz-body: 15px;
  --tp-fz-p: 15px;
  --tp-fz-a: 15px;
  --tp-fz-h1: 35px;
  --tp-fz-h2: 32px;
  --tp-fz-h3: 24px;
  --tp-fz-h4: 22px;
  --tp-fz-h5: 20px;
  --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: #000000;
  --tp-heading-primary: #0E0E0E;
  --tp-heading-spanred: #FFDE00;
  --tp-bg-1: #F16223;
  --tp-bg-2: #F5F8FA;
  --tp-text-body: #4b4b4b;
  --tp-text-1: #505050;
  --tp-text-2: #131A1C;
  --tp-text-3: #262626;
  --tp-border-primary: #C7E6FF;
  --tp-border-secondary: #E2E2E2;
  --tp-border-btnborder: #CDCDCD;
  --tp-border-1: #2096F4;
  --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;
  overflow-x: hidden;
}

/* =======================
   RTL / LTR Utility File
   ======================= */
/* Default: LTR */
html {
  direction: ltr;
  unicode-bidi: embed;
}

/* Switch to RTL */
/* ========== Text Alignment ========== */
.text-start {
  text-align: start; /* left in LTR, right in RTL */
}

.text-end {
  text-align: end; /* right in LTR, left in RTL */
}

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

/* ========== Margin Utilities ========== */
.ms-1 {
  margin-inline-start: 4px;
}

.ms-2 {
  margin-inline-start: 8px;
}

.ms-3 {
  margin-inline-start: 16px;
}

.ms-4 {
  margin-inline-start: 24px;
}

.me-1 {
  margin-inline-end: 4px;
}

.me-2 {
  margin-inline-end: 8px;
}

.me-3 {
  margin-inline-end: 16px;
}

.me-4 {
  margin-inline-end: 24px;
}

/* ========== Padding Utilities ========== */
.ps-1 {
  padding-inline-start: 4px;
}

.ps-2 {
  padding-inline-start: 8px;
}

.ps-3 {
  padding-inline-start: 16px;
}

.ps-4 {
  padding-inline-start: 24px;
}

.pe-1 {
  padding-inline-end: 4px;
}

.pe-2 {
  padding-inline-end: 8px;
}

.pe-3 {
  padding-inline-end: 16px;
}

.pe-4 {
  padding-inline-end: 24px;
}

/* ========== Border Utilities ========== */
.border-start {
  border-inline-start: 1px solid #ccc;
}

.border-end {
  border-inline-end: 1px solid #ccc;
}

/* ========== Flexbox Helpers ========== */
.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-row-rev {
  display: flex;
  flex-direction: row-reverse;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-col-rev {
  display: flex;
  flex-direction: column-reverse;
}

html[lang=ar] .slick-slider {
  direction: rtl;
}

.fp-watermark {
  display: none;
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

a {
  text-decoration: none;
}
a:hover {
  color: var(--tp-heading-primary);
}

.container {
  max-width: 1240px;
}
@media screen and (max-width: 1280px) {
  .container {
    max-width: 1120px;
  }
}

section {
  padding: 50px 0px;
}

* {
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.head {
  padding-bottom: 30px;
  padding-left: 0px;
}
.head h1 {
  font-size: var(--tp-fz-h2);
  color: var(--tp-common-black);
  padding-bottom: 25px;
  line-height: 120%;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .head h1 {
    font-size: 32px;
    line-height: 42px;
  }
  .head h1 br {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .head h1 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .head h1 span {
    padding-right: 0px;
  }
  .head h1 span::after {
    display: none;
  }
}
.head span {
  color: #5BD0B3;
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 30px;
  text-transform: uppercase;
  font-weight: 500;
}
.head h2 {
  font-size: var(--tp-fz-h2);
  color: var(--tp-common-black);
  padding-bottom: 0px;
  line-height: 120%;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .head h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .head h2 {
    font-size: 36px;
    line-height: 46px;
  }
}
@media screen and (max-width: 1024px) {
  .head h2 {
    font-size: 32px;
    line-height: 42px;
  }
  .head h2 br {
    display: none;
  }
  .head h2 span {
    padding-right: 50px;
  }
}
@media screen and (max-width: 991px) {
  .head h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .head h2 span {
    padding-right: 0px;
  }
  .head h2 span::after {
    display: none;
  }
}
.head p {
  padding-top: 25px;
}

h2 {
  font-size: var(--tp-fz-h2);
  color: var(--tp-common-black);
  padding-bottom: 0px;
  line-height: 120%;
}
@media screen and (max-width: 1450px) {
  h2 {
    font-size: var(--tp-fz-h2);
  }
}
@media screen and (max-width: 1199px) {
  h2 {
    font-size: 36px;
    line-height: 46px;
  }
}
@media screen and (max-width: 1024px) {
  h2 {
    font-size: 32px;
    line-height: 42px;
  }
  h2 br {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

.call-us-now {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 99;
  width: 197px;
  height: 53px;
  display: flex;
  align-items: center;
  box-shadow: 0px 6px 21.3px 0px #BCF2E4;
  border: 0.6px solid #83DEC7;
  border-radius: 25px;
  background: #fff;
}
.call-us-now a {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 700;
  font-size: 16px;
}
.call-us-now a span {
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5BD0B3;
  border-radius: 100%;
  width: 39px;
  height: 39px;
}
.call-us-now a:hover {
  background: #5BD0B3;
  color: #fff;
}

.error-404.not-found {
  padding: 200px 0;
  text-align: center;
}
.error-404.not-found h1 {
  margin-bottom: 15px;
}
.error-404.not-found p {
  margin-bottom: 15px;
}
.error-404.not-found a {
  background-color: #5BD0B3;
  color: #fff;
  border-radius: 25px;
  padding: 10px 30px;
  border: none;
  width: auto;
  font-weight: 700;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.error-404.not-found a:hover {
  background: #000;
}

.sitemap h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}
.sitemap ul li a {
  color: #000;
}
.sitemap ul li a:hover {
  color: #5BD0B3;
}

.rtl .head {
  direction: rtl;
}

.rtl {
  text-align: right;
}

.header {
  background: #191A1B;
  transition: all 0.5s;
  height: 64px;
  position: relative;
  z-index: 99;
}
.header .container {
  height: 100%;
}
.header .container .row {
  height: 100%;
  align-items: center;
}
.header .container .row .navbar {
  padding: 0;
  margin: 0;
}
.header .container .row .navbar li {
  padding: 0 25px;
  position: relative;
}
.header .container .row .navbar li a {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.17px;
  position: relative;
}
.header .container .row .navbar li a:after {
  content: "";
  position: absolute;
  bottom: -23px;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: #fff;
  transition: width 0.3s ease;
}
.header .container .row .navbar li a:hover {
  color: #5BD0B3;
}
.header .container .row .navbar li a:hover:after {
  width: 100%;
}
@media (max-width: 1280px) {
  .header .container .row .navbar li a {
    font-size: 15px;
  }
}
@media (max-width: 1280px) {
  .header .container .row .navbar li {
    padding: 0 20px;
  }
}
@media (max-width: 1024px) {
  .header .container .row .navbar li {
    padding: 0 15px;
  }
}
.header .container .row .navbar li.caret {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}
.header .container .row .navbar li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: #191A1B;
  min-width: 260px;
  display: none;
  flex-direction: column;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(10px);
  z-index: 100;
  padding: 20px 0;
}
.header .container .row .navbar li ul li a:after {
  display: none;
}
.header .container .row .navbar li:hover ul {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.header .container .row .navbar li:hover a .caret {
  transform: rotate(180deg);
}
.header .container .row .navbar li:last-child ul {
  min-width: 200px;
}
.header .container .row .navbar li.active a {
  color: #5BD0B3;
}
.header .container .row .contact-btn {
  width: 137px;
  height: 38px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 23px;
  background: #5BD0B3;
  color: #fff;
  letter-spacing: -0.16px;
  font-weight: 800;
  font-size: 13px;
  transition: all 0.3s;
}
.header .container .row .contact-btn:hover {
  background: #fff;
  color: #191A1B;
}
@media (max-width: 991px) {
  .header .container .row .contact-btn {
    margin-left: 15px;
    margin-right: 5px;
  }
}
@media (max-width: 485px) {
  .header .container .row .contact-btn {
    width: 100px;
    height: 36px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 13px;
  }
}
.header .container .row .language-switcher {
  background-color: #1c1c1c;
  color: white;
  border: none;
  padding: 5px 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  cursor: pointer;
  position: relative;
  font-weight: 700;
}
.header .container .row .language-switcher img {
  width: 21px;
  height: 21px;
}
.header .container .row .language-switcher span img {
  width: auto;
  height: auto;
}
.header .container .row .language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #2b2b2b;
  border-radius: 4px;
  overflow: hidden;
  display: none;
  min-width: 80px;
  z-index: 1000;
}
.header .container .row .language-dropdown button {
  background: transparent;
  border: none;
  width: 100%;
  color: white;
  padding: 8px;
  text-align: left;
  cursor: pointer;
}
.header .container .row .language-dropdown button:hover {
  background: #5BD0B3;
}
@media (max-width: 991px) {
  .header .container .row {
    justify-content: space-between;
  }
  .header .container .row .col-lg-7 {
    display: none;
  }
  .header .container .row .col-lg-2 {
    width: auto;
  }
  .header .container .row .col-lg-3 {
    width: auto;
    align-items: center;
    transform: unset;
  }
}
@media (max-width: 485px) {
  .header .container .row .col-lg-2 {
    width: auto;
  }
  .header .container .row .col-lg-2 .logo {
    width: 90px;
    display: block;
  }
  .header .container .row .col-lg-2 .logo img {
    width: 100%;
  }
}
.header.fixed-header {
  position: fixed;
  top: 0;
  width: 100%;
}

.wpml-ls-legacy-dropdown-click {
  width: auto;
}

.wpml-ls-legacy-dropdown-click a {
  background-color: #1c1c1c;
  color: white;
  border: none;
  padding: 12px 12px 12px 5px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  cursor: pointer;
  position: relative;
  font-weight: 700;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-current-language:hover > a, .wpml-ls-legacy-dropdown-click a:focus, .wpml-ls-legacy-dropdown-click a:hover {
  background: transparent;
  color: #fff;
}

.rtl .header {
  direction: rtl;
}

.rtl .header .container .row .contact-btn {
  margin-left: 15px;
  margin-right: 15px;
}

@media (max-width: 414px) {
  .rtl .header .container .row .contact-btn {
    width: 75px;
    margin: 0 10px;
  }
}
.footer {
  background-color: #1a1a1a;
  color: white;
  padding: 60px 0 0 0;
}
.footer .container {
  border-top: 1px solid #373737;
  padding-top: 25px;
}
.footer .container h3 {
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
}
.footer .container h3 span {
  width: 58px;
  height: 58px;
  margin-left: 15px;
  background: #5BD0B3;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1280px) {
  .footer .container h3 {
    font-size: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .footer .container h3 {
    font-size: 36px;
    line-height: 46px;
  }
}
@media screen and (max-width: 1024px) {
  .footer .container h3 {
    font-size: 32px;
    line-height: 42px;
  }
}
@media screen and (max-width: 991px) {
  .footer .container h3 {
    font-size: 30px;
    line-height: 40px;
  }
  .footer .container h3 span {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 576px) {
  .footer .container h3 {
    font-size: 25px;
    line-height: 35px;
  }
}
.footer .container p {
  font-size: 24px;
  line-height: 44px;
  font-weight: 500;
}
@media screen and (max-width: 1100px) {
  .footer .container p {
    font-size: 18px;
    line-height: 30px;
  }
  .footer .container p br {
    display: none;
  }
}
.footer .container .list-unstyled {
  flex-wrap: wrap;
}
.footer .container .list-unstyled li {
  width: 33.3%;
  margin-bottom: 10px;
}
.footer .container .list-unstyled li a {
  color: white;
}
.footer .container .list-unstyled li a:hover {
  color: #5BD0B3;
}
.footer .container .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 12px;
  color: #fff;
  margin-top: 0 !important;
}
.footer .container .footer-bottom p {
  font-size: 12px;
  line-height: inherit;
}
.footer .container .footer-bottom span {
  margin-right: 35px;
}
.footer .container .footer-bottom span:last-child {
  margin-right: 0;
}
.footer .container .footer-bottom .col-lg-12 img {
  max-width: 100%;
}

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

.footer a:hover {
  color: #5BD0B3;
}

.footer h5 {
  margin-bottom: 10px;
  margin-top: 10px;
  color: #7E7E7E;
  font-weight: 600;
  font-size: 18px;
}

.banner {
  position: relative;
  height: 475px;
  width: 100%;
  padding: 0;
}
.banner .container-fluid {
  height: 100%;
}
.banner .container-fluid .row {
  height: 100%;
}
.banner .container-fluid .row .hero-banner {
  height: 100%;
  padding: 0;
}
.banner .container-fluid .row .hero-banner .slick-list.draggable {
  height: 100%;
}
.banner .container-fluid .row .hero-banner .slick-list.draggable .slick-track {
  height: 100%;
  transition: unset;
}
.banner .container-fluid .row .hero-banner .slick-list.draggable .slick-track .slick-slide {
  height: 100%;
}
.banner .container-fluid .row .hero-banner .slick-list.draggable .slick-track .slick-slide > div {
  height: 100%;
}
@media (max-width: 767px) {
  .banner .container-fluid .row .hero-banner .slick-list.draggable .slick-track .slick-slide > div {
    line-height: 0px;
  }
}
.banner .container-fluid .row .hero-banner .slick-list.draggable .slick-track .slick-slide > div .slide {
  height: 100%;
}
.banner .container-fluid .row .hero-banner .slick-list.draggable .slick-track .slick-slide > div .slide figure {
  height: 100%;
  margin: 0;
  position: relative;
}
@media (max-width: 767px) {
  .banner .container-fluid .row .hero-banner .slick-list.draggable .slick-track .slick-slide > div .slide figure {
    height: 390px;
  }
}
.banner .container-fluid .row .hero-banner .slick-list.draggable .slick-track .slick-slide > div .slide figure video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .container-fluid .row .hero-banner .slick-list.draggable .slick-track .slick-slide > div .slide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 0 !important;
}
.banner .container-fluid .row .hero-banner .slick-list.draggable .slick-track .slick-slide > div .slide figure figcaption {
  position: absolute;
  left: 0;
  top: 0;
  background: radial-gradient(54.5% 78.73% at 50% 45.5%, rgba(0, 0, 0, 0) 0%, rgba(1, 0, 20, 0.66) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 65.5%, rgba(0, 0, 0, 0.58) 83.49%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.banner .container-fluid .row .hero-banner .slick-list.draggable .slick-track .slick-slide > div .slide figure figcaption .text-box {
  position: relative;
  padding-left: 20px;
  transform: translateY(30px);
  transition: all 0.6s ease;
  margin-top: -45px;
}
.banner .container-fluid .row .hero-banner .slick-list.draggable .slick-track .slick-slide > div .slide figure figcaption .text-box .btn-explore {
  width: 200px;
  display: inline-flex;
}
.banner .container-fluid .row .hero-banner .slick-list.draggable .slick-track .slick-slide > div .slide figure figcaption .text-box .btn-explore span img {
  width: 10px;
}
.banner .container-fluid .row .hero-banner .slick-list.draggable .slick-track .slick-slide > div .slide figure figcaption .text-box h2 {
  font-size: 35px;
  line-height: 45px;
  color: #FFF;
  font-weight: 800;
  padding-bottom: 5px;
}
@media (max-width: 1024px) {
  .banner .container-fluid .row .hero-banner .slick-list.draggable .slick-track .slick-slide > div .slide figure figcaption .text-box h2 {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .banner .container-fluid .row .hero-banner .slick-list.draggable .slick-track .slick-slide > div .slide figure figcaption .text-box h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
.banner .container-fluid .row .hero-banner .slick-list.draggable .slick-track .slick-slide > div .slide figure figcaption .text-box h2 span {
  color: #5BD0B3;
}
.banner .container-fluid .row .hero-banner .slick-list.draggable .slick-track .slick-slide > div .slide figure figcaption .text-box figure {
  height: auto;
}
.banner .container-fluid .row .hero-banner .slick-list.draggable .slick-track .slick-slide > div .slide figure figcaption .text-box figure img {
  width: 300px;
}
@media (max-width: 576px) {
  .banner .container-fluid .row .hero-banner .slick-list.draggable .slick-track .slick-slide > div .slide figure figcaption .text-box figure img {
    width: 100%;
  }
}
.banner .container-fluid .row .hero-banner .slick-list.draggable .slick-track .slick-slide > div .slide figure figcaption .text-box p {
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  text-transform: capitalize;
}
.banner .container-fluid .row .hero-banner .slick-list.draggable .slick-track .slick-slide > div .slide figure figcaption .text-box::after {
  width: 4px;
  height: 83px;
  background: #5BD0B3;
  left: 0;
  top: 10px;
  content: "";
  position: absolute;
}
.banner .container-fluid .row .hero-banner .slick-list.draggable .slick-track .slick-slide > div .slide figure figcaption .text-box.animated {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .banner .container-fluid .row .hero-banner {
    margin-bottom: 0px;
  }
}
.banner .container-fluid .row .hero-banner .slick-dots {
  position: absolute;
  margin: 0;
  bottom: 97px;
}
@media (max-width: 767px) {
  .banner .container-fluid .row .hero-banner .slick-dots {
    bottom: 40px;
  }
}
.banner .container-fluid .row .hero-banner .slick-dots li {
  width: 33px;
  height: 3px;
  background: #CDCDCD;
  border-radius: 0;
}
.banner .container-fluid .row .hero-banner .slick-dots li button {
  display: none;
}
.banner .container-fluid .row .hero-banner .slick-dots li.slick-active {
  background: #5BD0B3;
}
.banner .strip-banner {
  background: rgba(0, 21, 38, 0.6705882353);
  height: 55px;
  padding: 0;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.banner .strip-banner ul {
  width: 100%;
  justify-content: space-between;
}
.banner .strip-banner ul li {
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 33.3%;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.banner .strip-banner ul li img {
  margin-right: 15px;
  max-width: 35px;
  min-width: 35px;
  transition: all 0.5s;
}
.banner .strip-banner ul li:last-child {
  border: none;
}
.banner .strip-banner ul li:last-child::after {
  display: none;
}
.banner .strip-banner ul li::after {
  width: 1px;
  height: 24px;
  background: rgba(242, 242, 242, 0.2392156863);
  position: absolute;
  right: 0px;
  top: 8px;
  content: "";
}
.banner .strip-banner ul li:hover {
  color: #5BD0B3;
}
.banner .strip-banner ul li:hover img {
  transform: scale(1.05);
  filter: brightness(0) invert(100);
}
@media (max-width: 767px) {
  .banner .strip-banner ul li {
    width: 100%;
    justify-content: flex-start;
    padding: 9px 0;
    border-bottom: 1px solid rgba(242, 242, 242, 0.2392156863);
  }
  .banner .strip-banner ul li::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .banner .strip-banner ul {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .banner .strip-banner {
    position: static;
    background: #000;
    height: auto;
    padding: 10px 0px;
  }
}
@media (max-width: 767px) {
  .banner {
    height: auto;
  }
}

.inner-page-banner {
  height: 500px;
  background-size: cover;
  display: flex;
  align-items: center;
  background-position: right;
}
.inner-page-banner .head h1 {
  font-size: 35px;
  line-height: 45px;
  color: #FFF;
  font-weight: 800;
  padding-bottom: 20px;
}
.inner-page-banner .head h1 span {
  color: #5BD0B3;
  font-size: 35px;
  white-space: nowrap;
  font-weight: 800;
  display: inline;
  text-transform: inherit;
  line-height: 45px;
}
.inner-page-banner .head p {
  color: #fff;
  font-size: 20px;
  line-height: 32px;
  padding-top: 0;
}
@media (max-width: 767px) {
  .inner-page-banner .head p br {
    display: none;
  }
}

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

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

.slicknav_nav {
  margin: 0;
  padding: 0;
  font-size: 0.875em;
  list-style: none;
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  top: 61px;
  background: #F9F9F9;
  margin: 0 auto;
  right: 0;
  z-index: 9;
}
.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: 6px;
  color: var(--tp-grey-1);
}
.slicknav_nav a {
  padding: 5px 10px;
  margin: 2px 5px;
  text-decoration: none;
  color: #000;
  font-weight: var(--tp-fw-medium);
  border-bottom: 1px solid var(--tp-border-secondary);
}
.slicknav_nav a span {
  margin-right: 8px;
}
.slicknav_nav a:hover {
  border-radius: 6px;
  color: #5BD0B3;
}
.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);
}
@media screen and (max-width: 991px) {
  .slicknav_nav {
    top: 64px;
  }
}

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

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

.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;
    margin-top: 8px;
  }
}

.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;
  display: none;
}
.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;
}

.why-choose {
  background: #F9F8F5;
}
.why-choose .wy-choose-option {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .why-choose .wy-choose-option {
    margin-bottom: 30px;
  }
}
.why-choose .wy-choose-option .line-box {
  padding-bottom: 10px;
}
.why-choose .wy-choose-option h3 {
  color: #5BD0B3;
  line-height: 30px;
  font-weight: 700;
  font-size: 24px;
  padding-bottom: 10px;
}
.why-choose .wy-choose-option p {
  color: #1C1D20;
  line-height: 27px;
  font-size: 15px;
}
@media (max-width: 1230px) {
  .why-choose .wy-choose-option p {
    min-height: 108px;
  }
}
@media (max-width: 991px) {
  .why-choose .wy-choose-option p {
    min-height: 135px;
  }
}
.why-choose .wy-choose-option a {
  padding: 9px 20px;
  background-color: transparent;
  display: flex;
  align-items: center;
  width: 155px;
  color: #000;
  font-weight: 700;
  margin-top: 15px;
  border-radius: 50px;
  border: 2px solid #000000;
  position: relative;
  font-size: 15px;
  line-height: 17px;
}
.why-choose .wy-choose-option a span {
  transition: all 0.5s;
  background-color: #000;
  width: 26px;
  height: 26px;
  border-radius: 26px;
  position: absolute;
  right: 20px;
  font-size: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-choose .wy-choose-option a:hover {
  transform: scale(1.05);
  background-color: #000;
  color: #fff;
}
.why-choose .wy-choose-option a:hover span {
  margin-left: 30px;
  background-color: #5BD0B3;
  transform: rotate(360deg);
}

.nav-slider {
  overflow: hidden !important;
}

.our-offerings {
  position: relative;
  padding: 0 0 25px 0;
}
.our-offerings .head {
  position: absolute;
  left: 0;
  top: 43px;
  width: 100%;
  z-index: 9;
}
.our-offerings .head h2 {
  color: #fff;
}
.our-offerings .head span {
  color: #fff;
}

.slider-container {
  margin: auto;
}
.slider-container .main-slider {
  height: 550px;
}
.slider-container .main-slider .slick-list.draggable {
  height: 100%;
}
.slider-container .main-slider .slick-list.draggable .slick-track {
  height: 100%;
  transition: unset;
}
.slider-container .main-slider .slick-list.draggable .slick-track .slick-slide {
  height: 100%;
}
.slider-container .main-slider .slick-list.draggable .slick-track .slick-slide > div {
  height: 100%;
}
@media (max-width: 767px) {
  .slider-container .main-slider .slick-list.draggable .slick-track .slick-slide > div {
    line-height: 0px;
  }
}
.slider-container .main-slider .slick-list.draggable .slick-track .slick-slide > div .slide {
  height: 100%;
}
.slider-container .main-slider .slide-content {
  background: rgba(0, 0, 0, 0.65);
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  position: relative;
  height: 100%;
}
.slider-container .main-slider .slide-content figure {
  position: relative;
  margin-bottom: 0;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}
.slider-container .main-slider .slide-content figure img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.slider-container .main-slider .slide-content figure figcaption {
  position: absolute;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 63.64%, rgba(38, 17, 2, 0.53) 101.69%);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  padding-top: 165px;
}
.slider-container .main-slider .slide-content figure figcaption .text-box {
  width: 650px;
  padding: 35px;
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.5019607843);
  position: relative;
}
@media (max-width: 1199px) {
  .slider-container .main-slider .slide-content figure figcaption .text-box {
    padding-left: 70px;
  }
}
@media (max-width: 767px) {
  .slider-container .main-slider .slide-content figure figcaption .text-box {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 30px;
  }
}

.main-slider h3 {
  margin: 0 0 15px 0;
  font-weight: 700;
  color: #fff;
  font-size: 32px;
  line-height: 40px;
}
@media (max-width: 767px) {
  .main-slider h3 {
    font-size: 25px;
    line-height: 32px;
  }
}
.main-slider p {
  margin-bottom: 15px;
  line-height: 26px;
  color: #fff;
}
.main-slider ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}
.main-slider ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
  line-height: 26px;
  color: #fff;
}
.main-slider ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4ade80;
}

.btn-explore {
  padding: 7px 20px 9px;
  background-color: #5BD0B3;
  display: flex;
  align-items: center;
  width: 175px;
  color: #fff;
  font-size: 15px;
  line-height: 17px;
  font-weight: 700;
  margin-top: 15px;
  border-radius: 50px;
  border: 2px solid #5BD0B3;
  position: relative;
  height: 38px;
}
.btn-explore span {
  transition: all 0.5s;
  background-color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 26px;
  position: absolute;
  right: 20px;
  font-size: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  top: 4.5px;
}
.btn-explore span img {
  width: 6px;
  height: auto !important;
}
.btn-explore:hover {
  transform: scale(1.05);
  background-color: #fff;
  color: #000;
}
.btn-explore:hover span {
  margin-left: 30px;
  background-color: #5BD0B3;
  transform: rotate(360deg);
}
.btn-explore:hover span img {
  width: 6px;
}

/* Nav styles */
.nav-slider {
  margin-top: -44px;
  padding-bottom: 25px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 9;
}
.nav-slider .slick-list.draggable {
  width: 100%;
}
.nav-slider .slick-slide {
  margin: 8px 7px 17px;
}
.nav-slider .slick-current .nav-item {
  background: #5BD0B3;
  color: #fff;
}
.nav-slider .nav-item {
  background: #fff;
  color: #000;
  border-radius: 12px;
  border: 0.7px solid #DBDBDB;
  font-weight: 700;
  padding: 19px 9px;
  font-size: 16px;
  line-height: 138%;
  text-align: left;
  cursor: pointer;
  white-space: nowrap;
  flex: 0 0 auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background 0.3s ease;
  width: 100%;
  box-shadow: 0px 14px 15px 0px rgba(177, 177, 177, 0.2509803922);
}
.nav-slider .nav-item img {
  margin-right: 15px;
}
.nav-slider .nav-item:hover {
  background: #5BD0B3;
  color: #fff;
}
@media screen and (max-width: 576px) {
  .nav-slider {
    margin-top: -60px;
  }
}

/* Slick arrows */
.main-slider .slick-prev,
.main-slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 0.6px solid #C0C0C0;
  color: #000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 10;
  font-size: 18px;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .main-slider .slick-prev,
  .main-slider .slick-next {
    width: 40px;
    height: 40px;
  }
}
.main-slider .slick-prev:hover,
.main-slider .slick-next:hover {
  background: #5BD0B3;
}
.main-slider .slick-prev:hover img,
.main-slider .slick-next:hover img {
  filter: invert(1) brightness(2);
}
.main-slider .slick-prev:before,
.main-slider .slick-next:before {
  display: none;
}
.main-slider .slick-prev {
  left: 15px;
  right: unset;
}
@media (max-width: 1199px) {
  .main-slider .slick-prev {
    left: 10px;
  }
}
.main-slider .slick-next {
  right: 15px;
}
@media (max-width: 1199px) {
  .main-slider .slick-next {
    right: 10px;
  }
}

/* Responsive rules */
@media (max-width: 1024px) {
  .nav-slider .slick-prev,
  .nav-slider .slick-next {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .main-slider .slide {
    flex-direction: column;
    align-items: flex-start;
  }
  .slide img {
    width: 100%;
    margin-top: 16px;
  }
}
.testimonial-section {
  padding: 60px 0;
  display: none;
}

.logo-slider {
  margin-bottom: 50px;
}
.logo-slider .logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  justify-items: center;
  padding: 10px;
}
.logo-slider .logo-grid .logo-box {
  background: #fff;
  width: 100%;
  height: 116px;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #9CE2D0;
  box-shadow: 0px 33px 44.2px 0px #ECFFFA;
}
.logo-slider .logo-grid .logo-box img {
  max-height: 60px;
  max-width: 100%;
}
.logo-slider .slick-dots {
  position: relative;
  margin: 20px 0 0 0;
  bottom: unset;
}
.logo-slider .slick-dots li {
  width: 10px;
  height: 10px;
  background: #CDCDCD;
  border-radius: 10px;
}
.logo-slider .slick-dots li button {
  display: none;
}
.logo-slider .slick-dots li.slick-active {
  width: 31px;
  background: #5BD0B3;
}

.slick-dots {
  text-align: center;
  margin-top: 20px;
}
.slick-dots li button:before {
  color: #00c7b1;
}

.about-us-outer {
  padding: 60px 0px;
}
.about-us-outer video {
  border-radius: 20px;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-us-outer ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 15px;
}
.about-us-outer ul li:before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 7px;
  background: url(../images/li-bg-dot.svg) left center no-repeat;
  width: 11px;
  height: 11px;
}
.about-us-outer .stats-box {
  margin-top: -98px;
  position: relative;
  z-index: 9;
}
.about-us-outer .stats-box .s-box {
  background: url(../images/counter-bg.webp) left top no-repeat;
  background-size: 100% 100%;
  width: 303px;
  height: 200px;
  border-radius: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  padding: 25px;
  text-align: center;
  box-shadow: 0px 21px 24.1px rgba(206, 206, 206, 0.25);
}
.about-us-outer .stats-box .s-box .count-number {
  justify-content: center;
  font-size: 24px;
  line-height: 32px;
  color: #1C1D20;
  font-weight: 800;
}
.about-us-outer .stats-box .s-box .count-title {
  margin-top: 20px;
  font-size: 15px;
  color: #000;
  font-weight: 500;
}
@media (max-width: 1023px) {
  .about-us-outer .stats-box .s-box {
    width: calc(33.33% - 20px);
    margin: 0px;
  }
}
@media (max-width: 768px) {
  .about-us-outer .stats-box .s-box {
    width: calc(50% - 20px);
  }
}
@media (max-width: 550px) {
  .about-us-outer .stats-box .s-box {
    width: 330px;
  }
}
@media (max-width: 1023px) {
  .about-us-outer .stats-box {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .about-us-outer .stats-box {
    justify-content: center;
    margin-top: -100px;
  }
}
@media (max-width: 991px) {
  .about-us-outer .col-lg-7.px-5 {
    padding: 0px 15px !important;
  }
}

.global-prerence {
  background: #F9F8F5;
  /* Description block */
}
.global-prerence .map-container .nav {
  border: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  justify-content: center;
}
.global-prerence .map-container .nav li button {
  font-size: 18px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 44px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  outline: none;
  min-width: 185px;
  border: 1px solid #D4D4D4;
  background: transparent;
  color: #1C1D20;
}
.global-prerence .map-container .nav li button:hover {
  background: #5BD0B3;
  color: #fff;
}
.global-prerence .map-container .nav li button.active {
  background: #5BD0B3;
  color: #fff;
  font-weight: 700;
}
.global-prerence .map-container .tab-content .tab-pane {
  border: none;
  background: none;
}
.global-prerence .map-container .tab-content .tab-pane .accordion-body {
  padding: 0px;
  display: flex;
  align-items: flex-end;
  padding-top: 20px;
}
.global-prerence .map-container .tab-content .tab-pane .accordion-body .head {
  width: 100%;
}
.global-prerence .map-container .tab-content .tab-pane .accordion-body .head h2 {
  text-align: center;
}
.global-prerence .map-container .tab-content .tab-pane .accordion-body .global-left {
  width: 380px;
  min-width: 380px;
  padding-left: 20px;
  position: relative;
  transition: all 0.5s;
  transform: translateY(50px);
}
.global-prerence .map-container .tab-content .tab-pane .accordion-body .global-left h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  line-height: 30px;
  margin-bottom: 10px;
}
.global-prerence .map-container .tab-content .tab-pane .accordion-body .global-left p {
  font-size: 15px;
  line-height: 25px;
  color: #000;
  margin-bottom: 0px;
}
.global-prerence .map-container .tab-content .tab-pane .accordion-body .global-left::before {
  width: 4px;
  height: calc(100% - 14px);
  background: #22A081;
  left: 0px;
  top: 6px;
  content: "";
  position: absolute;
}
@media (max-width: 991px) {
  .global-prerence .map-container .tab-content .tab-pane .accordion-body .global-left {
    width: 100%;
    min-width: 100%;
    margin-bottom: 30px;
    transform: unset;
  }
}
.global-prerence .map-container .tab-content .tab-pane .accordion-body .globe-img-map {
  width: 100%;
  padding-left: 10px;
  display: flex;
  position: relative;
  transform: translateX(50px);
  transition: all 0.5s;
  justify-content: flex-end;
}
.global-prerence .map-container .tab-content .tab-pane .accordion-body .globe-img-map .map-area {
  position: absolute;
  width: 42%;
  left: 200px;
  top: -13px;
  margin: 0px;
  z-index: 1;
}
.global-prerence .map-container .tab-content .tab-pane .accordion-body .globe-img-map .map-area img {
  width: 100%;
}
@media (max-width: 767px) {
  .global-prerence .map-container .tab-content .tab-pane .accordion-body .globe-img-map .map-area {
    position: relative;
    left: unset;
    top: unset;
  }
}
.global-prerence .map-container .tab-content .tab-pane .accordion-body .globe-img-map .map-img {
  width: 58%;
  margin: 0px;
}
.global-prerence .map-container .tab-content .tab-pane .accordion-body .globe-img-map .map-img img {
  width: 100%;
  border-radius: 17px;
}
@media (max-width: 767px) {
  .global-prerence .map-container .tab-content .tab-pane .accordion-body .globe-img-map .map-img {
    width: 55%;
  }
}
@media (max-width: 991px) {
  .global-prerence .map-container .tab-content .tab-pane .accordion-body .globe-img-map {
    transform: unset;
  }
}
@media (max-width: 767px) {
  .global-prerence .map-container .tab-content .tab-pane .accordion-body .globe-img-map {
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  .global-prerence .map-container .tab-content .tab-pane .accordion-body {
    flex-wrap: wrap;
    padding: 30px 0px;
  }
}
@media (max-width: 991px) {
  .global-prerence .map-container .tab-content .tab-pane .accordion-header {
    margin-bottom: 10px;
  }
  .global-prerence .map-container .tab-content .tab-pane .accordion-header .accordion-button {
    padding: 8px 20px;
    border-bottom: 1px solid #ddd;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
  }
  .global-prerence .map-container .tab-content .tab-pane .accordion-header .accordion-button:not(.collapsed) {
    color: #000;
    background-color: #9CE0D0;
    font-weight: bold;
  }
  .global-prerence .map-container .tab-content .tab-pane .accordion-header .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(0);
  }
}
.global-prerence .map-container .tab-content .tab-pane.active.show .accordion-body .global-left {
  transform: translateY(0px);
  opacity: 1;
}
.global-prerence .map-container .tab-content .tab-pane.active.show .accordion-body .globe-img-map {
  transform: translateX(0px);
  opacity: 1;
}
.global-prerence .global-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.global-prerence .column {
  flex: 1;
  min-width: 200px; /* makes each column shrink but not too small */
  border-right: 1px solid #C8C8C8;
}
.global-prerence .column ul {
  flex-wrap: wrap;
}
.global-prerence .column ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 15px;
  width: 50%;
}
.global-prerence .column ul li:before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 7px;
  background: url(../images/li-bg-dot.svg) left center no-repeat;
  width: 11px;
  height: 11px;
}
.global-prerence .column:last-child {
  border: none;
}
.global-prerence .column h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
  margin-bottom: 15px;
}
.global-prerence .country {
  display: block;
  margin: 0;
  cursor: pointer;
  color: #000;
  font-weight: 500;
  transition: color 0.3s;
}
.global-prerence .country:hover {
  color: #14977c;
}
.global-prerence .country.active {
  color: #14977c;
}
.global-prerence .description .desc-content {
  display: none;
}
.global-prerence .description .desc-content .global-left {
  width: 380px;
  min-width: 380px;
  padding-left: 20px;
  position: relative;
  transition: all 0.5s;
  transform: translateY(50px);
}
.global-prerence .description .desc-content .global-left h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  line-height: 30px;
  margin-bottom: 10px;
}
.global-prerence .description .desc-content .global-left p {
  font-size: 15px;
  line-height: 25px;
  color: #000;
  margin-bottom: 0px;
}
.global-prerence .description .desc-content .global-left::before {
  width: 4px;
  height: calc(100% - 14px);
  background: #22A081;
  left: 0px;
  top: 6px;
  content: "";
  position: absolute;
}
@media (max-width: 991px) {
  .global-prerence .description .desc-content .global-left {
    width: 100%;
    min-width: 100%;
    margin-bottom: 30px;
    transform: unset;
  }
}
.global-prerence .description .desc-content .globe-img-map {
  width: 100%;
  padding-left: 10px;
  display: flex;
  position: relative;
  transform: translateX(50px);
  transition: all 0.5s;
  justify-content: flex-end;
}
.global-prerence .description .desc-content .globe-img-map .map-area {
  position: absolute;
  width: 42%;
  left: 50px;
  top: -13px;
  margin: 0px;
  z-index: 1;
  display: none;
}
.global-prerence .description .desc-content .globe-img-map .map-area img {
  width: 100%;
}
@media (max-width: 767px) {
  .global-prerence .description .desc-content .globe-img-map .map-area {
    position: relative;
    left: unset;
    top: unset;
  }
}
.global-prerence .description .desc-content .globe-img-map .map-img {
  width: 85%;
  margin: 0px;
}
.global-prerence .description .desc-content .globe-img-map .map-img img {
  width: 100%;
  border-radius: 17px;
}
@media (max-width: 767px) {
  .global-prerence .description .desc-content .globe-img-map .map-img {
    width: 55%;
  }
}
@media (max-width: 991px) {
  .global-prerence .description .desc-content .globe-img-map {
    transform: unset;
  }
}
@media (max-width: 767px) {
  .global-prerence .description .desc-content .globe-img-map {
    align-items: center;
    justify-content: space-between;
  }
}
.global-prerence .desc-content.active {
  padding: 0px;
  display: flex;
  align-items: flex-end;
  padding-top: 20px;
}
.global-prerence .desc-content.active .global-left {
  transform: translateY(0px);
  opacity: 1;
}
@media (max-width: 991px) {
  .global-prerence .tab-content > .tab-pane {
    display: block;
    opacity: 1;
  }
}

.connect-section {
  background: #5BD0B3 url(../images/sama-x-vector.svg) left bottom no-repeat;
  border-radius: 15px;
  padding: 50px 30px;
  margin: 50px auto;
  max-width: 1200px;
  box-shadow: 0px 21px 24.1px rgba(206, 206, 206, 0.25);
}
.connect-section p {
  font-weight: 700;
  color: #000;
}
@media (max-width: 576px) {
  .connect-section p br {
    display: none;
  }
}
@media (max-width: 576px) {
  .connect-section .col-md-6 {
    padding: 0 5px;
  }
}
@media (max-width: 576px) {
  .connect-section {
    padding: 50px 15px;
  }
}

.connect-form .form-control {
  border-radius: 4px;
  border: none;
  height: 35px;
}
.connect-form .form-control::-moz-placeholder {
  color: rgba(33, 37, 41, 0.7);
}
.connect-form .form-control::placeholder {
  color: rgba(33, 37, 41, 0.7);
}
.connect-form select.form-control {
  background: #fff url(../images/menu-drop-arrow.png) 98% center no-repeat;
  color: rgba(33, 37, 41, 0.7);
}
.connect-form textarea.form-control {
  border-radius: 4px;
  border: none;
  height: 100px;
}
.connect-form textarea.form-control::-moz-placeholder {
  color: #212529;
  opacity: 0.7;
}
.connect-form textarea.form-control::placeholder {
  color: #212529;
  opacity: 0.7;
}
.connect-form .form-check label a {
  color: #000;
  font-weight: 700;
}

.form-check-input {
  border: 1px solid #000;
}

.submit-btn {
  background-color: #000;
  color: #fff;
  border-radius: 25px;
  padding: 10px 30px;
  border: none;
  width: 100%;
  font-weight: 700;
}
.submit-btn:hover {
  background: #fff;
  color: #5BD0B3;
}

@media (max-width: 767.98px) {
  .connect-text {
    margin-bottom: 30px;
  }
}
.expertise-outer {
  overflow: hidden;
  background: #F0F0F0;
}
@media (max-width: 767px) {
  .expertise-outer {
    padding: 50px 0 25px 0;
  }
}
.expertise-outer .head h2 {
  padding-bottom: 10px;
}
.expertise-outer .expertise-inner {
  display: flex;
}
.expertise-outer .expertise-inner .expertise-bx-right {
  width: 40%;
  display: flex;
  min-width: 40%;
  padding-right: 10px;
}
.expertise-outer .expertise-inner .expertise-bx-right .slider-frt-5 {
  width: 100%;
}
.expertise-outer .expertise-inner .expertise-bx-right .slider-frt-5 .slick-track {
  transition: unset;
}
.expertise-outer .expertise-inner .expertise-bx-right .slick-list {
  border-radius: 0 25px 25px 0;
}
@media (max-width: 576px) {
  .expertise-outer .expertise-inner .expertise-bx-right .slick-list {
    border-radius: 0 10px 10px 0;
  }
}
.expertise-outer .expertise-inner .expertise-bx-right .content-hov {
  position: relative;
  height: 100%;
}
.expertise-outer .expertise-inner .expertise-bx-right .content-hov figure {
  margin: 0;
  height: 100%;
}
.expertise-outer .expertise-inner .expertise-bx-right .content-hov figure img {
  height: 100%;
  border-radius: 0 25px 25px 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1640px) {
  .expertise-outer .expertise-inner .expertise-bx-right .content-hov figure img {
    height: 450px;
  }
}
@media (max-width: 1399px) {
  .expertise-outer .expertise-inner .expertise-bx-right .content-hov figure img {
    height: 400px;
  }
}
@media (max-width: 991px) {
  .expertise-outer .expertise-inner .expertise-bx-right .content-hov figure img {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .expertise-outer .expertise-inner .expertise-bx-right .content-hov figure img {
    border-radius: 25px;
  }
}
@media (max-width: 576px) {
  .expertise-outer .expertise-inner .expertise-bx-right .content-hov figure img {
    border-radius: 10px;
  }
}
.expertise-outer .expertise-inner .expertise-bx-right .content-hov .contect-text {
  background: #F9F8F5;
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 26px 49px;
  border-radius: 0 0 23px 0;
  box-sizing: border-box;
  left: 0px;
  display: flex;
}
.expertise-outer .expertise-inner .expertise-bx-right .content-hov .contect-text h3 {
  color: #1C1D20;
  font-size: 16px;
  text-decoration: none;
  align-items: center;
  display: flex;
  font-weight: 700;
}
@media (max-width: 991px) {
  .expertise-outer .expertise-inner .expertise-bx-right .content-hov .contect-text h3 {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .expertise-outer .expertise-inner .expertise-bx-right .content-hov .contect-text h3 {
    margin: 0px;
    font-size: 13px;
  }
}
@media (max-width: 400px) {
  .expertise-outer .expertise-inner .expertise-bx-right .content-hov .contect-text h3 {
    margin: 0px;
    font-size: 13px;
  }
}
.expertise-outer .expertise-inner .expertise-bx-right .content-hov .contect-text .explore-btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background: #5BD0B3;
  min-width: 212px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  transition: all 0.5s;
}
.expertise-outer .expertise-inner .expertise-bx-right .content-hov .contect-text .explore-btn span {
  display: flex;
  width: 26px;
  height: 26px;
  background: #FFFFFF;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.expertise-outer .expertise-inner .expertise-bx-right .content-hov .contect-text .explore-btn span img {
  width: 7px;
}
@media (max-width: 576px) {
  .expertise-outer .expertise-inner .expertise-bx-right .content-hov .contect-text .explore-btn span {
    width: 20px;
    height: 20px;
    margin-left: 7px;
  }
  .expertise-outer .expertise-inner .expertise-bx-right .content-hov .contect-text .explore-btn span img {
    width: 5px;
  }
}
.expertise-outer .expertise-inner .expertise-bx-right .content-hov .contect-text .explore-btn:hover {
  background: #fff;
  color: #000;
}
.expertise-outer .expertise-inner .expertise-bx-right .content-hov .contect-text .explore-btn:hover span {
  background: #5BD0B3;
  transform: rotate(360deg);
}
@media (max-width: 1199px) {
  .expertise-outer .expertise-inner .expertise-bx-right .content-hov .contect-text .explore-btn {
    min-width: 180px;
  }
}
@media (max-width: 576px) {
  .expertise-outer .expertise-inner .expertise-bx-right .content-hov .contect-text .explore-btn {
    font-size: 13px;
    min-width: 130px;
  }
}
@media (max-width: 1399px) {
  .expertise-outer .expertise-inner .expertise-bx-right .content-hov .contect-text {
    padding: 26px 20px;
  }
}
@media (max-width: 767px) {
  .expertise-outer .expertise-inner .expertise-bx-right .content-hov .contect-text {
    border-radius: 0 0 23px 23px;
  }
}
@media (max-width: 576px) {
  .expertise-outer .expertise-inner .expertise-bx-right .content-hov .contect-text {
    border-radius: 0 0 10px 10px;
    padding: 15px;
  }
}
.expertise-outer .expertise-inner .expertise-bx-right .slick-next {
  display: none !important;
}
@media (max-width: 767px) {
  .expertise-outer .expertise-inner .expertise-bx-right .slick-next {
    display: block !important;
    right: -15px;
  }
}
@media (max-width: 1024px) {
  .expertise-outer .expertise-inner .expertise-bx-right {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .expertise-outer .expertise-inner .expertise-bx-right {
    width: 100%;
    padding-right: 0px;
    padding-bottom: 30px;
  }
}
.expertise-outer .expertise-inner .expertise-bx-left {
  width: 60%;
  padding-right: 10px;
}
.expertise-outer .expertise-inner .expertise-bx-left .slider-frt6 {
  height: 100%;
}
.expertise-outer .expertise-inner .expertise-bx-left .slider-frt6 .slick-track {
  transition: unset;
}
.expertise-outer .expertise-inner .expertise-bx-left .slider-frt6 .slick-slide {
  padding: 0 10px;
}
.expertise-outer .expertise-inner .expertise-bx-left .slider-frt6 .slick-slide .content-hov {
  margin: 0px 10px;
}
.expertise-outer .expertise-inner .expertise-bx-left .slider-frt6 .slick-slide .content-hov img {
  width: 100%;
}
.expertise-outer .expertise-inner .expertise-bx-left .slider-frt6 .slick-slide.slick-current.slick-active {
  opacity: 0;
  position: absolute;
  left: 0px;
}
.expertise-outer .expertise-inner .expertise-bx-left .cater-inner {
  position: relative;
  height: 100%;
}
.expertise-outer .expertise-inner .expertise-bx-left .cater-inner figure {
  position: relative;
  margin: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
}
.expertise-outer .expertise-inner .expertise-bx-left .cater-inner figure img {
  width: 100%;
  border-radius: 30px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
}
@media (max-width: 767px) {
  .expertise-outer .expertise-inner .expertise-bx-left .cater-inner figure img {
    border-radius: 10px;
  }
}
.expertise-outer .expertise-inner .expertise-bx-left .cater-inner figure .cater-text {
  position: absolute;
  bottom: 26px;
  z-index: 9;
  width: 100%;
  padding: 0px 10px;
}
.expertise-outer .expertise-inner .expertise-bx-left .cater-inner figure .cater-text h6 {
  color: #fff;
  margin: 0;
  opacity: 1;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 1399px) {
  .expertise-outer .expertise-inner .expertise-bx-left .cater-inner figure .cater-text {
    bottom: 18px;
  }
}
@media (max-width: 767px) {
  .expertise-outer .expertise-inner .expertise-bx-left .cater-inner figure .cater-text {
    left: 10px;
  }
}
.expertise-outer .expertise-inner .expertise-bx-left .cater-inner .overlay {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 58.43%, #000000 100%);
  border-radius: 30px;
}
.expertise-outer .expertise-inner .expertise-bx-left .cater-inner:hover img {
  transform: scale(1.3);
}
@media (max-width: 1024px) {
  .expertise-outer .expertise-inner .expertise-bx-left {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .expertise-outer .expertise-inner .expertise-bx-left {
    display: none;
  }
}
.expertise-outer .expertise-inner .expertise-bx-left .slick-prev {
  display: none !important;
}
.expertise-outer .expertise-inner .slick-list {
  height: 100%;
}
.expertise-outer .expertise-inner .slick-list .slick-track {
  height: 100%;
}
.expertise-outer .expertise-inner .slick-list .slick-track .slick-slide {
  height: 100%;
}
.expertise-outer .expertise-inner .slick-list .slick-track .slick-slide > div {
  height: 100%;
}
.expertise-outer .expertise-inner .slick-arrow {
  width: 58px;
  height: 58px;
  border-radius: 36px;
  background: #fff;
  border: 0.6px solid #C0C0C0;
  z-index: 1;
  font-size: 0;
}
.expertise-outer .expertise-inner .slick-arrow:hover {
  background: #5BD0B3;
  border-color: #5BD0B3;
}
.expertise-outer .expertise-inner .slick-arrow:hover:before {
  filter: invert(100);
}
.expertise-outer .expertise-inner .slick-arrow:before {
  height: 58px;
  width: 58px;
  opacity: 1;
  display: block;
  content: "";
  font-size: 0px;
}
@media (max-width: 1399px) {
  .expertise-outer .expertise-inner .slick-arrow:before {
    width: 45px;
    height: 45px;
    background-size: 12px !important;
  }
}
@media (max-width: 1399px) {
  .expertise-outer .expertise-inner .slick-arrow {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 767px) {
  .expertise-outer .expertise-inner .slick-arrow {
    z-index: 9;
  }
}
.expertise-outer .expertise-inner .slick-prev {
  left: 65px;
}
.expertise-outer .expertise-inner .slick-prev:before {
  background: url(../images/next-arrow.svg) no-repeat center;
  transform: rotate(180deg);
}
@media (max-width: 1399px) {
  .expertise-outer .expertise-inner .slick-prev {
    left: 20px;
  }
}
@media (max-width: 767px) {
  .expertise-outer .expertise-inner .slick-prev {
    left: -15px;
    right: unset;
  }
}
.expertise-outer .expertise-inner .slick-next {
  right: 65px;
}
.expertise-outer .expertise-inner .slick-next:before {
  background: url(../images/next-arrow.svg) no-repeat center;
}
@media (max-width: 1399px) {
  .expertise-outer .expertise-inner .slick-next {
    right: 30px;
  }
}
@media (max-width: 767px) {
  .expertise-outer .expertise-inner .slick-next {
    right: -15px;
  }
}
@media (max-width: 767px) {
  .expertise-outer .expertise-inner {
    flex-wrap: wrap;
    padding: 0px 15px;
  }
}

.latest-update {
  padding-bottom: 0;
}
.latest-update .head {
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .latest-update {
    padding: 50px 0 0;
  }
}
.latest-update .latest-flex {
  display: flex;
}
.latest-update .latest-flex .latest-flex-half {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
}
.latest-update .latest-flex .latest-flex-half .home-blog-item {
  display: flex;
  width: 100%;
  height: 50%;
}
.latest-update .latest-flex .latest-flex-half .home-blog-item figure {
  display: flex;
  width: 100%;
  margin: 0;
}
.latest-update .latest-flex .latest-flex-half .home-blog-item figure img {
  transition: 0.5s;
  -o-object-fit: cover;
     object-fit: cover;
}
.latest-update .latest-flex .latest-flex-half .home-blog-item .home-blog-item-body {
  background: #F9F8F5;
  width: 50%;
}
.latest-update .latest-flex .latest-flex-half .home-blog-item .home-blog-item-body .bx-latest-sub .btn-update {
  display: flex;
  margin-bottom: 42px;
  color: var(--tp-common-white);
  transition: all 0.3s ease-out 0s;
  align-items: center;
  color: #fff;
  font-weight: 700;
  justify-content: space-between;
}
.latest-update .latest-flex .latest-flex-half .home-blog-item .home-blog-item-body .bx-latest-sub .btn-update .update-btn {
  color: #1C1D20;
  border: 1px solid #1C1D20;
  text-decoration: none;
  border-radius: 16px;
  font-weight: 500;
  padding: 2px 28px;
  font-size: 16px;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 576px) {
  .latest-update .latest-flex .latest-flex-half .home-blog-item .home-blog-item-body .bx-latest-sub .btn-update {
    margin-bottom: 25px;
  }
}
.latest-update .latest-flex .latest-flex-half .home-blog-item .home-blog-item-body .bx-latest-sub h5 {
  color: #1C1D20;
  font-size: 22px;
  max-width: 250px;
  margin-bottom: 15px;
  font-weight: 500;
}
@media (max-width: 1280px) {
  .latest-update .latest-flex .latest-flex-half .home-blog-item .home-blog-item-body .bx-latest-sub h5 {
    font-size: 18px;
  }
}
.latest-update .latest-flex .latest-flex-half .home-blog-item .home-blog-item-body .bx-latest-sub p {
  color: #1C1D20;
  display: none;
}
.latest-update .latest-flex .latest-flex-half .home-blog-item .home-blog-item-prev {
  overflow: hidden;
  display: flex;
  width: 50%;
}
.latest-update .latest-flex .latest-flex-half .home-blog-item .home-blog-item-prev img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1440px) {
  .latest-update .latest-flex .latest-flex-half .home-blog-item .home-blog-item-prev img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 576px) {
  .latest-update .latest-flex .latest-flex-half .home-blog-item {
    flex-wrap: wrap;
  }
}
.latest-update .latest-flex .latest-flex-half .home-blog-item.home-blog-item--big {
  display: flex;
  text-decoration: none;
  position: relative;
  height: 100%;
}
@media (max-width: 876px) {
  .latest-update .latest-flex .latest-flex-half .home-blog-item.home-blog-item--big {
    flex-wrap: wrap;
  }
}
.latest-update .latest-flex .latest-flex-half .home-blog-item.home-blog-item--big .home-blog-item-prev {
  width: 100%;
}
.latest-update .latest-flex .latest-flex-half .home-blog-item.home-blog-item--big .home-blog-item-prev img {
  width: 100%;
  transition: 0.5s;
}
.latest-update .latest-flex .latest-flex-half .home-blog-item.home-blog-item--big .home-blog-item-body {
  position: absolute;
  right: 0;
  width: 50%;
  height: 50%;
  bottom: 0;
  background: #5BD0B3;
  padding: 30px;
}
.latest-update .latest-flex .latest-flex-half .home-blog-item.home-blog-item--big .home-blog-item-body .bx-latest-sub h5 {
  color: #1C1D20;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 15px;
}
@media (max-width: 1280px) {
  .latest-update .latest-flex .latest-flex-half .home-blog-item.home-blog-item--big .home-blog-item-body .bx-latest-sub h5 {
    font-size: 18px;
  }
}
.latest-update .latest-flex .latest-flex-half .home-blog-item.home-blog-item--big .home-blog-item-body .bx-latest-sub p {
  color: #1C1D20;
  display: none;
}
@media (max-width: 876px) {
  .latest-update .latest-flex .latest-flex-half .home-blog-item.home-blog-item--big .home-blog-item-body {
    width: 100%;
    position: static;
  }
}
@media (max-width: 767px) {
  .latest-update .latest-flex .latest-flex-half .home-blog-item.home-blog-item--big .home-blog-item-body {
    padding: 20px 24px 20px 24px;
    height: auto;
  }
}
@media (max-width: 991px) {
  .latest-update .latest-flex .latest-flex-half {
    width: 100%;
  }
}
.latest-update .latest-flex .flex-change a {
  text-decoration: none;
}
.latest-update .latest-flex .flex-change .home-blog-item:last-child {
  flex-direction: row-reverse;
}
@media (max-width: 1024px) {
  .latest-update .latest-flex .flex-change .home-blog-item:last-child {
    flex-direction: row;
  }
}
.latest-update .latest-flex .flex-change .home-blog-item:last-child .home-blog-item-body {
  background: var(--tp-common-white);
}
.latest-update .latest-flex .flex-change .home-blog-item .home-blog-item-body {
  padding: 35px;
  width: 50%;
}
.latest-update .latest-flex .flex-change .home-blog-item .home-blog-item-body .bx-latest-sub .btn-update .update-btn {
  color: #22A081;
  border: 1px solid #22A081;
}
@media (max-width: 1440px) {
  .latest-update .latest-flex .flex-change .home-blog-item .home-blog-item-body {
    width: 50%;
  }
}
@media (max-width: 1399px) {
  .latest-update .latest-flex .flex-change .home-blog-item .home-blog-item-body {
    width: 50%;
  }
}
@media (max-width: 1280px) {
  .latest-update .latest-flex .flex-change .home-blog-item .home-blog-item-body {
    padding: 32px 20px 49px 10px;
  }
}
@media (max-width: 1199px) {
  .latest-update .latest-flex .flex-change .home-blog-item .home-blog-item-body {
    width: 50%;
  }
}
@media (max-width: 876px) {
  .latest-update .latest-flex .flex-change .home-blog-item .home-blog-item-body {
    width: 100%;
  }
}
@media (max-width: 876px) and (max-width: 876px) {
  .latest-update .latest-flex .flex-change .home-blog-item .home-blog-item-body {
    width: 100%;
    padding: 58px 20px 49px 40px;
  }
}
@media (max-width: 767px) {
  .latest-update .latest-flex .flex-change .home-blog-item .home-blog-item-body {
    padding: 20px 24px 20px 24px;
    height: auto;
  }
}
@media (max-width: 1199px) {
  .latest-update .latest-flex .flex-change .home-blog-item .home-blog-item-prev {
    width: 50%;
  }
}
@media (max-width: 876px) {
  .latest-update .latest-flex .flex-change .home-blog-item .home-blog-item-prev {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .latest-update .latest-flex .flex-change .home-blog-item {
    order: 2;
  }
}
.latest-update .latest-flex .flex-change .home-blog-item:last-child {
  order: 1;
  z-index: 9;
}
@media (max-width: 991px) {
  .latest-update .latest-flex {
    flex-wrap: wrap;
  }
}
.latest-update .home-blog-item:hover .home-blog-item-prev img {
  transform: scale(1.1);
}

.learn-more {
  padding: 10px 20px;
  background-color: transparent;
  display: flex;
  align-items: center;
  width: 155px;
  color: #000;
  font-weight: 700;
  margin-top: 15px;
  border-radius: 50px;
  border: 2px solid #000000;
  position: relative;
  line-height: 15px;
}
.learn-more span {
  transition: all 0.5s;
  background-color: #000;
  width: 26px;
  height: 26px;
  border-radius: 26px;
  position: absolute;
  inset-inline-end: 10px;
  right: 20px;
  font-size: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.learn-more [dir=rtl] span {
  right: auto;
  left: 20px; /* flip for RTL */
}
.learn-more:hover {
  transform: scale(1.05);
  background-color: #000;
  color: #fff;
}
.learn-more:hover span {
  margin-left: 30px;
  background-color: #5BD0B3;
  transform: rotate(360deg);
}
.learn-more:hover [dir=rtl] span {
  margin-right: 30px;
}

.read-btn {
  padding: 10px 20px;
  background-color: transparent;
  display: flex;
  align-items: center;
  width: 155px;
  color: #fff;
  font-weight: 700;
  margin-top: 15px;
  border-radius: 50px;
  border: 2px solid #fff;
  position: relative;
  line-height: 15px;
}
.read-btn span {
  transition: all 0.5s;
  background-color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 26px;
  position: absolute;
  right: 20px;
  font-size: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.read-btn span img {
  width: 6px;
  margin-top: 0;
}
.read-btn:hover {
  transform: scale(1.05);
  background-color: #000;
  color: #fff;
}
.read-btn:hover span {
  margin-left: 30px;
  background-color: #5BD0B3;
  transform: rotate(360deg);
}

.rtl .why-choose .wy-choose-option {
  direction: rtl;
}

.rtl .why-choose .wy-choose-option a {
  justify-content: space-around;
  padding: 9px 20px 9px 0;
}

.rtl .main-slider ul li {
  padding-right: 15px;
}

.rtl .main-slider ul li:before {
  right: 0;
  left: unset;
}

.rtl .nav-slider .nav-item img {
  margin-left: 15px;
}

.rtl .expertise-outer .expertise-inner .expertise-bx-right .content-hov .contect-text {
  padding-right: 230px;
}

.rtl .expertise-outer .expertise-inner .expertise-bx-right .content-hov .contect-text .explore-btn {
  flex-direction: row-reverse;
}

.rtl .about-us-outer .head {
  direction: rtl;
}

.rtl .about-us-outer .head .btn-explore {
  justify-content: flex-end;
}

.rtl .about-us-outer ul li {
  padding-right: 15px;
}

.rtl .about-us-outer ul li:before {
  right: 0;
  left: unset;
}

.rtl .connect-form .form-control {
  direction: rtl;
}

.rtl .latest-update .latest-flex .latest-flex-half .home-blog-item.home-blog-item--big .home-blog-item-body .bx-latest-sub {
  direction: rtl;
}

.rtl .latest-update .latest-flex .latest-flex-half .home-blog-item.home-blog-item--big .home-blog-item-body .bx-latest-sub button {
  justify-content: flex-end;
}

.rtl .latest-update .latest-flex .flex-change .home-blog-item .home-blog-item-body .bx-latest-sub {
  direction: rtl;
}

.rtl .latest-update .latest-flex .flex-change .home-blog-item .home-blog-item-body .bx-latest-sub button {
  justify-content: flex-end;
}

.rtl .home .industry {
  padding-top: 50px !important;
}

.rtl .industry .connect-section .form-check {
  direction: rtl;
}

.rtl .industry .connect-section .form-check label {
  margin-right: 30px;
}

.rtl .industry .connect-section .form-check input {
  float: none;
}

.rtl .banner .strip-banner ul li {
  direction: rtl;
}

.rtl .banner .strip-banner ul li img {
  margin-left: 15px;
  margin-right: 0;
}

.rtl .expertise-outer .expertise-inner .slick-prev {
  right: unset;
}

.rtl .banner .container-fluid .row .hero-banner .slick-list.draggable .slick-track .slick-slide > div .slide figure figcaption .text-box::after {
  right: 0;
  left: unset;
}

.rtl .banner .container-fluid .row .hero-banner .slick-list.draggable .slick-track .slick-slide > div .slide figure figcaption .text-box {
  padding-right: 20px;
  padding-left: 0;
}

.rtl .main-slider .text-box .btn-explore {
  justify-content: flex-end;
}

.rtl .global-prerence .column {
  padding-right: 20px;
}

.rtl .global-prerence .column ul {
  display: flex;
  justify-content: flex-end;
}

.rtl .global-prerence .column ul li {
  padding-right: 15px;
}

.rtl .global-prerence .column ul li::before {
  right: 0;
  left: unset;
}

.rtl .global-prerence .description .desc-content .global-left {
  padding-right: 20px;
}

.rtl .global-prerence .description .desc-content .global-left:before {
  right: 0;
  left: unset;
}

@media (max-width: 576px) {
  .rtl .expertise-outer .expertise-inner .expertise-bx-right .content-hov .contect-text {
    padding-right: 140px;
  }
  .rtl .global-prerence .desc-content.active {
    flex-wrap: wrap;
  }
  .rtl .global-prerence .description .desc-content .globe-img-map .map-img {
    width: 100%;
  }
}
.who-we-are {
  background: url(../images/about-who-we-are-bg.webp) left top no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.who-we-are figure {
  overflow: hidden;
  border-radius: 20px;
}
.who-we-are figure img {
  transform: scale(1);
}
.who-we-are figure:hover img {
  transform: scale(1.2);
}
.who-we-are .text-box h3 {
  margin-bottom: 15px;
  color: #5BD0B3;
  font-size: 28px;
  line-height: 38px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .who-we-are {
    padding-bottom: 0;
  }
}

.about-alghanim .text-box {
  padding-right: 60px;
}
@media screen and (max-width: 767px) {
  .about-alghanim .text-box {
    padding-right: 0;
  }
}
.about-alghanim figure {
  overflow: hidden;
  border-radius: 20px;
}
.about-alghanim figure img {
  transform: scale(1);
}
.about-alghanim figure:hover img {
  transform: scale(1.2);
}
@media screen and (max-width: 767px) {
  .about-alghanim {
    padding-top: 0;
  }
}

.mission-vision {
  background: url(../images/mission-bg.webp) left top no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.mission-vision .content-box {
  padding-right: 100px;
}
.mission-vision .content-box .mission {
  padding: 50px 0;
  height: 300px;
}
.mission-vision .content-box .mission h2 {
  font-size: var(--tp-fz-h2);
  color: var(--tp-common-white);
  padding-bottom: 25px;
  line-height: 120%;
  font-weight: 700;
}
.mission-vision .content-box .mission h2 span {
  color: #5BD0B3;
}
@media screen and (max-width: 767px) {
  .mission-vision .content-box .mission h2 {
    padding-bottom: 10px;
  }
}
.mission-vision .content-box .mission p {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .mission-vision .content-box .mission {
    height: auto;
    padding: 0 0 25px 0;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(242, 242, 242, 0.1882352941);
  }
  .mission-vision .content-box .mission:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .mission-vision .content-box {
    padding-right: 15px;
  }
}
.mission-vision .right-box-content {
  padding-bottom: 50px;
}
.mission-vision .right-box-content h3 {
  font-size: 30px;
  line-height: 45px;
  color: #fff;
}
.mission-vision .right-box-content h3 span {
  color: #5BD0B3;
}
.mission-vision:after {
  width: 1px;
  height: 100%;
  background: rgba(242, 242, 242, 0.1882352941);
  display: block;
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
}
@media screen and (max-width: 767px) {
  .mission-vision:after {
    display: none;
  }
}
.mission-vision:before {
  width: 50%;
  height: 1px;
  background: rgba(242, 242, 242, 0.1882352941);
  display: block;
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
}
@media screen and (max-width: 767px) {
  .mission-vision:before {
    display: none;
  }
}

.why-choose-us {
  background: #F9F8F5 url(../images/why-choose-bg-globe.png) right top no-repeat;
  background-blend-mode: hard-light;
}
.why-choose-us .image-text figure {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.why-choose-us .image-text figure img {
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .why-choose-us .image-text figure img {
    border-radius: 10px 10px 0 0;
  }
}
.why-choose-us .image-text figure figcaption {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 28.94%, rgba(0, 0, 0, 0.92) 87.99%);
  display: flex;
  align-items: flex-end;
}
.why-choose-us .image-text figure figcaption .text {
  transform: translateY(135px);
}
.why-choose-us .image-text figure figcaption .text h3 {
  color: #fff;
  margin-bottom: 15px;
}
.why-choose-us .image-text figure figcaption .text h3 span {
  display: block;
  font-size: 17px;
  line-height: 27px;
  margin-top: 10px;
}
.why-choose-us .image-text figure figcaption .text p {
  color: #fff;
  min-height: 78px;
}
@media screen and (max-width: 767px) {
  .why-choose-us .image-text figure figcaption .text {
    transform: inherit;
  }
}
@media screen and (max-width: 767px) {
  .why-choose-us .image-text figure figcaption {
    position: relative;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(80.62deg, rgba(91, 208, 179, 0.87) 0.44%, rgba(50, 160, 133, 0.87) 102.08%);
  }
}
.why-choose-us .image-text:hover img {
  transform: scale(1.2);
}
.why-choose-us .image-text:hover figcaption {
  background: linear-gradient(80.62deg, rgba(91, 208, 179, 0.87) 0.44%, rgba(50, 160, 133, 0.87) 102.08%);
  align-items: flex-start;
}
.why-choose-us .image-text:hover figcaption .text {
  transform: translateY(0);
}
.why-choose-us .image-text:hover figcaption .text h3 span {
  display: none;
}

.our-team .team-slider .slick-slide {
  margin: 0 15px;
  padding: 15px 0;
}
.our-team .team-slider .slick-slide .team-box {
  border-radius: 12px;
  background: #FCFCFC;
  padding: 12px;
  border: 1px solid #E2E2E2;
  box-shadow: 0px 19px 24.1px 0px #E1FFF7;
}
.our-team .team-slider .slick-slide .team-box figure {
  overflow: hidden;
  border-radius: 10px;
}
.our-team .team-slider .slick-slide .team-box figure img {
  width: 100%;
}
.our-team .team-slider .slick-slide .team-box h3 {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 10px;
}
.our-team .team-slider .slick-slide .team-box h4 {
  color: #5B5B5B;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 20px;
}
.our-team .team-slider .slick-slide .team-box a {
  display: inline-flex;
  float: right;
}
.our-team .team-slider .slick-slide .team-box a span {
  width: 28px;
  height: 28px;
  background: #5BD0B3;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.our-team .team-slider .slick-slide .team-box a:hover span {
  transform: scale(1.2);
}
.our-team .team-slider .slick-slide .team-box:hover figure img {
  transform: scale(1.2);
}
.our-team .team-slider .slick-prev,
.our-team .team-slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 0.6px solid #C0C0C0;
  color: #000;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  z-index: 10;
  font-size: 18px;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .our-team .team-slider .slick-prev,
  .our-team .team-slider .slick-next {
    width: 40px;
    height: 40px;
  }
}
.our-team .team-slider .slick-prev:hover,
.our-team .team-slider .slick-next:hover {
  background: #5BD0B3;
}
.our-team .team-slider .slick-prev:hover img,
.our-team .team-slider .slick-next:hover img {
  filter: invert(1) brightness(2);
}
.our-team .team-slider .slick-prev:before,
.our-team .team-slider .slick-next:before {
  display: none;
}
.our-team .team-slider .slick-prev {
  left: -55px;
}
@media (max-width: 767px) {
  .our-team .team-slider .slick-prev {
    left: 0;
  }
}
.our-team .team-slider .slick-next {
  right: -55px;
}
@media (max-width: 767px) {
  .our-team .team-slider .slick-next {
    right: 0;
  }
}

.seamless-installation {
  padding: 100px 0;
  background: url(../images/seamless-integration.webp) left top no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.seamless-installation .head h2 {
  color: #fff;
}
.seamless-installation .text-with-list h3 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  color: #5BD0B3;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.seamless-installation .text-with-list p {
  color: #fff;
  margin-top: 25px;
}
.seamless-installation .text-with-list ul {
  justify-content: space-between;
  margin-top: 45px;
}
.seamless-installation .text-with-list ul li {
  background: url(../images/seam-li-bg.png) left top no-repeat;
  background-size: cover;
  color: #fff;
  font-weight: 500;
  width: 32%;
  height: 80px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 20px 0 40px;
  margin-bottom: 15px;
  position: relative;
}
.seamless-installation .text-with-list ul li:before {
  position: absolute;
  left: 20px;
  background: url(../images/li-bg-dot.svg) left top no-repeat;
  width: 11px;
  height: 11px;
  content: "";
  display: block;
}
.seamless-installation .text-with-list ul li:hover {
  background: #5BD0B3;
}
@media screen and (max-width: 767px) {
  .seamless-installation .text-with-list ul li {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  .seamless-installation {
    padding: 60px 0;
  }
}

.our-team a.btn-explore {
  width: 145px;
}

.our-team-members {
  background: #F9F8F5;
}
.our-team-members .team-box {
  border-radius: 12px;
  background: #FCFCFC;
  padding: 12px;
  border: 1px solid #E2E2E2;
  margin-bottom: 30px;
  position: relative;
}
.our-team-members .team-box figure {
  overflow: hidden;
  border-radius: 10px;
}
.our-team-members .team-box figure img {
  width: 100%;
}
.our-team-members .team-box h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}
.our-team-members .team-box h4 {
  color: #5B5B5B;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  min-height: 40px;
}
.our-team-members .team-box a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: end;
}
.our-team-members .team-box a span {
  width: 28px;
  height: 28px;
  background: #5BD0B3;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: -15px;
  top: -15px;
}
.our-team-members .team-box a:hover span {
  transform: scale(1.2);
}
.our-team-members .team-box:hover {
  box-shadow: 0px 19px 24.1px 0px #E1FFF7;
}
.our-team-members .team-box:hover figure img {
  transform: scale(1.2);
}

.modal-backdrop {
  background: rgba(255, 255, 255, 0.9411764706);
}

.modal .modal-dialog {
  min-width: 1000px;
  border: 1px solid #A5D6CA;
  padding: 35px;
  border-radius: 30px;
  box-shadow: 0px 50px 44.7px 0px #E2FFF9;
  background-color: #E8FFFA;
}
.modal .modal-dialog .modal-content {
  background: transparent;
  border: none;
  padding: 0;
}
.modal .modal-dialog .modal-content .modal-header {
  justify-content: space-between;
  border: none;
}
.modal .modal-dialog .modal-content .modal-header figure {
  margin-bottom: 0;
}
.modal .modal-dialog .modal-content .modal-header .btn-close {
  position: absolute;
  right: 0px;
  top: -7px;
  width: 40px;
  height: 40px;
  border: 5px solid #000;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  padding: 0;
  opacity: 1;
  background-color: #fff;
}
.modal .modal-dialog .modal-content .modal-header .profile-photo {
  width: 30%;
}
@media (max-width: 667px) {
  .modal .modal-dialog .modal-content .modal-header .profile-photo {
    width: 100%;
    margin-bottom: 20px;
  }
}
.modal .modal-dialog .modal-content .modal-header .profile-photo img {
  width: 100%;
}
.modal .modal-dialog .modal-content .modal-header .member-detail {
  width: 66%;
}
.modal .modal-dialog .modal-content .modal-header .member-detail h3 {
  font-size: 22px;
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.modal .modal-dialog .modal-content .modal-header .member-detail p {
  color: #5BD0B3;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 667px) {
  .modal .modal-dialog .modal-content .modal-header .member-detail {
    width: 100%;
  }
}
@media (max-width: 667px) {
  .modal .modal-dialog .modal-content .modal-header {
    flex-wrap: wrap;
    padding: 0;
  }
}
.modal .modal-dialog .modal-content .modal-body p:last-child {
  margin-bottom: 0;
}
.modal .modal-dialog .modal-content .modal-body ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 15px;
}
.modal .modal-dialog .modal-content .modal-body ul li:before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 7px;
  background: url(../images/li-bg-dot.svg) left center no-repeat;
  width: 11px;
  height: 11px;
}
@media (max-width: 667px) {
  .modal .modal-dialog .modal-content .modal-body {
    padding: 15px 0;
  }
}
@media (max-width: 1024px) {
  .modal .modal-dialog {
    min-width: 95%;
    padding: 20px;
  }
}

.rtl .our-team .team-slider .slick-prev {
  right: unset;
}

.page-template-template-industry .what-we-offer .head {
  padding-bottom: 10px;
}

.tailored-solutions {
  padding-bottom: 0;
}

.what-we-offer {
  padding: 0 0 25px 0;
}
.what-we-offer .col-lg-6 {
  margin-bottom: 25px;
}
.what-we-offer .col-lg-6 .image-text {
  background: rgba(255, 255, 255, 0.6588235294);
  padding: 15px;
  box-shadow: none;
  height: 100%;
  border-radius: 6px;
  border: 1px solid #87E7CF;
}
.what-we-offer .col-lg-6 .image-text figure {
  margin-right: 20px;
  margin-bottom: 0;
  overflow: hidden;
  width: 175px;
  min-width: 175px;
  height: 175px;
  display: flex;
  border-radius: 6px;
}
.what-we-offer .col-lg-6 .image-text figure img {
  transform: scale(1);
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 991px) {
  .what-we-offer .col-lg-6 .image-text figure {
    width: 100%;
    margin-right: 0;
  }
  .what-we-offer .col-lg-6 .image-text figure img {
    width: 100%;
  }
}
.what-we-offer .col-lg-6 .image-text .text-box {
  width: calc(100% - 214px);
}
.what-we-offer .col-lg-6 .image-text .text-box h3 {
  font-weight: 700;
  color: #1C1D20;
  font-size: 20px;
  margin-bottom: 15px;
}
.what-we-offer .col-lg-6 .image-text .text-box a {
  color: #5BD0B3;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.what-we-offer .col-lg-6 .image-text .text-box a img {
  margin-right: 15px;
}
.what-we-offer .col-lg-6 .image-text .text-box a:hover {
  font-weight: 800;
}
.what-we-offer .col-lg-6 .image-text .text-box a:hover img {
  margin-right: 10px;
}
@media screen and (max-width: 991px) {
  .what-we-offer .col-lg-6 .image-text .text-box {
    width: 100%;
    margin-top: 25px;
  }
}
@media screen and (max-width: 991px) {
  .what-we-offer .col-lg-6 .image-text {
    flex-wrap: wrap;
  }
}
.what-we-offer .col-lg-6 .image-text:hover {
  box-shadow: 0px 21px 60.7px 0px #E9FFFA;
}
.what-we-offer .col-lg-6 .image-text:hover img {
  transform: scale(1.2);
}

.features-benefit {
  background: url(../images/features-benefit-bg.webp) left top no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding-bottom: 30px;
}
.features-benefit .head {
  margin-bottom: 60px;
}
.features-benefit .head h2 {
  color: #fff;
}
.features-benefit figure {
  position: relative;
  display: flex;
  justify-content: center;
}
.features-benefit figure:before {
  width: 403px;
  height: 403px;
  background: linear-gradient(180deg, rgba(91, 208, 179, 0.68) 2.97%, rgba(10, 22, 19, 0) 76.92%);
  content: "";
  display: block;
  position: absolute;
  border-radius: 100%;
}
.features-benefit figure img {
  position: relative;
}
.features-benefit .col-lg-7 {
  margin-top: 0px;
}
.features-benefit .col-lg-7 thead th {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  border: none;
  padding: 0 15px 25px 25px;
}
.features-benefit .col-lg-7 thead th:first-child {
  width: 35%;
}
.features-benefit .col-lg-7 tbody tr td {
  color: #fff;
  line-height: 28px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.231372549);
  padding: 15px 15px 15px 25px;
  position: relative;
}
.features-benefit .col-lg-7 tbody tr td:first-child {
  font-size: 17px;
  font-weight: 600;
  padding-left: 25px;
}
.features-benefit .col-lg-7 tbody tr td:first-child img {
  position: absolute;
  left: 0;
  top: 22px;
}

.Industry-challenge {
  background: #F9F8F5;
}
.Industry-challenge .Challenges-box {
  border-radius: 10px;
  background: #fff;
  height: 100%;
  padding: 15px;
  border: 1px solid #DCDCDC;
  box-shadow: 0px 18px 36.7px 0px #E7E7E7;
}
.Industry-challenge .Challenges-box figure img {
  border-radius: 3px;
}
.Industry-challenge .Challenges-box h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}
.Industry-challenge .Challenges-box p {
  margin-bottom: 0;
}
.Industry-challenge .Challenges-box:hover {
  transform: translateY(-30px);
}

.tab-pane img {
  width: 100%;
  border-radius: 12px;
}

.accordion-button:not(.collapsed) {
  background-color: #dff7ef;
  color: #000;
}

.Deployment-approach .nav button {
  text-align: left;
  background: #fff url(../images/next-arrow.svg) 96% center no-repeat;
  background-size: 8px auto;
  border-radius: 0;
  margin-bottom: 25px;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  padding: 15px;
  border-bottom: 1px solid #E2E2E2;
}
.Deployment-approach .nav button.active {
  color: #22A081;
  background: #F0FFFB url(../images/next-arrow-green.svg) 96% center no-repeat;
  border-color: #B5F2E3;
}
.Deployment-approach .nav button:last-child {
  margin-bottom: 0;
}
.Deployment-approach .col-md-8 {
  padding-left: 70px;
}
.Deployment-approach .col-md-8 figure {
  position: relative;
  height: 302px;
  overflow: hidden;
  border-radius: 12px;
}
.Deployment-approach .col-md-8 figure figcaption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px 25px;
}
.Deployment-approach .col-md-8 figure figcaption p {
  color: #fff;
}

.built-compliance {
  padding-top: 0;
}
.built-compliance figure {
  position: relative;
  border-radius: 5px;
  margin-bottom: 25px;
  overflow: hidden;
}
.built-compliance figure img {
  border-radius: 5px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .built-compliance figure img {
    height: 350px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.built-compliance figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35.12%, #000000 100%);
}
.built-compliance figure figcaption .text-box {
  padding: 20px;
}
.built-compliance figure figcaption .text-box h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}
.built-compliance figure figcaption .text-box p {
  color: #fff;
}
.built-compliance figure:hover img {
  transform: scale(1.3);
}
.built-compliance figure:hover figcaption {
  background: rgba(0, 0, 0, 0.5);
}

.case-study {
  background: #F9F8F5;
}
.case-study .case-study-slider .case-study-box {
  display: flex !important;
  align-items: center;
  background: #fff;
  border: 1px solid #90E7D2;
  border-radius: 20px;
  box-shadow: 0px 20px 60.3px 0px #DAFFF6;
  padding: 40px 40px 10px 40px;
}
.case-study .case-study-slider .case-study-box .text-box {
  width: 50%;
  padding-right: 30px;
}
.case-study .case-study-slider .case-study-box .text-box h3 {
  color: #5BD0B3;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 30px;
}
.case-study .case-study-slider .case-study-box .text-box h4 {
  margin-bottom: 15px;
  color: #000;
  font-weight: 600;
  font-size: 20px;
}
@media screen and (max-width: 991px) {
  .case-study .case-study-slider .case-study-box .text-box h4 {
    font-size: 18px;
  }
}
.case-study .case-study-slider .case-study-box .text-box p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  .case-study .case-study-slider .case-study-box .text-box p {
    font-size: 16px;
    line-height: 22px;
  }
}
@media screen and (max-width: 767px) {
  .case-study .case-study-slider .case-study-box .text-box {
    width: 100%;
    padding-right: 0;
  }
}
.case-study .case-study-slider .case-study-box .image-box {
  width: 50%;
}
.case-study .case-study-slider .case-study-box .image-box figure img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .case-study .case-study-slider .case-study-box .image-box {
    width: 100%;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .case-study .case-study-slider .case-study-box {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    padding: 20px;
  }
}
.case-study .case-study-slider .slick-dots {
  position: relative;
  margin: 0;
}
.case-study .case-study-slider .slick-dots li {
  width: 40px;
  height: 3px;
  background: #CDCDCD;
  border-radius: 0;
}
.case-study .case-study-slider .slick-dots li button {
  display: none;
}
.case-study .case-study-slider .slick-dots li.slick-active {
  background: #5BD0B3;
}
.case-study .case-study-slider .slick-prev,
.case-study .case-study-slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 0.6px solid #C0C0C0;
  color: #000;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  z-index: 10;
  font-size: 18px;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .case-study .case-study-slider .slick-prev,
  .case-study .case-study-slider .slick-next {
    width: 40px;
    height: 40px;
  }
}
.case-study .case-study-slider .slick-prev:hover,
.case-study .case-study-slider .slick-next:hover {
  background: #5BD0B3;
}
.case-study .case-study-slider .slick-prev:hover img,
.case-study .case-study-slider .slick-next:hover img {
  filter: invert(1) brightness(2);
}
.case-study .case-study-slider .slick-prev:before,
.case-study .case-study-slider .slick-next:before {
  display: none;
}
.case-study .case-study-slider .slick-prev {
  left: -60px;
}
@media (max-width: 767px) {
  .case-study .case-study-slider .slick-prev {
    left: -40px;
  }
}
.case-study .case-study-slider .slick-next {
  right: -60px;
}
@media (max-width: 767px) {
  .case-study .case-study-slider .slick-next {
    right: -40px;
  }
}
@media (max-width: 767px) {
  .case-study .case-study-slider {
    width: 80%;
    margin: 0 auto;
  }
}

.faq .accordion .accordion-item {
  margin-bottom: 20px;
  border: 1px solid #97E6D2;
  border-radius: 12px;
}
.faq .accordion .accordion-item .accordion-button::after {
  display: none !important; /* hide default arrow */
}
.faq .accordion .accordion-item .faq-icon {
  margin-left: auto;
  font-size: 18px;
}
.faq .accordion .accordion-item .accordion-button {
  justify-content: space-between;
  border-radius: 12px;
  line-height: 26px;
  border: none;
  box-shadow: none;
}
.faq .accordion .accordion-item .accordion-button:not(.collapsed) .faq-icon::before {
  width: 40px;
  height: 40px;
  background: url(../images/open-eyes.svg) 96% center no-repeat;
  content: "";
  display: block;
}
.faq .accordion .accordion-item .accordion-button.collapsed .faq-icon::before {
  width: 40px;
  height: 40px;
  background: url(../images/close-eyes.svg) 96% center no-repeat;
  content: "";
  display: block;
}
.faq .accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: #5BD0B3;
  border-radius: 12px 12px 0 0;
}
.faq .accordion .accordion-item .accordion-collapse.collapse.show {
  border-radius: 0px 0px 12px 12px;
}
.faq .accordion .accordion-item.active {
  background-color: #5BD0B3;
}
.faq .accordion .accordion-item .accordion-body ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 15px;
}
.faq .accordion .accordion-item .accordion-body ul li:before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 7px;
  background: url(../images/li-bg-dot.svg) left center no-repeat;
  width: 11px;
  height: 11px;
}

.industry {
  background: url(../images/industry-connect-bg.webp) left top no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  max-width: 100%;
}
.industry .connect-section {
  margin: 0;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .industry {
    padding-top: 0;
  }
}

.rtl .case-study .case-study-slider .case-study-box .text-box {
  padding-left: 30px;
  padding-right: 0;
}

.rtl .case-study .case-study-slider .slick-prev {
  right: unset;
}

.rtl .features-benefit .col-lg-7 tbody tr td:first-child {
  padding-right: 25px;
  padding-left: 0;
}

.rtl .features-benefit .col-lg-7 tbody tr td:first-child img {
  right: 0;
  left: unset;
}

.rtl .faq .accordion .accordion-item .accordion-button {
  justify-content: end;
}

.connectivity-without-limits {
  background: url(../images/connectivity-serice-bg.webp) left top no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.connectivity-without-limits .head {
  padding-right: 50px;
}
@media screen and (max-width: 767px) {
  .connectivity-without-limits .head {
    padding-right: 0;
  }
}
.connectivity-without-limits video {
  width: 80%;
  border-radius: 10px;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .connectivity-without-limits video {
    width: 100%;
    height: auto;
  }
}

.introdcution-samax {
  background: url(../images/about-sma-x-bg.webp) left top no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
  position: relative;
  padding-bottom: 80px;
}
.introdcution-samax .container-fluid {
  position: relative;
}
.introdcution-samax .head h2 {
  color: #fff;
}
.introdcution-samax .head p {
  color: #fff;
}
.introdcution-samax h3 {
  color: #5BD0B3;
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 30px;
  text-transform: inherit;
  font-weight: 500;
  text-align: center;
}
.introdcution-samax ul {
  padding-left: 60px;
  padding-right: 30px;
  justify-content: space-between;
  margin-top: 80px;
}
.introdcution-samax ul li {
  width: 32%;
  align-items: flex-start;
}
.introdcution-samax ul li h4 {
  font-size: 150px;
  line-height: 120px;
  font-weight: 700;
  background: linear-gradient(180deg, #232323 68.37%, #000000 119.39%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  font-family: "Urbanist", sans-serif;
}
@media screen and (max-width: 767px) {
  .introdcution-samax ul li h4 {
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 15px;
    font-size: 60px;
    line-height: 70px;
    width: 50px;
    text-align: center;
  }
}
.introdcution-samax ul li p {
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .introdcution-samax ul li p {
    width: calc(100% - 50px);
  }
}
@media screen and (max-width: 767px) {
  .introdcution-samax ul li {
    width: 100%;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .introdcution-samax ul {
    flex-wrap: wrap;
    padding: 15px;
  }
}
.introdcution-samax::before {
  width: 100%;
  height: 100%;
  position: absolute;
  display: none;
  content: "";
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}

.development-process {
  background: #F9F8F5;
}
.development-process .container {
  max-width: 1000px;
}
.development-process .container .number-box {
  background: linear-gradient(180deg, #5BD0B3 10%, #F9F8F5 81.43%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* For some modern browsers */
  color: transparent;
  font-size: 170px;
  line-height: 170px;
  font-weight: bold;
  font-family: "Urbanist", sans-serif;
}
.development-process .container .text-box {
  margin-left: 10px;
  padding-top: 25px;
}
.development-process .container .text-box h3 {
  font-weight: 700;
  color: #000000;
  font-size: 20px;
  margin-bottom: 15px;
}

.tailored-packages {
  background: url(../images/tailored-package-why-sets-bg.webp) left top no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  background-position: center;
}
.tailored-packages .head {
  padding-bottom: 0;
}
.tailored-packages ul {
  flex-wrap: wrap;
  margin-top: 20px;
}
.tailored-packages ul li {
  width: 440px;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 6.55%, rgba(0, 255, 213, 0.32) 100%);
  border-radius: 10px;
  padding: 15px;
  align-items: center;
  margin-bottom: 20px;
}
.tailored-packages ul li h4 {
  margin: 0 15px;
  font-size: 0;
  line-height: 0;
}
.tailored-packages ul li:nth-child(2) {
  margin-left: 60px;
}
@media screen and (max-width: 767px) {
  .tailored-packages ul li:nth-child(2) {
    margin-left: 0;
  }
}
.tailored-packages ul li:last-child {
  margin-left: 120px;
}
@media screen and (max-width: 767px) {
  .tailored-packages ul li:last-child {
    margin-left: 0;
  }
}

.hardware-accessories {
  background: url(../images/hardware-accessories-why-choose-bg.webp) left top no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  background-position: center;
}
.hardware-accessories .head {
  padding-bottom: 0;
}
.hardware-accessories ul {
  margin-top: 20px;
  padding-left: 0;
  justify-content: inherit;
}
.hardware-accessories ul li {
  width: 330px;
  height: 192px;
  background: linear-gradient(180deg, #27C09A 0%, rgba(18, 90, 72, 0) 100%);
  border-radius: 10px;
  padding: 15px;
  align-items: center;
  margin-bottom: 20px;
  margin-right: 15px;
}
.hardware-accessories ul li h4 {
  font-size: 135px;
  line-height: 100px;
  font-weight: 700;
  background: linear-gradient(180deg, #FFFFFF -7.14%, rgba(255, 255, 255, 0) 89.88%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 15px 0 0;
  font-family: "Urbanist", sans-serif;
}
@media screen and (max-width: 767px) {
  .hardware-accessories ul li h4 {
    width: auto;
  }
}

.development-process {
  background: #F9F8F5;
}
.development-process .container {
  max-width: 1000px;
}
.development-process .container .number-box {
  background: linear-gradient(180deg, #5BD0B3 10%, #F9F8F5 81.43%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* For some modern browsers */
  color: transparent;
  font-size: 170px;
  line-height: 170px;
  font-weight: bold;
  font-family: "Urbanist", sans-serif;
}
.development-process .container .text-box {
  margin-left: 10px;
  padding-top: 25px;
}
.development-process .container .text-box h3 {
  font-weight: 700;
  color: #000000;
  font-size: 20px;
  margin-bottom: 15px;
}
.development-process .col-lg-6 {
  margin-bottom: 25px;
}
.development-process .col-lg-6 .image-text {
  background: rgba(255, 255, 255, 0.6588235294);
  padding: 15px;
  box-shadow: none;
  height: 100%;
  border-radius: 6px;
  border: 1px solid #87E7CF;
}
.development-process .col-lg-6 .image-text figure {
  margin-right: 20px;
  margin-bottom: 0;
  overflow: hidden;
  width: 175px;
  min-width: 175px;
  height: 175px;
  display: flex;
  border-radius: 6px;
}
.development-process .col-lg-6 .image-text figure img {
  transform: scale(1);
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 991px) {
  .development-process .col-lg-6 .image-text figure {
    width: 100%;
    margin-right: 0;
  }
  .development-process .col-lg-6 .image-text figure img {
    width: 100%;
  }
}
.development-process .col-lg-6 .image-text .text-box {
  width: calc(100% - 214px);
}
.development-process .col-lg-6 .image-text .text-box h3 {
  font-weight: 700;
  color: #1C1D20;
  font-size: 20px;
  margin-bottom: 15px;
}
.development-process .col-lg-6 .image-text .text-box a {
  color: #5BD0B3;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.development-process .col-lg-6 .image-text .text-box a img {
  margin-right: 15px;
}
.development-process .col-lg-6 .image-text .text-box a:hover {
  font-weight: 800;
}
.development-process .col-lg-6 .image-text .text-box a:hover img {
  margin-right: 10px;
}
@media screen and (max-width: 991px) {
  .development-process .col-lg-6 .image-text .text-box {
    width: 100%;
    margin-top: 25px;
  }
}
@media screen and (max-width: 991px) {
  .development-process .col-lg-6 .image-text {
    flex-wrap: wrap;
  }
}
.development-process .col-lg-6 .image-text:hover {
  box-shadow: 0px 21px 60.7px 0px #E9FFFA;
}
.development-process .col-lg-6 .image-text:hover img {
  transform: scale(1.2);
}

.integrated-network {
  background: url(../images/integrated-network-solution-why-choose-bg.webp) center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.integrated-network ul {
  background: url(../images/int-samax-bg.webp) left top no-repeat;
  flex-wrap: wrap;
  align-items: center;
  width: 650px;
  height: 249px;
  padding: 50px;
  box-sizing: border-box;
}
.integrated-network ul li {
  margin-bottom: 0px;
  position: relative;
  padding-left: 20px;
  color: #fff;
  width: 100%;
}
.integrated-network ul li:before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 7px;
  background: url(../images/li-bg-dot.svg) left center no-repeat;
  width: 11px;
  height: 11px;
}
@media screen and (max-width: 767px) {
  .integrated-network ul {
    width: 100%;
    padding: 25px;
    margin-top: 20px;
  }
}

.hardware-acc .container {
  max-width: 1240px;
}

.integrated-solution .container {
  max-width: 1240px;
}
.integrated-solution .container .col-lg-3 .image-text {
  padding-left: 20px;
}
.integrated-solution .container .col-lg-3 .image-text figure {
  width: 70px;
  height: 70px;
  box-shadow: 0px 5px 9.1px 0px #C0F6E9;
  border-radius: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #5BD0B3;
}
.integrated-solution .container .col-lg-3 .image-text .text-box {
  padding-top: 0;
  margin: 0;
  border-right: 1px solid #CAEDE4;
  padding-right: 25px;
}
.integrated-solution .container .col-lg-3 .image-text .text-box h3 {
  color: #48C4A5;
}
@media screen and (max-width: 767px) {
  .integrated-solution .container .col-lg-3 .image-text .text-box {
    border: none;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .integrated-solution .container .col-lg-3 .image-text {
    padding-left: 0;
    margin-bottom: 25px;
  }
}
.integrated-solution .container .col-lg-3:last-child .image-text .text-box {
  border: none;
}

.our-pacakges {
  background: url(../images/packages-bg.webp) left top no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.our-pacakges .pricing-card {
  background: #F1FFFC;
  border-radius: 12px;
  box-shadow: 0px 18px 78.2px 0px #D1FFF4;
  padding-bottom: 25px;
  border: 1px solid #9CE2D0;
}
@media (max-width: 767px) {
  .our-pacakges .pricing-card {
    margin-bottom: 25px;
  }
}
.our-pacakges .pricing-header {
  background: linear-gradient(90deg, #1ab189, #25d0a7);
  color: #fff;
  text-align: center;
  font-weight: 800;
  padding: 15px 20px;
  border-radius: 10px 10px 0 0;
  font-size: 20px;
}
.our-pacakges .pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
  margin-top: 0px;
}
.our-pacakges .pricing-table th,
.our-pacakges .pricing-table td {
  text-align: left;
  padding: 10px 40px;
}
.our-pacakges .pricing-table td {
  background: linear-gradient(90deg, #F1FFFC 0%, #CAFFF4 51.78%, #F1FEFC 100%);
  font-size: 15px;
  font-weight: 600;
}
.our-pacakges .pricing-table td:last-child {
  text-align: center;
  font-weight: bold;
}
.our-pacakges .pricing-table th {
  color: #22A081;
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  padding-top: 0;
  padding-bottom: 0;
}
.our-pacakges .pricing-table th:last-child {
  text-align: center;
}
.our-pacakges .divider {
  border-top: 1px solid #9AE3D1;
  margin: 40px 40px 0px 40px;
  position: relative;
  text-align: center;
}
.our-pacakges .divider span {
  background: #F1FFFC;
  padding: 0 10px;
  position: relative;
  top: -12px;
  color: #000;
  font-size: 17px;
  font-weight: 700;
}
.our-pacakges .build-own {
  text-align: center;
  color: #1ab189;
  font-weight: bold;
  margin-bottom: 25px;
  font-size: 19px;
  line-height: 48px;
  font-weight: 700;
}
.our-pacakges .extra {
  display: flex;
  justify-content: space-between;
  padding: 10px 40px;
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 600;
  border-top: 1px solid #f1f1f1;
  background: linear-gradient(90deg, #F1FFFC 0%, #CAFFF4 51.78%, #F1FEFC 100%);
}

.which-plan-right .comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: linear-gradient(180deg, #F7FFFD 24.66%, #EDFFFB 100%);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #97E6D2;
}
.which-plan-right .comparison-table th {
  background: #5BD0B3;
  color: #fff;
  text-align: left;
  padding: 20px 40px;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .which-plan-right .comparison-table th {
    padding: 10px;
    font-size: 16px;
    line-height: 22px;
  }
}
.which-plan-right .comparison-table th:nth-child(2),
.which-plan-right .comparison-table td:nth-child(2) {
  text-align: center;
}
.which-plan-right .comparison-table td {
  padding: 20px 40px;
  font-size: 16px;
  font-weight: 500;
  border-top: 1px solid #97E6D2;
  border-left: 1px solid #97E6D2;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .which-plan-right .comparison-table td {
    padding: 10px;
    font-size: 14px;
    line-height: 18px;
  }
}
.which-plan-right .comparison-table tr:first-child td {
  border-top: none;
}
.which-plan-right .comparison-table td:first-child {
  font-weight: bold;
  color: #1ab189;
  width: 25%;
}

.exclusive-benefits {
  background: url(../images/exclusive-benefit-bg.webp) right top no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.exclusive-benefits .text-box {
  background: linear-gradient(-90deg, rgba(241, 242, 244, 0.28) 1.2%, rgba(146, 255, 228, 0.28) 98.88%);
  padding: 50px;
  border-radius: 10px;
}
.exclusive-benefits .text-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .exclusive-benefits .text-box h3 {
    margin-bottom: 15px;
  }
}
.exclusive-benefits .text-box ul {
  display: flex;
  flex-wrap: wrap;
}
.exclusive-benefits .text-box ul li {
  width: 50%;
  margin-bottom: 15px;
  position: relative;
  padding-left: 15px;
}
.exclusive-benefits .text-box ul li:before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 7px;
  background: url(../images/li-bg-dot.svg) left center no-repeat;
  width: 11px;
  height: 11px;
}
@media screen and (max-width: 767px) {
  .exclusive-benefits .text-box ul li {
    width: 100%;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .exclusive-benefits .text-box {
    padding: 15px;
  }
}

.rtl .integrated-network ul li {
  justify-content: flex-end;
  padding-right: 20px;
}

.rtl .integrated-network ul li::before {
  right: 0;
  left: unset;
}

.rtl .which-plan-right .comparison-table th,
.rtl .which-plan-right .comparison-table td {
  text-align: right !important;
}

.rtl .integrated-solution .container .col-lg-3 .image-text {
  justify-content: flex-end;
}

.rtl .exclusive-benefits .text-box ul li {
  padding-right: 15px;
}

.rtl .exclusive-benefits .text-box ul li:before {
  right: 0;
  left: unset;
}

.privacy-content h2 {
  font-size: 20px;
  color: var(--tp-common-black);
  padding-bottom: 10px;
  line-height: 120%;
  font-weight: 700;
  margin-top: 25px;
}
.privacy-content p {
  color: #000;
  font-size: 17px;
  line-height: 28px;
}
.privacy-content p a {
  color: #000;
}
.privacy-content p a:hover {
  color: #5BD0B3;
}
.privacy-content ul {
  margin: 0 0 15px 0;
  list-style-type: disc;
  padding-left: 18px;
}
.privacy-content ul li {
  color: #000;
  font-size: 17px;
  line-height: 28px;
}
.privacy-content ul li a {
  color: #000;
}
.privacy-content ul li a:hover {
  color: #5BD0B3;
}

.benefit-working {
  background: #F7F7F7;
}
.benefit-working ul {
  display: flex;
  flex-wrap: wrap;
}
.benefit-working ul li {
  text-align: center;
  width: 20%;
  padding: 0 25px;
  margin-bottom: 55px;
}
.benefit-working ul li h3 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}
@media screen and (max-width: 767px) {
  .benefit-working ul li {
    width: 33%;
  }
}
@media screen and (max-width: 576px) {
  .benefit-working ul li {
    width: 50%;
  }
}

.testimonial-slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}
.testimonial-slider .testimonial-box {
  text-align: center;
}
.testimonial-slider .testimonial-box figure {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 80px 0;
  position: relative;
}
.testimonial-slider .testimonial-box figure span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 100%;
  background: url(../images/team-span-bg.png) left top no-repeat;
  position: relative;
  z-index: 9;
}
.testimonial-slider .testimonial-box figure span img {
  box-sizing: border-box;
}
.testimonial-slider .testimonial-box figure:before {
  width: 311px;
  height: 290px;
  background: url(../images/employee-profile-bg.svg) center center no-repeat;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  display: block;
  content: "";
  position: absolute;
}
@media screen and (max-width: 576px) {
  .testimonial-slider .testimonial-box figure {
    padding-bottom: 30px;
  }
}
.testimonial-slider .testimonial-box p {
  padding: 0 100px;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .testimonial-slider .testimonial-box p {
    padding: 0 30px;
  }
}
.testimonial-slider .testimonial-box h4 {
  color: #414141;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.testimonial-slider .testimonial-box h5 {
  color: #5BD0B3;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}
.testimonial-slider .slick-arrow {
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 0;
  border: 0.6px solid #C0C0C0;
  top: 50%;
  margin-top: -30px;
}
.testimonial-slider .slick-arrow.slick-prev {
  left: -60px;
  background: url(../images/prev-arrow.svg) center no-repeat;
}
.testimonial-slider .slick-arrow.slick-prev:hover {
  background: #F0F0F0 url(../images/prev-arrow.svg) center no-repeat;
}
@media screen and (max-width: 1024px) {
  .testimonial-slider .slick-arrow.slick-prev {
    left: 0;
  }
}
.testimonial-slider .slick-arrow.slick-next {
  right: -60px;
  background: url(../images/next-arrow.svg) center no-repeat;
}
.testimonial-slider .slick-arrow.slick-next:hover {
  background: #F0F0F0 url(../images/next-arrow.svg) center no-repeat;
}
@media screen and (max-width: 1024px) {
  .testimonial-slider .slick-arrow.slick-next {
    right: 0;
  }
}
.testimonial-slider .slick-arrow:before {
  color: #222;
  display: none;
}
@media screen and (max-width: 576px) {
  .testimonial-slider .slick-arrow {
    width: 40px;
    height: 40px;
  }
}

.job-listing {
  padding: 60px 0;
  background: #F7F7F7;
}
.job-listing .sub-head-job {
  border: 1px solid #F5F5F5;
  background: var(--tp-common-white);
  justify-content: space-between;
  align-items: center;
  display: flex;
  padding: 16px 30px 16px 30px;
  box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 33px;
}
@media (max-width: 576px) {
  .job-listing .sub-head-job {
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .job-listing .sub-head-job {
    padding: 15px 10px 16px 10px;
  }
  .job-listing .sub-head-job .search-filter {
    width: 100%;
  }
}
.job-listing .sub-head-job label {
  color: var(--tp-common-black);
  font-weight: var(--tp-fw-medium);
}
.job-listing .sub-head-job select {
  display: block;
  background: #fff url(../images/car-poly.png) no-repeat 90% center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  padding-right: 70px;
  color: #B7B7B7;
}
.job-listing .sub-head-job .search-form {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  background: #5BD0B3;
  height: 52px;
  border-radius: 5px;
  padding: 10px;
  width: 255px;
}
.job-listing .sub-head-job .search-form input {
  background: transparent;
  color: #fff;
  border: none;
}
.job-listing .sub-head-job .search-form input:focus {
  box-shadow: none;
  border: none;
  outline: none;
}
.job-listing .sub-head-job .search-form input::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.job-listing .sub-head-job .search-form input::placeholder {
  color: #fff;
  opacity: 1;
}
.job-listing .sub-head-job .search-form button[type=submit] {
  border: none;
  background: none;
}
@media (max-width: 576px) {
  .job-listing .sub-head-job .search-form {
    flex-wrap: wrap;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .job-listing .sub-head-job .search-form {
    margin-top: 20px;
    justify-content: end;
  }
}
.job-listing .sub-head-job .search-form .carrer-search-input {
  position: relative;
  margin-right: 40px;
}
@media (max-width: 576px) {
  .job-listing .sub-head-job .search-form .carrer-search-input {
    margin-right: 0;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .job-listing .sub-head-job .search-form .carrer-search-input {
    margin-right: 20px;
  }
}
.job-listing .sub-head-job .search-form .carrer-search-input button {
  background: none;
  border: none;
}
@media (max-width: 576px) {
  .job-listing .sub-head-job .search-form .carrer-search-input button {
    left: 0;
    right: unset;
  }
}
.job-listing .sub-head-job .search-form .carrer-search-input input {
  background: var(--tp-common-white);
  border: none;
}
.job-listing .sub-head-job .search-form .submit-btn input {
  background: #FF7700;
  border: none;
  border-radius: 5px;
  color: var(--tp-common-white);
  padding: 10px 60px;
}
.job-listing .sub-head-job .search-form .search-form1 .search-box {
  position: absolute;
  top: 60px;
  right: 0;
  border-top: 4px solid var(--tp-heading-orange);
  display: none;
  z-index: 99;
}
.job-listing .sub-head-job .search-form .search-form1 .search-box input {
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  padding: 10px 8px;
}
@media (max-width: 576px) {
  .job-listing .sub-head-job .search-form .search-form1 .search-box {
    width: 100%;
  }
  .job-listing .sub-head-job .search-form .search-form1 .search-box input {
    width: 100%;
  }
}
.job-listing .sub-head-job .search-form .search-form1 .search-box.showhide {
  display: block;
}
.job-listing .job-listing-inner .job-box {
  padding: 50px 25px;
  margin-top: 36px;
  background: var(--tp-common-white);
  box-shadow: 0px 14px 56.8px 0px #DAFAF2;
  border: 1px solid #B9F3E5;
  border-radius: 2px;
}
.job-listing .job-listing-inner .job-box h4 {
  color: #5BD0B3;
  font-style: normal;
  font-size: 22px;
  font-weight: var(--tp-fw-bold);
  line-height: 120%;
  margin-bottom: 26px;
  text-transform: uppercase;
}
.job-listing .job-listing-inner .job-box h6 {
  color: #242424;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
}
.job-listing .job-listing-inner .job-box p {
  margin-bottom: 25px;
}
.job-listing .job-listing-inner .job-box a {
  border: 1px solid #5BD0B3;
  color: #000;
}
.job-listing .job-listing-inner .job-box a span {
  background: #5BD0B3;
}
.job-listing .job-listing-inner .job-box a:hover {
  color: #fff;
}

/** Custom Select **/
.custom-select-wrapper {
  position: relative;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.custom-select-wrapper select {
  display: none;
}
.custom-select-wrapper .custom-select {
  position: relative;
  display: block;
}
.custom-select-wrapper .custom-select .custom-select-trigger {
  position: relative;
  display: block;
  background: #fff url(../images/car-poly.svg) no-repeat 90% center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  padding-right: 70px;
  color: #B7B7B7;
}
.custom-select-wrapper .custom-select .custom-options {
  position: absolute;
  display: block;
  top: 53%;
  left: 51px;
  right: 0;
  padding: 10px 15px 10px 15px;
  margin: 15px 0;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  min-width: 160%;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.07);
  background: #fff;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
}
@media (max-width: 576px) {
  .custom-select-wrapper .custom-select .custom-options {
    z-index: 9;
  }
}
.custom-select-wrapper .custom-select.opened .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.custom-select-wrapper .custom-option {
  position: relative;
  display: block;
  padding: 0 22px;
  font-size: 12px;
  color: #3D3D3D;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.custom-select-wrapper .custom-option:hover {
  color: var(--tp-heading-orange);
}

.career-detail {
  padding-bottom: 46px;
  padding-top: 60px;
}
@media (max-width: 767px) {
  .career-detail {
    padding-bottom: 40px;
    padding-top: 30px;
  }
}
.career-detail h1 {
  margin-bottom: 25px;
  font-weight: 700;
}
.career-detail h2 {
  color: var(--tp-common-black);
  font-size: calc(var(--tp-fz-h1) - 3px);
  margin-bottom: 30px;
  font-style: normal;
  font-weight: var(--tp-fw-medium);
}
@media (max-width: 767px) {
  .career-detail h2 {
    font-size: 35px;
  }
}
@media (max-width: 576px) {
  .career-detail h2 {
    font-size: 25px;
  }
}
.career-detail .form-left h3 {
  padding-bottom: 20px;
  text-align: left;
  font-size: calc(var(--tp-fz-h2) - 4px);
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .career-detail .form-left h3 {
    font-size: var(--tp-fz-h3);
  }
}
.career-detail .profile-detail {
  background: #F7F7F7;
  padding: 40px;
}
@media (max-width: 576px) {
  .career-detail .profile-detail {
    padding: 25px;
  }
}
.career-detail .profile-detail h3 {
  color: var(--tp-icon-blue);
  margin-bottom: 15px;
  font-size: calc(var(--tp-fz-h2) - 6px);
  font-style: normal;
  font-weight: var(--tp-fw-sbold);
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .career-detail .profile-detail h3 {
    font-size: var(--tp-fz-h3);
  }
}
.career-detail .profile-detail h4 {
  color: var(--tp-common-black);
  font-style: normal;
  font-weight: var(--tp-fw-regular);
  font-size: calc(var(--tp-fz-h3) - 4px);
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .career-detail .profile-detail h4 {
    font-size: var(--tp-fz-h5);
  }
}
.career-detail .profile-detail .profile-first .profile-exp {
  padding-bottom: 20px;
}
.career-detail .profile-detail .profile-first .profile-exp span {
  margin-left: 10px;
  color: var(--tp-common-black);
  font-style: normal;
  font-weight: var(--tp-fw-regular);
  font-size: 17px;
}
@media screen and (max-width: 767px) {
  .career-detail .profile-detail .profile-first .profile-exp span {
    font-size: var(--tp-fz-h5);
  }
}
.career-detail .profile-detail .profile-first .profile-exp span.pro-ico {
  margin-left: 0;
  width: 30px;
  display: inline-flex;
}
.career-detail .profile-detail .profile-first p {
  margin: 0;
  padding-bottom: 20px;
  padding-top: 20px;
}
.career-detail .profile-detail p {
  font-style: normal;
  font-weight: var(--tp-fw-regular);
  color: #2D2F30;
  margin-bottom: 20px;
  font-size: calc(var(--tp-fz-a) - 1px);
}
.career-detail .profile-detail h5 {
  color: #383838;
  margin-bottom: 20px;
  font-size: calc(var(--tp-fz-h3) - 2px);
  font-style: normal;
  font-weight: var(--tp-fw-sbold);
}
.career-detail .profile-detail ul {
  list-style-type: none;
  margin-bottom: 15px;
}
.career-detail .profile-detail ul li {
  font-style: normal;
  margin-bottom: 20px;
  font-weight: var(--tp-fw-regular);
  font-size: var(--tp-fz-p);
  line-height: 150%;
  color: #2D2F30;
  padding-left: 20px;
  position: relative;
}
.career-detail .profile-detail ul li:before {
  width: 6px;
  height: 6px;
  border: 2px solid #5BD0B3;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 8px;
  content: "";
  display: block;
}
.career-detail .profile-detail h6 {
  font-size: calc(var(--tp-fz-h3) - 4px);
  font-style: normal;
  font-weight: var(--tp-fw-regular);
  line-height: 150%;
  color: var(--tp-common-black);
  margin-bottom: 15px;
}
.career-detail .profile-detail .share-blog {
  position: relative;
  z-index: 1;
}
.career-detail .profile-detail .share-blog ul {
  margin: 25px 0 0 0;
  left: 0;
  transition: all 0.5s linear;
  top: 24%;
  overflow: hidden;
  display: block;
}
.career-detail .profile-detail .share-blog ul li {
  margin-right: 15px;
  padding-left: 0;
  margin-bottom: 0;
}
.career-detail .profile-detail .share-blog ul li::before {
  display: none !important;
}
.career-detail .profile-detail .share-blog ul li a {
  width: 46px;
  height: 46px;
  border-radius: 100%;
  border: 1px solid #C7C7C7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.career-detail .profile-detail .share-blog ul li a i {
  color: #313131;
}
.career-detail .profile-detail .share-blog ul li a:hover {
  background: #5BD0B3;
  border-color: #fff;
}
.career-detail .profile-detail .share-blog ul li a:hover i {
  color: #fff;
}
.career-detail .profile-detail .share-blog ul.show {
  display: flex;
  width: 100%;
  margin-left: 265px;
}
.career-detail .apply-form-modify {
  padding: 25px;
  margin-left: 40px;
  width: auto;
  margin-top: 50px;
  z-index: 9;
  background: var(--tp-common-white);
}
@media (max-width: 1024px) {
  .career-detail .apply-form-modify {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .career-detail .apply-form-modify {
    padding: 5px;
    margin-top: 30px;
  }
}
.career-detail .apply-form-modify #mobile_code {
  position: relative;
}
.career-detail .apply-form-modify #mobile_code:after {
  content: "";
  position: absolute;
  height: 10px;
  top: 0;
  width: 2px;
}
.career-detail .apply-form-modify .file-upload-1 {
  border: 1px solid #E7E8F2;
  margin-bottom: 13px;
  padding: 13px 13px;
  float: left;
  width: 100%;
}
.career-detail .apply-form-modify .file-upload-1 #custom-text {
  margin-left: 10px;
  color: rgba(0, 0, 0, 0.5);
  float: left;
  font-size: 17px;
}
.career-detail .apply-form-modify #mob-custom .iti {
  margin-bottom: 13px;
  display: block;
}
.career-detail .apply-form-modify #mob-custom .iti__flag {
  display: none;
}
.career-detail .apply-form-modify #mob-custom .iti__selected-dial-code {
  margin-left: 5px;
  font-size: 22px;
  font-weight: 700;
}
.career-detail .apply-form-modify #mob-custom .iti__arrow {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #5BD0B3;
  margin-left: 9px;
  margin-top: 3px;
}
.career-detail .apply-form-modify #mob-custom .iti__arrow--up {
  border-bottom: none;
}
.career-detail .apply-form-modify #mob-custom .iti__flag.iti__in {
  display: none;
}
.career-detail .apply-form-modify #mob-custom .iti__selected-flag {
  background-color: transparent;
}
.career-detail .apply-form-modify #mob-custom .iti__selected-flag:after {
  content: "";
  background: var(--tp-common-black);
  width: 1px;
  height: 24px;
  margin-left: 17px;
}
.career-detail .apply-form-modify input {
  background: #F7F7F7;
  width: 100%;
  font-size: 16px;
  border: 1px solid #E9E9E9;
  margin-bottom: 13px;
  padding: 13px 17px;
  color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 400px) {
  .career-detail .apply-form-modify input {
    font-size: var(--tp-fz-p);
  }
}
.career-detail .apply-form-modify input:focus {
  border: none;
  box-shadow: 0 0 0;
  border: 1px solid #E7E8F2;
}
.career-detail .apply-form-modify input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.career-detail .apply-form-modify input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.career-detail .apply-form-modify .modify {
  font-weight: var(--tp-fw-bold);
  color: var(--tp-common-black);
}
.career-detail .apply-form-modify textarea {
  background: #F7F7F7;
  width: 100%;
  font-size: 16px;
  border: 1px solid #E9E9E9;
  padding: 13px 17px;
  resize: none;
}
.career-detail .apply-form-modify textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.career-detail .apply-form-modify textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.career-detail .apply-form-modify textarea:focus {
  border: none;
  box-shadow: 0 0 0;
  border: 1px solid #E7E8F2;
}
.career-detail .apply-form-modify .custom-file .file-input .wpcf7-form-control-wrap {
  position: relative;
}
.career-detail .apply-form-modify .custom-file .file-input .wpcf7-form-control-wrap input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  border: 1px solid #EDEDED;
  font-size: 16px;
  line-height: 100%;
  color: #353535;
  position: absolute;
  z-index: -1;
  padding: 0px;
}
@media (max-width: 400px) {
  .career-detail .apply-form-modify .custom-file .file-input .wpcf7-form-control-wrap input {
    font-size: var(--tp-fz-p);
  }
}
.career-detail .apply-form-modify .custom-file .file-input label {
  background: #F9F9F9;
  width: 100%;
  border: 1px solid #E9E9E9;
  margin-bottom: 13px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 100%;
  display: block;
  padding: 17px 17px !important;
  cursor: pointer;
}
.career-detail .apply-form-modify .custom-file .file-input label img {
  float: right;
  margin-top: -6%;
  width: 20px;
}
@media (max-width: 400px) {
  .career-detail .apply-form-modify .custom-file .file-input label img {
    margin-top: 0px;
    width: 15px;
  }
}
@media (max-width: 400px) {
  .career-detail .apply-form-modify .custom-file .file-input label {
    font-size: var(--tp-fz-p);
  }
}
.career-detail .apply-form-modify .custom-file .file-input label span {
  width: 100%;
  overflow: hidden;
  display: inline-block;
}
.career-detail .apply-form-modify .form-apply {
  text-align: center;
  margin-top: 13px;
  position: relative;
}

.featured-blogs {
  /* Custom dots */
}
.featured-blogs .featured-blog-slider {
  width: 91%;
}
.featured-blogs .featured-blog-slider .slick-list {
  padding-bottom: 30px;
}
.featured-blogs .featured-blog-slider .slide {
  display: flex !important;
  align-items: inherit;
  background: #fff;
}
.featured-blogs .featured-blog-slider .slide figure {
  width: 60%;
  margin-bottom: 0;
}
.featured-blogs .featured-blog-slider .slide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 0;
}
@media screen and (max-width: 991px) {
  .featured-blogs .featured-blog-slider .slide figure img {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .featured-blogs .featured-blog-slider .slide figure {
    width: 100%;
  }
}
.featured-blogs .featured-blog-slider .slide .slide-content {
  width: 40%;
  padding: 50px 50px 40px 0;
  background: linear-gradient(59.78deg, #5BD0B3 37.34%, #42B296 109.06%);
  margin-top: 25px;
  color: #fff;
  position: relative;
}
.featured-blogs .featured-blog-slider .slide .slide-content:before {
  width: 50px;
  height: 105%;
  background: linear-gradient(178deg, #5BD0B3 91%, #42B296 109.06%);
  position: absolute;
  left: -49px;
  top: 0;
  display: block;
  content: "";
}
@media screen and (max-width: 767px) {
  .featured-blogs .featured-blog-slider .slide .slide-content:before {
    display: none;
  }
}
.featured-blogs .featured-blog-slider .slide .slide-content:after {
  width: 111%;
  height: 20px;
  background: linear-gradient(178deg, #5BD0B3 91%, #42B296 109.06%);
  position: absolute;
  left: -48px;
  bottom: -19px;
  display: block;
  content: "";
}
@media screen and (max-width: 767px) {
  .featured-blogs .featured-blog-slider .slide .slide-content:after {
    display: none;
  }
}
.featured-blogs .featured-blog-slider .slide .slide-content small {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 15px;
}
.featured-blogs .featured-blog-slider .slide .slide-content h3 {
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #fff;
}
.featured-blogs .featured-blog-slider .slide .slide-content .read-btn {
  padding: 10px 20px;
  background-color: transparent;
  display: flex;
  align-items: center;
  width: 155px;
  color: #fff;
  font-weight: 700;
  margin-top: 15px;
  border-radius: 50px;
  border: 2px solid #fff;
  position: relative;
  line-height: 15px;
}
.featured-blogs .featured-blog-slider .slide .slide-content .read-btn span {
  transition: all 0.5s;
  background-color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 26px;
  position: absolute;
  right: 20px;
  font-size: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-blogs .featured-blog-slider .slide .slide-content .read-btn span img {
  width: 7px;
  margin-top: 0;
}
.featured-blogs .featured-blog-slider .slide .slide-content .read-btn:hover {
  transform: scale(1.05);
  background-color: #000;
  color: #fff;
  border-color: #000;
}
.featured-blogs .featured-blog-slider .slide .slide-content .read-btn:hover span {
  margin-left: 30px;
  background-color: #5BD0B3;
  transform: rotate(360deg);
}
@media screen and (max-width: 767px) {
  .featured-blogs .featured-blog-slider .slide .slide-content {
    width: 100%;
    padding: 15px;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .featured-blogs .featured-blog-slider .slide {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .featured-blogs .featured-blog-slider {
    width: 95%;
  }
}
.featured-blogs .featured-news-slider {
  background: linear-gradient(87.22deg, #5BD0B3 43.8%, #42B296 77.36%);
  padding: 25px;
  border-radius: 10px;
}
.featured-blogs .featured-news-slider .slick-list .slide {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}
.featured-blogs .featured-news-slider .slick-list .slide figure {
  width: 40%;
  margin-bottom: 0;
}
.featured-blogs .featured-news-slider .slick-list .slide figure img {
  margin-top: 0 !important;
}
@media screen and (max-width: 767px) {
  .featured-blogs .featured-news-slider .slick-list .slide figure {
    width: 100%;
    margin-bottom: 15px;
  }
}
.featured-blogs .featured-news-slider .slick-list .slide .slide-content {
  width: 53%;
}
.featured-blogs .featured-news-slider .slick-list .slide .slide-content small {
  color: #fff;
  display: flex;
  margin-bottom: 15px;
}
.featured-blogs .featured-news-slider .slick-list .slide .slide-content h3 {
  color: #fff;
  margin-bottom: 15px;
}
.featured-blogs .featured-news-slider .slick-list .slide .slide-content p {
  color: #fff;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .featured-blogs .featured-news-slider .slick-list .slide .slide-content {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .featured-blogs .featured-news-slider .slick-list .slide {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .featured-blogs .featured-news-slider {
    padding: 15px;
    width: 80%;
    margin: 0 auto;
  }
}
.featured-blogs .featured-events-slider {
  background: #fff;
  border: 1px solid #EFEFEF;
  padding: 25px;
  border-radius: 10px;
}
.featured-blogs .featured-events-slider .slick-list .slide {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}
.featured-blogs .featured-events-slider .slick-list .slide figure {
  width: 40%;
  margin-bottom: 0;
}
.featured-blogs .featured-events-slider .slick-list .slide figure img {
  margin-top: 0 !important;
}
@media screen and (max-width: 767px) {
  .featured-blogs .featured-events-slider .slick-list .slide figure {
    width: 100%;
    margin-bottom: 15px;
  }
}
.featured-blogs .featured-events-slider .slick-list .slide .slide-content {
  width: 53%;
}
.featured-blogs .featured-events-slider .slick-list .slide .slide-content small {
  color: #5BD0B3;
  display: flex;
  margin-bottom: 15px;
}
.featured-blogs .featured-events-slider .slick-list .slide .slide-content h3 {
  color: #000;
  margin-bottom: 15px;
}
.featured-blogs .featured-events-slider .slick-list .slide .slide-content p {
  color: #000;
  margin-bottom: 15px;
}
.featured-blogs .featured-events-slider .slick-list .slide .slide-content .read-btn {
  border: 1px solid #5BD0B3;
  color: #5BD0B3;
}
.featured-blogs .featured-events-slider .slick-list .slide .slide-content .read-btn span {
  background: #5BD0B3;
}
.featured-blogs .featured-events-slider .slick-list .slide .slide-content .read-btn span img {
  filter: brightness(0) invert(1);
  margin-top: 0;
}
.featured-blogs .featured-events-slider .slick-list .slide .slide-content .read-btn:hover {
  border-color: #000;
}
@media screen and (max-width: 767px) {
  .featured-blogs .featured-events-slider .slick-list .slide .slide-content {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .featured-blogs .featured-events-slider .slick-list .slide {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .featured-blogs .featured-events-slider {
    padding: 15px;
    width: 80%;
    margin: 0 auto;
  }
}
.featured-blogs .slick-prev,
.featured-blogs .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 0.6px solid #C0C0C0;
  color: #000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 10;
  font-size: 18px;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .featured-blogs .slick-prev,
  .featured-blogs .slick-next {
    width: 40px;
    height: 40px;
  }
}
.featured-blogs .slick-prev:hover,
.featured-blogs .slick-next:hover {
  background: #5BD0B3;
}
.featured-blogs .slick-prev:hover img,
.featured-blogs .slick-next:hover img {
  filter: invert(1) brightness(2);
}
.featured-blogs .slick-prev:before,
.featured-blogs .slick-next:before {
  display: none;
}
.featured-blogs .slick-prev {
  left: -70px;
}
@media screen and (max-width: 767px) {
  .featured-blogs .slick-prev {
    left: -45px;
  }
}
.featured-blogs .slick-next {
  right: -70px;
}
@media screen and (max-width: 767px) {
  .featured-blogs .slick-next {
    right: -45px;
  }
}
.featured-blogs .slick-dots {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  width: auto;
}
.featured-blogs .slick-dots li {
  margin: 5px 0;
  width: auto;
  height: auto;
}
.featured-blogs .slick-dots li button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #2BAA95;
  color: #000;
  font-size: 14px;
  font-weight: bold;
}
.featured-blogs .slick-dots li button:before {
  display: none;
}
@media screen and (max-width: 767px) {
  .featured-blogs .slick-dots {
    right: -19px;
    top: 15px;
    transform: inherit;
  }
}
.featured-blogs .slick-dots .slick-active button {
  background: #2BAA95;
  color: #fff;
}
.featured-blogs.featured-events {
  background: #F9F8F5;
}

.latest-blog {
  background: #F9F8F5;
}
.latest-blog .blog-box {
  background: #fff;
  padding: 15px;
  margin-bottom: 25px;
  border-radius: 10px;
  transform: translateY(0);
  border: 1px solid #BFFFEF;
  box-shadow: 0px 30px 72.5px 0px #DFFFF7;
}
.latest-blog .blog-box figure {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
}
.latest-blog .blog-box figure img {
  width: 100%;
  border-radius: 5px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
}
.latest-blog .blog-box span {
  color: #2BAA95;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 15px;
  display: flex;
}
.latest-blog .blog-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  min-height: 75px;
}
.latest-blog .blog-box h3 a {
  color: #333;
}
.latest-blog .blog-box p {
  min-height: 105px;
}
.latest-blog .blog-box:hover {
  transform: translateY(-10px);
}
.latest-blog .blog-box:hover figure img {
  transform: scale(1.2);
}
.latest-blog .blog-box:hover h3 a {
  color: #5BD0B3;
}

.latest-news {
  background: #F9F8F5;
}
.latest-news .blog-box {
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 0px;
  transform: translateY(0);
  justify-content: space-between;
  border-bottom: 1px solid #D1D1D1;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.latest-news .blog-box figure {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  width: 45%;
}
.latest-news .blog-box figure img {
  width: 100%;
  border-radius: 5px;
  transform: scale(1);
}
@media screen and (max-width: 767px) {
  .latest-news .blog-box figure {
    width: 100%;
  }
}
.latest-news .blog-box .text-box {
  width: 50%;
}
.latest-news .blog-box .text-box span {
  color: #2BAA95;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 15px;
  display: flex;
}
.latest-news .blog-box .text-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.latest-news .blog-box .text-box h3 a {
  color: #333;
}
.latest-news .blog-box .text-box:hover {
  transform: translateY(-10px);
}
.latest-news .blog-box .text-box:hover figure img {
  transform: scale(1.2);
}
.latest-news .blog-box .text-box:hover h3 a {
  color: #5BD0B3;
}
@media screen and (max-width: 767px) {
  .latest-news .blog-box .text-box {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .latest-news .blog-box {
    flex-wrap: wrap;
  }
}

.latest-event {
  background: #fff;
}
.latest-event .blog-box {
  padding: 0px;
  margin-bottom: 25px;
  border-radius: 0px;
  transform: translateY(0);
  justify-content: space-between;
  border-bottom: 1px solid #D1D1D1;
  box-shadow: 0px 41px 69.7px 0px rgba(183, 183, 183, 0.2509803922);
  border: 1px solid #EAEAEA;
}
.latest-event .blog-box figure {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 0px;
}
.latest-event .blog-box figure img {
  width: 100%;
  border-radius: 0px;
  transform: scale(1);
  aspect-ratio: 3/2;
}
.latest-event .blog-box .text-box {
  padding: 20px;
}
.latest-event .blog-box .text-box ul {
  display: flex;
  margin-bottom: 15px;
}
.latest-event .blog-box .text-box ul li {
  color: #4AB99E;
  font-size: 15px;
  font-weight: 600;
  margin-right: 7px;
}
.latest-event .blog-box .text-box ul li:last-child {
  margin-right: 0;
}
.latest-event .blog-box .text-box span {
  color: #3C3C3C;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
  display: flex;
}
.latest-event .blog-box .text-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.latest-event .blog-box .text-box h3 a {
  color: #333;
}
.latest-event .blog-box .text-box:hover {
  transform: translateY(-10px);
}
.latest-event .blog-box .text-box:hover figure img {
  transform: scale(1.2);
}
.latest-event .blog-box .text-box:hover h3 a {
  color: #5BD0B3;
}

.fade-in {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s;
}

.fade-in.show {
  opacity: 1;
  transform: none;
}

.blog-details {
  background: #F9F8F5;
}
.blog-details .container {
  position: relative;
}
.blog-details .container .detail-left {
  background: #fff;
  padding: 50px 50px 50px 50px;
  position: relative;
}
.blog-details .container .detail-left span {
  color: #5BD0B3;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}
.blog-details .container .detail-left h1 {
  margin: 15px 0;
  font-size: 35px;
  font-weight: 700;
  color: #000;
}
.blog-details .container .detail-left h2 {
  margin: 15px 0;
  font-size: 32px;
  font-weight: 700;
  color: #000;
}
.blog-details .container .detail-left h3 {
  margin: 15px 0;
  font-size: 24px;
  font-weight: 700;
  color: #000;
}
.blog-details .container .detail-left h4 {
  margin: 15px 0;
  font-size: 22px;
  font-weight: 700;
  color: #000;
}
.blog-details .container .detail-left h5 {
  font-size: 20px;
  margin: 15px 0;
  font-weight: 700;
  color: #000;
}
.blog-details .container .detail-left ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 15px;
}
.blog-details .container .detail-left ul li:before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 7px;
  background: url(../images/li-bg-dot.svg) left center no-repeat;
  width: 11px;
  height: 11px;
}
.blog-details .container .detail-right {
  padding: 0px 30px 0 30px;
}
.blog-details .container .share-blog {
  margin-bottom: 25px;
}
.blog-details .container .share-blog h3 {
  color: #2BAA95;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.blog-details .container .share-blog ul li {
  width: 60px;
  height: 60px;
  background: #fff;
  margin-right: 3px;
}
.blog-details .container .share-blog ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.blog-details .container .share-blog ul li a i {
  color: #000;
  font-size: 25px;
}
.blog-details .container .share-blog ul li a:hover i {
  color: #00719D;
}
.blog-details .container .related-post h3 {
  color: #2BAA95;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.blog-details .container .related-post .related-blog-post {
  padding: 15px 0;
  margin-bottom: 10px;
  border-bottom: 1px solid #D7D7D7;
}
.blog-details .container .related-post .related-blog-post h3 {
  text-transform: inherit;
  margin-bottom: 5px;
}
.blog-details .container .related-post .related-blog-post h3 a {
  color: #000;
  font-size: 17px;
  font-weight: 600;
}
.blog-details .container .related-post .related-blog-post h3 a:hover {
  color: #2BAA95;
}
.blog-details .container .related-post .related-blog-post span {
  color: #666666;
  font-size: 13px;
  font-weight: 600;
}

.news-featured-image {
  padding-bottom: 0;
  background: #F9F8F5;
}
.news-featured-image figure {
  margin-bottom: 0;
}

.news-details {
  background: #F9F8F5;
}
.news-details span {
  color: #5BD0B3;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}
.news-details h1 {
  margin-bottom: 50px;
  font-size: 35px;
  font-weight: 700;
  color: #000;
}
.news-details h2 {
  margin: 15px 0;
  font-size: 32px;
  font-weight: 700;
  color: #000;
}
.news-details h3 {
  margin: 15px 0;
  font-size: 24px;
  font-weight: 700;
  color: #000;
}
.news-details h4 {
  margin: 15px 0;
  font-size: 22px;
  font-weight: 700;
  color: #000;
}
.news-details h5 {
  font-size: 20px;
  margin: 15px 0;
  font-weight: 700;
  color: #000;
}

.go-back {
  padding: 10px 20px 10px 60px;
  background-color: transparent;
  display: flex;
  align-items: center;
  width: 155px;
  color: #000;
  font-weight: 700;
  margin-top: 25px;
  border-radius: 50px;
  border: 2px solid #5BD0B3;
  position: relative;
  line-height: 15px;
}
.go-back span {
  transition: all 0.5s;
  background-color: #5BD0B3;
  width: 26px;
  height: 26px;
  border-radius: 26px;
  position: absolute;
  left: 20px;
  font-size: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.go-back span img {
  width: 6px;
}
.go-back:hover {
  transform: scale(1.05);
  background-color: #000;
  color: #fff;
  border-color: #000;
}
.go-back:hover span {
  margin-right: 30px;
  background-color: #5BD0B3;
  transform: rotate(360deg);
}

.rtl .featured-blogs .featured-blog-slider .slide {
  flex-direction: row-reverse;
}

.rtl .blog-details .container .detail-left ul li {
  padding-right: 15px;
  padding-left: 0;
}

.rtl .blog-details .container .detail-left ul li:before {
  right: 0;
  left: unset;
}

.head-office {
  position: relative;
}
.head-office .container {
  position: relative;
  z-index: 9;
}
.head-office .container figure {
  border-radius: 4px;
  overflow: hidden;
}
.head-office .container figure img {
  border-radius: 4px;
}
.head-office .container figure:hover img {
  transform: scale(1.1);
}
.head-office .container .text-box h2 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
}
.head-office .container .text-box ul li {
  margin-bottom: 15px;
  border-bottom: 0.5px solid #C5C5C5;
  padding-bottom: 0px;
}
.head-office .container .text-box ul li span {
  color: #5BD0B3;
  font-weight: 800;
  text-transform: uppercase;
}
.head-office .container .text-box ul li p a {
  color: #000;
}
.head-office .container .text-box ul li:last-child {
  border: none;
  margin-bottom: 0;
}
.head-office .globe-box {
  width: auto;
  height: auto;
  position: absolute;
  right: 0;
  top: 0;
}
.head-office .globe-box img {
  mix-blend-mode: hard-light;
  width: 300px;
}
@media (max-width: 767px) {
  .head-office {
    padding-bottom: 0;
  }
}

.other-location .col-lg-4 .contact-box figure {
  overflow: hidden;
}
.other-location .col-lg-4 .contact-box figure img {
  transform: scale(1);
}
.other-location .col-lg-4 .contact-box h3 {
  color: #48BEA1;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.other-location .col-lg-4 .contact-box p {
  font-weight: 500;
  color: #000;
}
.other-location .col-lg-4 .contact-box:hover {
  transform: translateY(-20px);
}
.other-location .col-lg-4 .contact-box:hover figure img {
  transform: scale(1.1);
}
.other-location .col-lg-4:nth-child(2) {
  margin-top: 30px;
}
.other-location .col-lg-4:nth-child(3) {
  margin-top: 60px;
}
.other-location .col-lg-4:nth-child(5) {
  margin-top: 30px;
}
.other-location .col-lg-4:nth-child(6) {
  margin-top: 60px;
}
.other-location .col-lg-4:nth-child(8) {
  margin-top: 30px;
}
.other-location .col-lg-4:nth-child(9) {
  margin-top: 60px;
}

.landing-header {
  background: transparent;
  padding: 25px 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9;
}
.landing-header.fixed-header {
  position: absolute;
}

.landing-banner {
  padding: 100px 0 60px 0;
  background: url(../images/landing-banner.webp) left top no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.landing-banner h1 {
  color: #fff;
  font-size: 40px;
  line-height: 50px;
  font-weight: 800;
  margin-bottom: 20px;
}
.landing-banner h1 span {
  color: #5BD0B3;
}
@media screen and (max-width: 1024px) {
  .landing-banner h1 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media screen and (max-width: 576px) {
  .landing-banner h1 {
    font-size: 32px;
    line-height: 42px;
  }
}
.landing-banner p {
  color: #fff;
  font-size: 18px;
}
.landing-banner .connect-form {
  background: #53D1B2;
  border: 1px solid #7BC1B0;
  padding: 25px;
  border-radius: 8px;
}
.landing-banner .connect-form h2 {
  font-size: 28px;
  line-height: 40px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.solution-for-industry {
  padding: 50px 0;
}
.solution-for-industry .row {
  align-items: center;
}
.solution-for-industry .accordion {
  /* Change to minus when open */
}
.solution-for-industry .accordion .accordion-header button {
  text-align: left;
  font-size: 16px;
  padding: 10px 15px;
  color: #000000;
  opacity: 0.53;
  border-radius: 0px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.solution-for-industry .accordion .accordion-header button figure {
  width: 45px;
  margin-right: 10px;
  margin-bottom: 0;
  text-align: center;
}
.solution-for-industry .accordion .accordion-header button figure img {
  opacity: 0.54;
  width: 35px;
}
.solution-for-industry .accordion .accordion-header button.accordion-button:not(.collapsed) {
  background-color: #5BD0B3;
  color: #000;
  opacity: 1;
  font-weight: 700;
}
.solution-for-industry .accordion .accordion-header button.accordion-button:not(.collapsed) img {
  opacity: 1;
}
.solution-for-industry .accordion .accordion-body figure figcaption {
  margin-top: 25px;
}
.solution-for-industry .accordion .accordion-body .text-box h3 {
  color: #000;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
}
.solution-for-industry .accordion .accordion-body .text-box p {
  color: #000;
  margin-bottom: 15px;
}
.solution-for-industry .accordion .accordion-body .text-box a {
  color: #000;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
}
.solution-for-industry .accordion .accordion-body .text-box a img {
  border-radius: inherit;
  margin-left: 10px;
  height: auto;
  width: auto;
  -o-object-fit: inherit;
     object-fit: inherit;
}
.solution-for-industry .accordion .accordion-body .text-box a:hover {
  color: #5BD0B3;
}
.solution-for-industry .accordion .accordion-body .text-box a:hover img {
  margin-left: 15px;
}
.solution-for-industry .accordion .accordion-button::after {
  content: "+"; /* Default symbol */
  font-size: 1.5rem;
  font-weight: bold;
  background-image: none;
  transform: none !important;
  margin-left: auto;
  display: flex;
  align-items: center;
}
.solution-for-industry .accordion .accordion-button:not(.collapsed)::after {
  content: "−";
}
.solution-for-industry .nav-pills {
  border-right: 1px solid #C2C2C2;
}
.solution-for-industry .nav-pills button {
  text-align: left;
  font-size: 20px;
  padding: 17px 15px;
  color: #000000;
  opacity: 0.53;
  border-radius: 9px 0 0 9px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.solution-for-industry .nav-pills button figure {
  width: 55px;
  margin-right: 15px;
  margin-bottom: 0;
  text-align: center;
}
.solution-for-industry .nav-pills button figure img {
  opacity: 0.54;
}
.solution-for-industry .nav-pills button.active {
  background: #5BD0B3;
  color: #000;
  opacity: 1;
  font-weight: 700;
}
.solution-for-industry .nav-pills button.active img {
  opacity: 1;
}
.solution-for-industry .tab-content {
  display: flex;
  align-items: center;
}
.solution-for-industry .tab-content .tab-pane figure {
  position: relative;
  margin-bottom: 0;
  height: 435px;
}
.solution-for-industry .tab-content .tab-pane figure img {
  border-radius: 5px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.solution-for-industry .tab-content .tab-pane figure figcaption {
  position: absolute;
  bottom: 0;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  left: 0;
  padding: 25px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 43.64%, #000000 83.9%);
}
.solution-for-industry .tab-content .tab-pane figure figcaption .text-box h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
}
.solution-for-industry .tab-content .tab-pane figure figcaption .text-box p {
  color: #fff;
  margin-bottom: 15px;
}
.solution-for-industry .tab-content .tab-pane figure figcaption .text-box a {
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
}
.solution-for-industry .tab-content .tab-pane figure figcaption .text-box a img {
  border-radius: inherit;
  margin-left: 10px;
  height: auto;
  width: auto;
  -o-object-fit: inherit;
     object-fit: inherit;
}
.solution-for-industry .tab-content .tab-pane figure figcaption .text-box a:hover {
  color: #5BD0B3;
}
.solution-for-industry .tab-content .tab-pane figure figcaption .text-box a:hover img {
  margin-left: 15px;
}

.connectivty-across-region {
  background: url(../images/samax-full.png) left bottom no-repeat;
  position: relative;
  background-size: 100% auto;
  padding-bottom: 120px;
}
.connectivty-across-region #chartdiv {
  width: 100%;
  height: 70vh;
  float: left;
}
@media screen and (max-width: 767px) {
  .connectivty-across-region #chartdiv {
    height: 50vh;
  }
}
@media screen and (max-width: 576px) {
  .connectivty-across-region #chartdiv {
    height: 40vh;
  }
}
.connectivty-across-region .country-list {
  width: 100%;
  display: flex;
  border-top: 1px solid #D1D1D1;
  box-sizing: border-box;
  justify-content: center;
  position: absolute;
  bottom: 30px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .connectivty-across-region .country-list {
    display: none;
  }
}
.connectivty-across-region .country-list-item {
  margin: 0px 50px;
  padding-top: 20px;
  cursor: pointer;
  color: #9C9C9C;
  font-size: 20px;
  font-weight: 600;
  position: relative;
}
.connectivty-across-region .country-list-item:before {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  box-shadow: 0px 4px 10.3px 0px #FFFFFF;
  display: block;
  content: "";
  border: 2px solid #B5B5B5;
  top: -6px;
  left: 50%;
  background: #fff;
  margin-left: -6px;
}
.connectivty-across-region .country-list-item.active {
  color: #000000;
}
@media screen and (max-width: 1024px) {
  .connectivty-across-region .country-list-item {
    margin: 0 20px;
    font-size: 16px;
  }
}

.get-in-touch {
  position: relative;
  padding: 60px 0;
  background: url(../images/get-in-touch.webp) left top no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.get-in-touch .connect-form {
  padding: 25px;
  border-radius: 12px;
  background: rgba(6, 0, 19, 0.6588235294);
  border: 1px solid #373737;
}
.get-in-touch .connect-form h2 {
  font-size: 28px;
  line-height: 40px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}
.get-in-touch .connect-form .form-control {
  background: rgba(255, 255, 255, 0.0509803922);
  color: #fff;
}
.get-in-touch .connect-form .form-control::-moz-placeholder {
  color: #fff;
}
.get-in-touch .connect-form .form-control::placeholder {
  color: #fff;
}
.get-in-touch .connect-form .form-check label {
  color: #fff;
}
.get-in-touch .connect-form .form-check label a {
  color: #fff;
}
.get-in-touch .connect-form select.form-control {
  background: rgba(255, 255, 255, 0.0509803922) url(../images/select-dropdown.png) 96% center no-repeat;
}
.get-in-touch .connect-form select.form-control option {
  color: #000;
}
.get-in-touch .connect-form textarea {
  resize: none;
}
.get-in-touch .connect-form .submit-btn {
  background: #5BD0B3;
}
.get-in-touch .connect-form .submit-btn:hover {
  color: #000;
}
@media screen and (max-width: 767px) {
  .get-in-touch {
    height: auto;
  }
}

.landing-footer {
  background: #202020;
  padding: 25px 0;
}
.landing-footer .footer-top {
  border-bottom: 1px solid #373737;
  padding-bottom: 25px;
  margin-bottom: 20px;
}
.landing-footer p {
  color: #fff;
}
.landing-footer ul li {
  margin-right: 35px;
}
.landing-footer ul li a {
  color: #fff;
}
.landing-footer ul li a:hover {
  color: #5BD0B3;
}
.landing-footer ul li:last-child {
  margin-right: 0;
}

.head-landing {
  margin-bottom: 50px;
}
.head-landing h2 {
  text-transform: uppercase;
}
.head-landing h2 span {
  font-size: 36px;
  padding-bottom: 10px;
  line-height: 50px;
  color: #000;
  font-weight: 700;
  text-transform: capitalize;
  position: relative;
}
.head-landing h2 span:before {
  width: 112px;
  height: 5px;
  background: #5BD0B3;
  position: absolute;
  display: block;
  content: "";
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .head-landing h2 span {
    font-size: 30px;
    line-height: 40px;
  }
}

.mobile-accordion {
  display: none !important;
}

.key-features {
  background: url(../images/key-features-bg.webp) left top no-repeat;
  background-size: cover;
  padding-bottom: 0;
}
.key-features .head-landing h2 {
  color: #fff;
}
.key-features .head-landing h2 span {
  color: #fff;
}
.key-features figure {
  padding-top: 120px;
  position: relative;
  width: 85%;
  margin: 0 auto;
}
.key-features figure img {
  width: 80% !important;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .key-features figure img {
    width: 100% !important;
  }
}
.key-features figure figcaption {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.key-features figure figcaption ul {
  display: flex;
  position: relative;
  height: 100%;
}
.key-features figure figcaption ul li {
  text-align: center;
  position: absolute;
}
.key-features figure figcaption ul li figure {
  margin-bottom: 15px;
  padding-top: 0;
}
.key-features figure figcaption ul li figure img {
  transform: scale(1);
  max-width: 75px;
}
.key-features figure figcaption ul li figure:hover {
  transform: scale(1.1);
}
.key-features figure figcaption ul li h3 {
  font-size: 15px;
  color: #fff;
  text-align: center;
  font-weight: 500;
  line-height: 25px;
}
.key-features figure figcaption ul li:first-child {
  left: 0;
  bottom: 25px;
}
.key-features figure figcaption ul li:first-child:before {
  position: absolute;
  right: -90px;
  display: block;
  content: "";
  top: 40px;
  background: url(../images/lig-first-bg.png) left center no-repeat;
  width: 143px;
  height: 12px;
}
@media screen and (max-width: 1024px) {
  .key-features figure figcaption ul li:first-child {
    bottom: unset;
  }
}
.key-features figure figcaption ul li:nth-child(2) {
  bottom: 200px;
  left: 100px;
}
.key-features figure figcaption ul li:nth-child(2):before {
  position: absolute;
  right: -140px;
  display: block;
  content: "";
  top: 40px;
  background: url(../images/li-second-bg.png) left center no-repeat;
  width: 153px;
  height: 12px;
}
.key-features figure figcaption ul li:nth-child(3) {
  top: -55px;
  left: 330px;
}
.key-features figure figcaption ul li:nth-child(3):before {
  position: absolute;
  right: 21px;
  display: block;
  content: "";
  bottom: -45px;
  background: url(../images/li-third-bg.png) left center no-repeat;
  width: 38px;
  height: 45px;
}
.key-features figure figcaption ul li:nth-child(4) {
  top: -55px;
  left: 630px;
}
.key-features figure figcaption ul li:nth-child(4):before {
  position: absolute;
  right: 90px;
  display: block;
  content: "";
  bottom: -60px;
  background: url(../images/li-fourth-bg.png) left center no-repeat;
  width: 34px;
  height: 52px;
}
.key-features figure figcaption ul li:nth-child(5) {
  right: 70px;
  bottom: 200px;
}
.key-features figure figcaption ul li:nth-child(5):before {
  position: absolute;
  left: -140px;
  display: block;
  content: "";
  top: 40px;
  background: url(../images/li-fifth-bg.png) left center no-repeat;
  width: 178px;
  height: 12px;
}
.key-features figure figcaption ul li:last-child {
  right: 0;
  bottom: 28px;
}
.key-features figure figcaption ul li:last-child:before {
  position: absolute;
  left: -80px;
  display: block;
  content: "";
  top: 45px;
  background: url(../images/li-six-bg.png) left center no-repeat;
  width: 102px;
  height: 12px;
}
@media screen and (max-width: 1024px) {
  .key-features figure figcaption ul li {
    position: relative;
    width: 32%;
    margin-bottom: 25px;
    left: unset !important;
    bottom: unset !important;
    top: unset !important;
    right: unset !important;
  }
  .key-features figure figcaption ul li::before {
    display: none !important;
  }
  .key-features figure figcaption ul li h3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 576px) {
  .key-features figure figcaption ul li h3 br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .key-features figure figcaption ul li {
    width: 48%;
  }
}
@media screen and (max-width: 1024px) {
  .key-features figure figcaption ul {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .key-features figure figcaption {
    position: relative;
  }
}
@media screen and (max-width: 1024px) {
  .key-features figure {
    padding-top: 0;
    width: 100%;
  }
}

@media (max-width: 991px) {
  .desktop-tabs {
    display: none !important;
  }
}
@media (max-width: 992px) {
  .mobile-accordion {
    display: block !important;
  }
}
.page-template-template-landing-page .what-we-offer {
  padding-top: 50px;
}/*# sourceMappingURL=main.css.map */