/*!*************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/main.scss ***!
  \*************************************************************************************************************/
:root {
  /**
    @font family declaration
    */
  --tp-ff-body: 'Open Sans', sans-serif;
  --tp-ff-heading: 'Open Sans', sans-serif;
  --tp-ff-p: 'Open Sans', sans-serif;
  --tp-ff-fontawesome: "Font Awesome 6 Pro";
  /**
    @font Size declaration
    */
  --tp-fz-body: 15px;
  --tp-fz-p: 16px;
  --tp-fz-a: 14px;
  --tp-fz-h1: 50px;
  --tp-fz-h2: 40px;
  --tp-fz-h3: 24px;
  --tp-fz-h4: 20px;
  --tp-fz-h5: 18px;
  --tp-fz-h6: 35px;
  /**
     @font Weight declaration
    */
  --tp-fw-normal: normal;
  --tp-fw-elight: 200;
  --tp-fw-light: 300;
  --tp-fw-regular: 400;
  --tp-fw-medium: 500;
  --tp-fw-sbold: 600;
  --tp-fw-bold: 700;
  --tp-fw-ebold: 800;
  --tp-fw-black: 900;
  /**
  
  
    @color declaration
    */
  --tp-common-white: #ffffff;
  --tp-common-black: #000;
  --tp-heading-primary: #484848;
  /* --tp-heading-spanred: #BE0000; */
  --tp-heading-spanred: #FF9900;
  --tp-heading-orange: #FF9900;
  --tp-grey-1: #727070;
  --tp-text-body: #000;
  --tp-text-1: #A9B7D1;
  --tp-text-2: #8A879F;
  --tp-text-3: #e9f9f7;
  --tp-theme-primary: #171151;
  --tp-theme-secondary: #161616;
  --tp-theme-blue: #00D1FF;
  --tp-theme-pink: #FF3D00;
  --tp-theme-yellow: #FFE500;
  --tp-border-primary: #ECEEF3;
  --tp-border-secondary: #D1D6E0;
  --tp-icon-blue: #0E63FF;
  --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: 15px;
  font-weight: 400;
  color: var(--tp-text-body);
  line-height: 26px;
  overflow-x: hidden !important;
}

.home .header {
  position: relative;
  background: #161515;
}

.header {
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 33;
  width: 100%;
  padding-bottom: 11px;
}

.header.is-sticky {
  position: fixed;
  background: #000;
  animation: slideDown 0.35s ease-out;
  /* padding-bottom: 11px; */
}

.header .header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==============================
================================== */

@media (max-width: 767px) {
  .header .header-row .logo {
    min-width: 120px;
  }

  .header .header-row .logo img {
    max-width: 70%;
  }
}

.header .header-row .menu {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  position: relative;
  padding: 0px 10px;
}

.header .header-row .menu ul.main-menu {
  padding: 0;
  margin: 0;
}

.header .header-row .menu ul.main-menu>li {
  display: inline-block;
  position: relative;
  padding: 0.7rem 1rem;
}

@media (max-width: 1200px) {
  .header .header-row .menu ul.main-menu>li {
    padding: 0.4rem 0.3rem;
  }
}

.header .header-row .menu ul.main-menu>li>a {
  color: var(--tp-common-white);
  display: block;
  font-size: var(--tp-fz-p);
  font-family: var(--tp-ff-body);
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
}

.header .header-row .menu ul.main-menu>li>a i {
  font-size: 16px;
}

.header.is-sticky .header-row .menu ul.main-menu>li>a {
  color: var(--tp-common-white);
}

.header .header-row .menu ul.main-menu>li>a:hover,
.header .header-row .menu ul.main-menu>li.active>a {
  color: #FF9900;
}

@media (max-width: 1200px) {
  .header .header-row .menu ul.main-menu>li>a {
    font-size: calc(var(--tp-fz-p) - 2px);
    font-weight: 600;
  }
}

.header .header-row .menu ul.main-menu li.submenu {
  position: static;
}
.header .header-row .menu ul.main-menu li.submenu.hire{
  position: relative !important;
}
.header .header-row .menu ul.main-menu li.submenu>a {
  padding-right: 10px;
  position: relative;
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer {
  position: absolute;
  width: 100%;
  left: 0;
  background: #161515;
  top: 75px;
  display: none;
  /* height: 418px; */
  height: 350px;
  padding: 20px 0px 0 0px;
}
.header .header-row .menu ul.main-menu li.submenu.hire .submenu-outer{
  width: 250px;
  height: auto;
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx {
  float: left;
  width: 25%;
  padding: 0px 15px;
  position: relative;
  list-style-type: none;
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx h3 {
  font-size: var(--tp-fz-p);
  font-weight: var(--tp-fw-bold);
  margin-bottom: 15px;
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx ul {
  padding: 0;
  list-style-type: none;
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx ul li {
  padding: 0;
  display: block;
  list-style-type: none;
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx ul li a {
  color: var(--tp-common-black);
  font-size: calc(var(--tp-fz-p) - 2px);
  text-transform: capitalize;
  text-decoration: none;
}

.header .header-row .menu ul.main-menu li.submenu>.submenu-outer>.sub-bx>ul>li:hover>a {
  color: #FF9900;
  /* text-decoration: underline; */
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx ul li.active>a {
  color: var(--tp-heading-spanred);
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx ul li .submenu-sub-inner li.active>a {
  color: var(--tp-heading-spanred);
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx ul li .submenu-sub-inner li:hover>a {
  color: var(--tp-heading-spanred);
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx ul li::marker {
  display: none;
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx::after {
  position: absolute;
  right: 15px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #8C8C8C;
  content: "";
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx:last-child::after {
  display: none;
}

@media (max-width: 1200px) {
  .header .header-row .menu ul.main-menu {
    margin: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .header-row .menu {
    justify-content: right;
    position: static;
    padding: 0px 15px;
  }
}

@media (max-width: 767px) {
  .header .header-row .menu {
    justify-content: right;
    position: static;
    padding: 0px 15px;
  }
}

.header .header-row .phone-no button {
  background: linear-gradient(270deg, #FFD600 0%, #FF9900 100%);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  font-size: var(--tp-fz-p);
  font-weight: 600;
  padding: 0.938rem 1.375rem;
  line-height: 100%;
  display: inline-block;
  color: var(--tp-common-black);
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 1s ease;
  /* min-width: 188px; */
  border: none;
  white-space: nowrap;
}

.header .header-row .phone-no button:hover {
  background: linear-gradient(270deg, #FF9900 0%, #FFD600 100%);
}

@media (max-width: 1200px) {
  .header .header-row .phone-no button {
    font-size: calc(var(--tp-fz-p) - 2px);
    min-width: 156px;
  }
}

@media (max-width: 767px) {
  .header .header-row .phone-no button {
    padding: 0.938rem 1rem;
    min-width: 145px;
  }
}

@media screen and (max-width: 576px) {
  .header .header-row .phone-no button {
    padding: 0.938rem 0.3rem;
    min-width: 128px;
    font-size: calc(var(--tp-fz-p) - 3px);
  }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .header-row {
    position: relative;
  }
}

@media (max-width: 767px) {
  .header {
    padding-top: 0.875rem;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/*!***************!*\
      MAin Menu
\*!***************!*/

.main-menu {
  width: 100%;
}

.header .header-row .menu ul.main-menu li.submenu {
  padding: 23px 10px 27px;
}

@media screen and (max-width:1400px) {
  .header .header-row .menu ul.main-menu>li {
    padding: 23px 7px 27px;
  }

  .header .header-row .menu ul.main-menu li.submenu {
    padding: 23px 7px 27px;
  }
}

.header .header-row .menu ul.main-menu li.submenu:hover .submenu-outer {
  display: block;
  border: 1px solid #FF99004f;
}

.header .header-row {
  position: relative;
}

.header .header-row .menu {
  position: initial;
  margin-bottom: 5px;
}

.header.is-sticky .header-row .menu {
  margin-bottom: 0;
}


.header .header-row .menu ul.main-menu {
  text-align: center;
  /* position: relative; */
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner {
  text-align: left;
  position: relative;
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner.single{
  display: flex;
  flex-wrap: wrap;
}
.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner.single .menu-item{
  width: 25%;
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner li {
  margin-bottom: 15px;
}
.header .header-row .menu ul.main-menu li.submenu.hire .submenu-outer .sub-bx .submenu-inner li {
  margin-bottom: 10px;
}
.header .header-row .menu ul.main-menu li.submenu.hire .submenu-outer .sub-bx .submenu-inner li {
 border-bottom: 1px solid #FF9900;
 padding-bottom: 7px;
}
.header .header-row .menu ul.main-menu li.submenu.hire .submenu-outer .sub-bx .submenu-inner li:last-child{
  border-bottom: none;
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner li a {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0px;
  color: #fff;
  text-transform: inherit;
  padding: 0;
}
@media screen and (max-width: 1400px) {
  .header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner li a{font-size: 14px;}
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner li .submenu-sub-inner {
  position: absolute;
  display: none;
  width: 83%;
  right: 0;
  padding-left: 25px;
  top: 0px;
}


.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner li .submenu-sub-inner::before {
  content: '';
  background: #FF9900;
  height: 300px;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner li .submenu-sub-inner li {
  padding-right: 9px;
  padding-bottom: 6px;
  width: 33.33%;
  float: left;
  margin-bottom: 6px;
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx ul li ul li a {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000;
  padding: 0;
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner li .submenu-sub-inner li ul li {
  width: 100%;
  margin-bottom: 0 !important;
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner li .submenu-sub-inner li a:hover {
  color: #FF9900;
  /* text-decoration: underline; */
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner li .submenu-sub-inner li a {
  font-size: 16px;
  padding: 3px 0px;
  display: block;
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner li:hover .submenu-sub-inner {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 1400px) {
  .header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner li .submenu-sub-inner li a {
  font-size: 14px;
}
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx {
  width: 100%;
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner li .submenu-sub-inner li ul {
  display: block;
  margin-top: 15px;
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner li .submenu-sub-inner li ul li a {
  font-size: 14px;
  border: none;
  color: #fff;
  display: block;
  font-weight: 500;
  text-decoration: none;
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner li .submenu-sub-inner li ul li.active a {
  color: #FF9900;
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner li .submenu-sub-inner li ul li:hover a {
  text-decoration: underline;
  color: #FF9900;
}

.submenu-sub-inner li {
  margin-bottom: 10px !important;
}

.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner li.active .submenu-sub-inner {
  display: block;
  flex-wrap: wrap;
}

.respons-btn span {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 32px;
  height: 4px;
  z-index: 1;
  background: #fff;
  /* margin-bottom: 5px; */
  border-radius: 5px;
  -webkit-transition: width .5s;
  transition: width .5s;
}

.respons-btn a:hover span {
  background: #FF9900;
}

.respons-btn a:hover span:nth-child(2) {
  width: 50%;
}

.respons-btn {
  width: 35px;
  /* height: 35px; */
  position: absolute;
  right: 0;
  display: none;
}

.header.is-sticky .header-row .logo {
  padding-bottom: 0px;
}

.header.is-sticky .header-row .phone-no {
  padding-bottom: 0px;
}

@media (max-width: 1200px) {
  .header .header-row .menu ul.main-menu>li {

    padding: 23px 7px 27px;
  }

  .header .header-row .menu ul.main-menu li.submenu {
    padding: 23px 7px 27px;
  }
}

@media (max-width: 991px) {
  .header .header-row .logo {
    padding-bottom: 0px;
  }

  .header .header-row .phone-no {
    padding-bottom: 0px;
    padding-right: 60px;
  }
}

@media (max-width: 992px) {
  .respons-btn {
    display: block;
    right: 0px;
    /* top: 9px; */
  }

  .header .header-row .menu {
    display: none;
  }
  .header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner{max-height: 200px; overflow: auto;}
  .header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner.single{
  display: block;
}
.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner.single .menu-item{
  width: 100%;
}
.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner li .submenu-sub-inner li{padding: 0; margin-bottom: 0;}
}

@media (min-width: 992px) {
  .header .header-row .navbar-collapse {
    display: block;
    align-items: center;
    width: 100%;
    justify-content: center;
  }

  .header .header-row .navbar-toggler {
    display: none;
  }

  .header .header-row .navbar-collapse li {
    display: block;
  }

}

@media(max-width:767px) {
  .header .header-row .humburger-ico {
    top: 6px;
    right: 16px;
  }

  .header .header-row .phone-no {
    padding-right: 60px;
  }
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  display: block;
}

.mobile-menu-close {
  background: #FFD600;
  height: 30px;
  width: 30px;
  position: relative;
  top: -20px;
  border: 2px solid #FF9900;
  outline: none;
  color: #000;
  border-radius: 50%;
  font-weight: 700;
  display: none;
}
.header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner .menu-icon {
  display: none;
  float: right;
  padding-right: 10px;
}

/* Mobile */
@media (max-width: 992px) {

  .menu-toggle {
    display: flex;
    cursor: pointer;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #111;
    transition: 0.4s ease;
    padding: 80px 20px;
    overflow-y: auto;
  }

  .menu.active {
    right: 0;
  }

  .main-menu {
    flex-direction: column;
  }

  .main-menu li {
    margin-bottom: 15px;
  }

  .main-menu li a {
    color: #fff;
  }

  /* Submenu mobile */
  .submenu-outer,
  .submenu-sub-inner {
    display: none;
    padding-left: 15px;
  }

  .submenu.open>.submenu-outer {
    display: block;
  }

  .menu-item.open>.submenu-sub-inner {
    display: block;
  }

  .mobile-menu-close {
    display: block;
  }

  .header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner .menu-icon {
    display: inline-block;
  }

  /* Main mobile menu container */
  .header .header-row .menu {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #111;
    padding: 50px 20px 0px;
    overflow-y: auto;
    transition: 0.4s ease;
    z-index: 9999;
  }

  .header .header-row .menu.active {
    right: 0;
  }

  /* Main UL */
  .header .header-row .menu ul.main-menu {
    display: block;
    text-align: left;
  }

  .header .header-row .menu ul.main-menu>li {
    display: block;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header .header-row .menu ul.main-menu li.submenu {
    padding: 0;
  }

  .header .header-row .menu ul.main-menu>li>a {
    color: #fff;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner li a {
    color: #fff;
  }

  .header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner li .submenu-sub-inner li ul li {
    color: #fff;
  }

  .header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner li .submenu-sub-inner::before {
    display: none;
  }

  .header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner li .submenu-sub-inner li ul li a {
    color: #fff;
  }

  /* FIRST LEVEL SUBMENU */
  .submenu-outer {
    position: static !important;
    display: none !important;
    height: auto !important;
    padding: 10px 0 0 10px !important;
    background: transparent !important;
  }

  .submenu.open>.submenu-outer {
    display: block !important;
  }

  .submenu-outer .sub-bx {
    width: 100% !important;
    float: none !important;
    padding: 0 !important;
  }

  .submenu-inner li {
    margin-bottom: 8px;
  }

  .submenu-inner li a {
    color: #ccc;
    font-size: 15px;
    font-weight: 500;
  }

  /* SECOND LEVEL */
  .submenu-sub-inner {
    position: static !important;
    display: none !important;
    width: 100% !important;
    padding-left: 10px !important;
    margin-top: 5px;
  }

  .menu-item.open>.submenu-sub-inner {
    display: block !important;
  }

  .submenu-sub-inner li {
    width: 100% !important;
    float: none !important;
    /* padding: 6px 0 !important; */
  }

  .submenu-sub-inner li a {
    font-size: 14px;
    color: #aaa;
  }

  /* THIRD LEVEL (nested ul inside submenu-sub-inner) */
  .submenu-sub-inner li ul {
    padding-left: 15px;
    margin-top: 5px;
  }

  .submenu-sub-inner li ul li {
    padding: 4px 0;
  }

  .submenu-sub-inner li ul li a {
    font-size: 13px;
    color: #888;
  }

  /* Remove desktop divider lines */
  .sub-bx::after {
    display: none !important;
  }

  .header .header-row .menu ul.main-menu li.submenu .submenu-outer .sub-bx .submenu-inner li {
    margin-bottom: 10px;
  }

}


/* =====FOOTER===== */

.footer-outer {
  position: relative;
  /* background: linear-gradient(100deg, #000 1.36%, #001036 102.91%); */
  background: #000;
  float: left;
  width: 100%;
}

.footer-outer .our-office {
  margin-top: -375px;
  border-radius: 10px;
  /* background: linear-gradient(-3deg, #4E004A 1.12%, #010042 100%); */
  padding: 40px 80px;
  background-image: url(../images/global-Presence-bg.webp);
  background-position: 0px -46px;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-outer .our-office h3 {
  font-size: var(--tp-fz-h4);
  font-weight: var(--tp-fw-regular);
  text-transform: uppercase;
  color: var(--tp-common-white);
  padding-bottom: 15px;
  text-align: center;
}

.footer-outer .our-office h2 {
  font-size: var(--tp-fz-h2);
  font-weight: var(--tp-fw-bold);
  color: var(--tp-common-white);
  padding-bottom: 40px;
  text-align: center;
  text-transform: capitalize;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-outer .our-office h2 {
    font-size: var(--tp-fz-h6);
  }

}

@media (max-width: 991px) {
  .footer-outer .copy-right p {
    width: 100%;
  }

  .footer-outer .copy-right {
    flex-wrap: wrap;
  }

  .footer-outer .more-info ul {
    float: left;
  }
}

@media (max-width: 767px) {
  .footer-outer .our-office h2 {
    font-size: 28px;
    padding-bottom: 20px;
  }
}

@media (max-width: 567px) {
  .footer-outer .more-info ul {
    flex-wrap: wrap;
  }

  .footer-outer .more-info ul li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .footer-outer .more-info {
    margin-bottom: 0px !important;
    ;
  }

  .footer-outer .more-info ul li:last-child {
    margin-bottom: 0px
  }
}

.footer-outer .our-office .global-oofice {
  display: flex;
  margin-left: -35px;
  margin-right: -35px;
}

.footer-outer .our-office .global-oofice .office-bx {
  width: 25%;
  padding: 0px 35px;
  border-right: 1px solid #F4F4F4;
}

.footer-outer .our-office .global-oofice .office-bx h3 {
  text-align: left;
  padding-bottom: 20px;
}

.footer-outer .our-office .global-oofice .office-bx ul {
  padding: 0px;
  margin: 0;
}

.footer-outer .our-office .global-oofice .office-bx ul li {
  display: flex;
  align-items: flex-start;
  padding-bottom: 18px;
}

.footer-outer .our-office .global-oofice .office-bx ul li:first-child {
  min-height: 100px;
}

.footer-outer .our-office .global-oofice .office-bx ul li .office-ico {
  min-width: 20px;
  margin-right: 5px;
}

.footer-outer .our-office .global-oofice .office-bx ul li .office-text {
  font-size: var(--tp-fz-h5);
  font-weight: var(--tp-fw-regular);
  color: var(--tp-common-white);
}

.footer-outer .our-office .global-oofice .office-bx ul li .office-text a {
  color: var(--tp-common-white);
  text-decoration: none;
}

.footer-outer .our-office .global-oofice .office-bx ul li .office-text a:hover {
  color: #FF9900;
}

.footer-outer .our-office .global-oofice .office-bx ul li:last-child {
  padding-bottom: 13px;
}

.footer-outer .our-office .global-oofice .office-bx:last-child {
  border: none;
}

@media (max-width: 1200px) {
  .footer-outer .our-office .global-oofice .office-bx {
    padding: 0px 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-outer .our-office .global-oofice .office-bx {
    width: 50%;
    margin-bottom: 50px;
    padding-left: 20px;
  }

  .footer-outer .our-office .global-oofice .office-bx:nth-child(2) {
    border: none;
  }
}

@media (max-width: 767px) {
  .footer-outer .our-office .global-oofice .office-bx {
    width: 100%;
    margin-bottom: 50px;
    border: none;
    border-bottom: 1px solid #F4F4F4;
    padding: 25px 0px;
    margin-bottom: 10px;
  }
}

@media (max-width: 1200px) {
  .footer-outer .our-office .global-oofice {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-outer .our-office .global-oofice {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .footer-outer .our-office .global-oofice {
    flex-wrap: wrap;
  }
}

@media (max-width: 1200px) {
  .footer-outer .our-office {
    padding: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-outer .our-office {
    margin-top: 0;
    padding: 50px 30px 0px;
    background: none;
  }

  .faq-outer-main.faq-empty {
    display: none;
  }
}

@media (max-width: 767px) {
  .footer-outer .our-office {
    margin-top: 0;
    padding: 50px 30px 0px;
    background: none;
  }
}


/* <style> */
.footer-outer .social-media ul {
  display: flex !important;
}

.footer-outer .social-media ul li {
  width: auto !important;
}

.footer-outer .footer-main .footer-bx ul {
  justify-content: end;
  display: flex;
}

.footer-outer .footer-main .footer-bx:first-child {
  width: 25%;
}

.footer-outer .footer-main .footer-bx ul li a i:hover {
  /* color: var(--tp-heading-spanred); */
  color: #FF9900;
}

@media (max-width: 991px) {
  .footer-outer .our-office .global-oofice .office-bx ul li:first-child {
    min-height: unset;
  }
}

.footer-outer .more-info ul a:hover {
  /* color: var(--tp-heading-spanred); */
  color: #FF9900;
}

.footer-outer .footer-main .footer-bx ul li {
  width: auto;
  margin-right: 15px;
}



.footer-outer .footer-main {
  padding: 50px 0px 25px;
  display: flex;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  justify-content: space-between;
}

.footer-outer .copy-right {
  padding: 21px 0px;
  border-top: 1px solid #F4F4F4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-outer .copy-right p {
  color: #fff;
  font-size: 14px;
  padding-top: 5px;
  margin-bottom: 0;
}

.footer-outer .social-share ul {
  float: left;
  display: block;
  width: 100%;
}

.footer-outer .social-share ul li {
  display: inline-block;
  margin-right: 25px;
  color: #fff;
  font-size: 20px;
}

.footer-outer .social-share ul li:hover a i {
  color: var(--tp-heading-spanred);

}

.footer-outer .social-share ul li:last-child {
  margin-right: 0;
}

.footer-outer .footer-main .footer-bx ul li:last-child {
  margin-right: 0;
}

.footer-outer .social-share ul li a {
  color: #fff;
  outline: none !important;
  text-decoration: none;
  border: none !important;
}

.footer-outer .social-share {
  margin-top: 30px;
}

.footer-outer .social-share ul {
  justify-content: start !important;
  align-items: center;
  padding-left: 30px;
}

.footer-outer .social-share ul li {
  width: auto;
}

.footer-outer .social-share ul li img {
  width: 18px;
  margin-top: -3px;
  outline: none !important;
  border: none !important;
}

.footer-outer .social-share ul li span {
  color: #fff;
}

.footer-outer .social-share ul li label {
  display: block;
  padding-top: 5px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-transform: inherit;
}

.footer-outer .more-info {
  margin-bottom: 0rem;
}

.footer-outer .more-info ul {
  width: auto;
  float: right;
}

.footer-outer .more-info ul li {
  margin-right: 40px;
}

.footer-outer .more-info ul li img {
  width: 18px;
  margin-right: 12px;
  vertical-align: sub;
}

.footer-outer .more-info ul {
  margin: 0px;
  list-style: none;
  padding: 0px;
  display: flex;
}

.footer-outer .more-info ul a {
  text-decoration: none;
  color: #fff;
}

.footer-outer .more-info ul li:last-child {
  margin-right: 0;
}

.footer-outer .copy-right .social-share ul {
  padding-left: 0;
}

.scroll {
  width: 20px;
  height: 330px;
  overflow: auto;
  float: left;
  margin: 0 10px;
}

.scroll4::-webkit-scrollbar {
  width: 10px;
}

.scroll4::-webkit-scrollbar-thumb {
  background: linear-gradient(215deg, #420049 0.01%, #001272 96.4%);
  border-radius: 20px;
}

.scroll4::-webkit-scrollbar-track {
  background: #ddd;
  border-radius: 20px;
}

/* </style> */
/* .footer-outer .footer-main {
    padding: 86px 0px;
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
  } */
.footer-outer .footer-main .footer-bx {
  float: left;
  width: 75%;
  padding: 0px 15px;
}

.footer-outer .footer-main .footer-bx h3 {
  font-size: var(--tp-fz-h4);
  font-weight: var(--tp-fw-regular);
  text-transform: uppercase;
  color: var(--tp-common-white);
  padding-bottom: 15px;
}

.footer-outer .footer-main .footer-bx .footer-logo {
  padding-bottom: 35px;
}

.footer-outer .footer-main .footer-bx p {
  font-size: var(--tp-fz-h4);
  font-weight: var(--tp-fw-regular);
  color: var(--tp-common-white);
}

.footer-outer .footer-main .footer-bx ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* .footer-outer .footer-main .footer-bx ul li {
    width: 100%;
  } */
.footer-outer .footer-main .footer-bx ul li a {
  font-size: var(--tp-fz-p);
  font-weight: var(--tp-fw-light);
  line-height: 172.678%;
  color: var(--tp-common-white);
  text-decoration: none;
  -webkit-transition: all 1s ease-out 0s;
  -moz-transition: all 1s ease-out 0s;
  -ms-transition: all 1s ease-out 0s;
  -o-transition: all 1s ease-out 0s;
  transition: all 1s ease-out 0s;
}

.footer-outer .footer-main .footer-bx ul li a i {
  color: #fff;
  font-size: 25px;
  margin-right: 10px;
}

.footer-outer .footer-main .footer-bx ul li a:hover {
  /* color: var(--tp-heading-spanred); */
  color: #FF9900;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .footer-outer .footer-main .footer-bx {
    width: 100%;
  }

  .footer-outer .footer-main .footer-bx:last-child {
    width: 25%;
  }

  .footer-outer .footer-main .footer-bx:first-child {
    padding-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .footer-outer .footer-main .footer-bx {
    width: 100%;
  }

  .footer-outer .footer-main .footer-bx:last-child {
    width: 100%;
  }

  .footer-outer .footer-main .footer-bx:first-child {
    padding-bottom: 20px;
  }
}

.footer-outer .footer-main .footer-bx-dobule {
  width: 50%;
  padding: 0px 15px;
}

.footer-outer .footer-main .footer-bx-dobule ul li {
  width: 50%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-outer .footer-main .footer-bx-dobule {
    width: 75%;
  }
}

@media (max-width: 767px) {
  .footer-outer .footer-main .footer-bx-dobule {
    width: 100%;
    padding-bottom: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-outer .footer-main {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .footer-outer .footer-main {
    flex-wrap: wrap;
    padding-top: 20px;
  }
}


.copy-menu {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.copy-menu li {
  width: auto;
  margin-right: 15px;
}

.copy-menu li a {
  font-size: var(--tp-fz-p);
  font-weight: var(--tp-fw-light);
  line-height: 172.678%;
  color: var(--tp-common-white);
  text-decoration: none;
  -webkit-transition: all 1s ease-out 0s;
  -moz-transition: all 1s ease-out 0s;
  -ms-transition: all 1s ease-out 0s;
  -o-transition: all 1s ease-out 0s;
  transition: all 1s ease-out 0s;
}

.copy-menu li:hover a {
  /* color: var(--tp-heading-spanred); */
  color: #FF9900;
}

@media (max-width: 767px) {
  .copy-menu {
    margin: 8px 0px;
    flex-wrap: wrap;
  }

  .footer-outer .our-office .global-oofice .office-bx ul li .office-text {
    font-size: var(--tp-fz-h5) - 5px;
  }

  .copy-menu li a {
    font-size: 15px;
  }

}