/*!
Theme Name: noosh
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: noosh
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

noosh is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/* 
font-family: 'Poppins', sans-serif;  400/normal 500/medium 700/bold
font-family: 'Nunito', sans-serif;  800/extraBold
*/

:root {
  --baseSize: 18px;
  --headingBaseSize: 21px;
  --baseFont: "Poppins", sans-serif;
  --headlineFont: "Nunito", sans-serif;
  --black: #000000;
  --white: #ffffff;
  --maroon: #7a2048;
  --maroonLight: #8a307f;
  --blue: #408ec6;
  --blueLight: #9fd2f7;
  --blueDark: #1e2761;
  --gray: #cccccc;
  --base: #58666c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:after,
:before {
  pointer-events: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--baseFont);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: normal;
  font-style: normal;
  color: var(--base);
  font-size: var(--baseSize);
  font-weight: 400;
  line-height: 1.4;
  background: var(--white);
}
body.disable {
  height: 100vh;
  overflow: hidden;
}
b,
strong {
  font-weight: 700;
}
p {
  margin: 0 0 22px 0;
}
p:last-child {
  margin-bottom: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
h6 {
  margin: 0 0 25px 0;
  padding: 0;
  color: inherit;
  font-weight: 800;
  font-family: var(--headlineFont);
}
h1:last-child,
.h1:last-child,
h2:last-child,
.h2:last-child,
h3:last-child,
.h3:last-child,
h4:last-child,
.h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}
h1,
.h1 {
  font-size: 65px;
  line-height: 1;
}
h2,
.h2 {
  font-size: 45px;
  line-height: 1.2;
}
h3,
.h3 {
  font-size: 35px;
  line-height: 1;
}
h4,
.h4 {
  font-size: var(--headingBaseSize);
  line-height: 1.1;
}
h5 {
  font-size: 18px;
  line-height: 1.2;
}
ul {
  padding-left: 0;
}
a {
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: var(--blueLight);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
a:hover {
  color: var(--maroonLight);
}
img {
  max-width: 100%;
}
input[type="text"],
input[type="number"],
input[type="tel"],
input[type="password"],
input[type="email"],
select,
input[type="submit"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--white);
  border: 1px solid var(--gray);
  color: var(--black);
  box-shadow: none;
  font-family: var(--baseFont);
  font-size: var(--baseSize);
  font-weight: 400;
  outline: none !important;
  padding: 15px 30px;
  width: 100%;
  height: 60px;
  border-radius: 30px;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
textarea {
  background-color: var(--white);
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  border: 1px solid var(--gray);
  box-shadow: none;
  padding: 15px 30px;
  width: 100%;
  height: 145px;
  color: var(--black);
  font-family: var(--baseFont);
  font-size: var(--baseSize);
  outline: none !important;
  resize: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px var(--white) inset !important;
}
input:-webkit-autofill {
  -webkit-text-fill-color: var(--gray) !important;
}
select {
  padding: 0 30px;
  background: url(images/sort-down.svg) no-repeat calc(100% - 16px) center
    transparent;
  background-size: 18px;
  padding-right: 50px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
input[type="number"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  border: 1px solid var(--black);
}
input[type="submit"] {
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  font-weight: 500;
}
input[type="submit"]:hover {
  background: var(--blueDark);
}
::-webkit-input-placeholder {
  color: var(--base);
}
:-ms-input-placeholder {
  color: var(--base);
}
::-moz-placeholder {
  color: var(--base);
}
:-moz-placeholder {
  color: var(--base);
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
  clear: both;
}
/* custom checkbox */

.form_input_check label {
  position: relative;
  margin: 0;
  padding-left: 40px;
  display: inline-block;
}
.form_input_check label span {
  margin: 0;
  padding: 0;
}
.form_input_check label input[type="checkbox"] {
  visibility: hidden;
  display: none;
}
.form_input_check label input[type="checkbox"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  border: 1px solid #3e3e42;
  background: transparent;
}
.form_input_check label input[type="checkbox"] + span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/tick.svg) no-repeat center center;
  background-size: 15px;
}
.form_input_check label input[type="checkbox"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.form_input_check label input[type="checkbox"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio */
.form_input_radio + .form_input_radio {
  margin-top: 13px;
}
.form_input_radio label {
  position: relative;
  margin: 0;
  padding-left: 30px;
  display: inline-block;
  cursor: pointer;
}
.form_input_radio label span {
  margin: 0;
  padding: 0;
}
.form_input_radio label input[type="radio"] {
  visibility: hidden;
  display: none;
}
.form_input_radio label input[type="radio"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid var(--gray);
  border-radius: 100%;
  background: var(--white);
}
.form_input_radio label input[type="radio"] + span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--gray);
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.form_input_radio label input[type="radio"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.form_input_radio label input[type="radio"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio end */

/*number spinner--*/
.numberstyle-qty {
  position: relative;
  background-color: var(--white);
  overflow: hidden;
  display: inline-flex;
  box-shadow: 0px 14px 24px 0px #fceeeb;
  border: 1px solid var(--blueDark);
  border-radius: 50px;
}
.numberstyle-qty input,
.numberstyle-qty .qty-btn {
  position: relative;
  display: block;
  float: left;
  height: 52px;
  padding: 0;
  margin: 0;
  border: 0px;
  text-align: center;
  line-height: 52px;
  outline: 0;
  box-shadow: none;
  color: var(--base);
}
.numberstyle-qty .qty-btn {
  width: 50px;
  font-size: var(--baseSize);
  cursor: pointer;
  z-index: 2;
  user-select: none;
  transition: all 250ms ease;
  background-color: transparent;
}
.numberstyle-qty .qty-btn.disabled {
  cursor: default;
  color: var(--base);
}
.numberstyle-qty .qty-btn:hover {
  background-color: var(--blueDark);
  color: var(--white);
}
.numberstyle-qty input {
  width: 60px;
  border-left: 0;
  border-right: 0;
  color: var(--base);
  font-size: var(--headingBaseSize);
  z-index: 1;
}
.numberstyle-qty input:focus {
  outline: 0;
  box-shadow: 0px;
}
.numberstyle-qty input[type="number"]::-webkit-inner-spin-button,
.numberstyle-qty input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.numberstyle-qty input[type="number"] {
  -moz-appearance: textfield;
}
/* back to top btn*/
#scroll {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  width: 55px;
  height: 55px;
  background-color: var(--maroonLight);
  display: none;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  line-height: 68px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  z-index: 9;
}

#scroll:hover {
  background: var(--blueLight);
}

#scroll i {
  color: #fff;
  font-size: 36px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#scroll:hover i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
}

/* navbar*/
.navbar-brand {
  padding: 0;
  margin: 0;
  width: 80px;
  display: inline-block;
}
.navbar-brand svg,
.navbar-brand img {
  width: 100%;
}
.navbar {
  background: none;
  margin: 0;
  padding: 0;
  min-height: inherit;
  height: inherit;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  opacity: 0;
  font-family: var(--baseFont);
}
.navbar-nav li {
  position: relative;
  list-style: none;
}

.navbar-nav > li {
  margin: 0 15px;
  position: relative;
}

.navbar-nav > li:last-child {
  margin-right: 0;
}

.navbar-nav > li:first-child {
  margin-left: 0;
}

.navbar-nav > li > a {
  color: var(--white);
  font-size: 17px;
  line-height: 1.2;
  position: relative;
  font-weight: normal;
  font-weight: 400;
  padding: 4px 0;
}

.navbar-nav > li > a:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: left center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar-nav > li.current-menu-item > a,
.navbar-nav > li > a:hover,
.navbar-nav > li.menu-item-has-children:hover > a {
  color: var(--white);
}

.navbar-nav > li.current-menu-item > a:after,
.navbar-nav > li > a:hover:after,
.navbar-nav > li.menu-item-has-children:hover > a:after {
  transform: translateX(-50%) scaleX(1);
}

/* navbar submenu*/
.sub-menu {
  background: var(--white);
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  width: 240px;
  padding: 0;
}
.sub-menu > li > a {
  color: var(--base);
  display: block;
  width: 100%;
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}
.sub-menu > li {
  width: 100%;
  display: block;
}
.sub-menu > li > a:hover,
.sub-menu > li.menu-item-has-children:hover > a,
.sub-menu > li.current-menu-item > a {
  background: var(--blueDark);
  color: var(--white);
}
.navbar-nav > li:last-child > .sub-menu {
  right: 0;
  left: inherit;
  padding: 0;
}
/* 2nd level submenu */
.navbar-nav > li > .sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
}
.navbar-collapse .navbar-toggler {
  display: none;
}
.main-head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: 0.5s transform ease;
  transform: translateY(-110%);
  pointer-events: none;
  padding: 15px 0;
  /* mix-blend-mode: difference; */
  background-color: var(--black);
  box-shadow: 0 0 1px 0 var(--white);
}
.main-head.active,
.main-head.show {
  transform: translateY(0);
  pointer-events: all;
}
.main-head.white .navbar-brand {
  filter: brightness(0);
}
.main-head.white {
  background-color: var(--white);
  box-shadow: 0 0 1px 0 var(--black);
}
.main-head.blue {
  background-color: var(--blueDark);
  box-shadow: 0 0 1px 0 var(--white);
}
.main-head.white .burger {
  color: var(--black);
}
/*--hamburger animate--*/
.navbar-toggler {
  height: 50px;
  width: 50px;
  position: relative;
  margin-left: 15px;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  color: var(--white);
  padding: 0;
  z-index: 150;
  order: 3;
}
.navbar-toggler.active {
  color: var(--white);
}
.navbar-toggler svg {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.navbar-toggler .x {
  transform: scale(0);
  transition: transform 800ms;
}
.navbar-toggler .line {
  fill: none;
  stroke: currentColor;
  stroke-width: 6px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-origin: 50%;
  transition: stroke-dasharray 800ms 400ms, stroke-dashoffset 800ms 400ms,
    transform 800ms 400ms;
}
.navbar-toggler .x .line {
  stroke-width: 5.5px;
}
.navbar-toggler .line2 {
  stroke-dasharray: 40 200;
  stroke-dashoffset: 0px;
}
.navbar-toggler .line3 {
  stroke-dasharray: 40 179;
  stroke-dashoffset: 0px;
}
.navbar-toggler.active .line {
  transition: stroke-dasharray 800ms, stroke-dashoffset 600ms, transform 800ms;
}
.navbar-toggler.active .line1 {
  transform: scale(0, 1);
  transition: transform 800ms 400ms;
}
.navbar-toggler.active .line2 {
  stroke-dasharray: 5px 200;
  stroke-dashoffset: -164px;
}
.navbar-toggler.active .line3 {
  stroke-dasharray: 5px 179;
  stroke-dashoffset: -142px;
}
.navbar-toggler.active .x {
  transform: scale(1);
  transition: transform 800ms 400ms;
}
/*--loader--*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(
    222deg,
    #0eb5ee 0%,
    #eea9f9 25%,
    #0eb5ee 50%,
    #eea9f9 75%,
    #0eb5ee 100%
  );
  background-size: 500% 500%;
  animation: gradient 15s ease infinite;
}
#loader > *,
#loader.hide {
  pointer-events: none;
}
#loader.hide {
  z-index: 999;
}
#loader img,
#loader svg {
  transition: none;
}
.loader_inner {
  width: 25vw;
  height: auto;
}
.loader_inner svg {
  width: 100%;
  height: auto;
  opacity: 0;
}

/*--end loader--*/
[data-split] {
  opacity: 0;
}
[data-split="text"] {
  overflow: hidden;
}
.cmn_gap {
  padding: 100px 0px;
}
.header {
  margin-bottom: 30px;
  font-size: var(--headingBaseSize);
}
.header.center {
  text-align: center;
}
.header h2 {
  margin-bottom: 10px;
  color: var(--black);
}
.header p small {
  font-size: var(--baseSize);
}
.banner {
  position: relative;
}
.banner_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.banner_bg video,
.banner_bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cmn_btn {
  background-color: var(--blue);
  font-size: var(--baseSize);
  line-height: 1.4;
  padding: 14px 20px;
  min-width: 150px;
  border-radius: 30px;
  color: var(--white);
  text-align: center;
  font-weight: 500;
  transform: 0.4s ease;
}
.cmn_btn:hover {
  background-color: var(--maroonLight);
  color: var(--white);
}
.lineBtn {
  line-height: 2;
  padding-bottom: 2px;
  position: relative;
  font-weight: 500;
}
.lineBtn:after,
.lineBtn:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid currentColor;
  z-index: 1;
}
.lineBtn:after {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.8s ease-out;
  z-index: 2;
}
.lineBtn:hover:after {
  transform: none;
}
/* ========= main style ========= */
.home_banner {
  height: 100vh;
}
.banner_content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home_banner .banner_content h1 {
  text-align: center;
  font-size: 10.75vw;
  font-family: var(--headlineFont);
  font-weight: 800;
  color: var(--white);
}
.home_banner .banner_content h1 .char {
  background: rgb(255, 255, 255);
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 60%,
    rgba(255, 255, 255, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.goto_nxt_sec {
  display: inline-block;
  width: 30px;
  height: 50px;
  border: 2px solid var(--white);
  border-radius: 21px;
  position: absolute;
  bottom: 5vh;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease;
}
.goto_nxt_sec.show {
  pointer-events: all;
  opacity: 1;
}
.goto_nxt_sec:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.goto_nxt_sec:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 20px;
  width: 3px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
}
.goto_nxt_sec:before {
  content: "";
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: 3s ease-in-out 1s infinite scrollmove;
}
@keyframes scrollmove {
  0%,
  80%,
  100% {
    transform: translate(-50%, -50%) translateY(-5px);
  }
  30% {
    transform: translate(-50%, -50%) translateY(5px);
  }
}
@-webkit-keyframes scrollmove {
  0%,
  80%,
  100% {
    -webkit-transform: translate(-50%, -50%) translateY(-5px);
  }
  30% {
    -webkit-transform: translate(-50%, -50%) translateY(5px);
  }
}
.sub_planet_group,
.main_planet {
  opacity: 0;
}
.architecture_item {
  padding: 15px;
}
.architecture_item_inner {
  text-align: center;
  background: var(--white);
  box-shadow: 0px 2px 15px 0px rgba(77, 137, 163, 0.25);
  padding: 35px 15px;
  font-size: var(--baseSize);
  height: 100%;
  transition: 0.5s ease;
}
.architecture_item_inner:hover {
  background-color: rgba(64, 142, 198, 0.25);
  box-shadow: 0px 0px 15px 0px rgba(77, 137, 163, 0.25),
    0 0 0 2px var(--base) inset;
}
.architecture_item_inner h4 {
  color: var(--black);
  margin-bottom: 12px;
}
.architecture_item_inner figure {
  margin: 0 auto 34px;
  max-width: 50px;
}
.architecture_item_inner figure img {
  height: 38px;
  width: auto;
  display: inline-block;
}
.architecture_sl {
  margin-left: -15px;
  margin-right: -15px;
}
.architecture_sl .slick-arrow {
  height: 25px;
  width: 25px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80%;
  transition: 0.4s ease;
  z-index: 5;
}
.architecture_sl .slick-arrow:hover {
  opacity: 0.5;
}
.architecture_sl .slick-arrow.slick-disabled {
  pointer-events: none;
  display: none;
}
.architecture_sl .slick-arrow:before {
  content: none;
}
.architecture_sl .slick-arrow.slick-next {
  background-image: url(images/next.svg);
}
.architecture_sl .slick-arrow.slick-prev {
  background-image: url(images/prev.svg);
}

.expertise_sec {
  background: linear-gradient(222deg, #558cc1 0%, #d8abd5 100%);
  padding: 60px 0;
}
.expertise_sec .header h3 {
  color: var(--white);
}
.logo_sl {
  margin-top: 58px;
}
.logo_item img {
  width: 73px;
}

.people_grid,
.people_box {
  font-size: var(--headingBaseSize);
}
.people_grid {
  column-count: 2;
  column-gap: 7%;
  position: relative;
  margin-top: 70px;
}
.people_grid:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(50%);
  height: 100%;
  border-left: 1px solid var(--gray);
}
.people_grid h4 {
  text-transform: uppercase;
  color: var(--maroonLight);
  margin-bottom: 15px;
  letter-spacing: 3px;
}
.people_grid p + h4 {
  margin-top: 55px;
}

.growing_sec {
  background-color: #1e2761;
  color: var(--white);
}
.growing_sec .header {
  max-width: 88%;
  margin-left: auto;
  margin-right: auto;
}
.growing_sec .header h2 {
  color: inherit;
}
.potential_row {
  margin-top: 70px;
}
.lft_potential {
  max-width: 60%;
}
.rt_potential {
  max-width: 40%;
  margin-left: auto;
}
.rt_potential img {
  width: 100%;
}
.block {
  display: flex;
  position: relative;
}
.changing_txt {
  width: 100%;
  height: 1.5em;
  line-height: 1;
  overflow: hidden;
  opacity: 0;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.changing_txt > span:after {
  content: "";
  height: 100%;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease 0.3s;
  border-radius: 8px;
  z-index: -1;
}
/* .changing_txt > span, */
.changing_txt > span:after {
  background: linear-gradient(
    222deg,
    #0eb5ee 0%,
    #eea9f9 25%,
    #0eb5ee 50%,
    #eea9f9 75%,
    #0eb5ee 100%
  );
  background-size: 500% 500%;
  animation: gradient 15s ease infinite;
}
.changing_txt > span.active:after {
  transform: scaleX(1);
}
.changing_txt > span {
  transform: translateY(100%);
  display: inline-flex;
  display: none;
  opacity: 0;
  white-space: nowrap;
  overflow: hidden;
  /* -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
 padding-bottom: 12px;
  padding-top: 3px;
  padding-right: 5px; */
  padding-bottom: 12px;
  padding-top: 12px;
  padding-right: 25px;
  padding-left: 20px;
}
.changing_txt > span i {
  font-style: normal;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.location_block {
  display: flex;
  list-style: none;
  margin-bottom: 40px;
  margin-top: 45px;
}
.location_block li {
  position: relative;
  padding: 5px 35px 5px 28px;
  width: 23%;
}
.location_block li:last-child {
  width: 35%;
}
.location_block li:after {
  content: "";
  height: 22px;
  width: 22px;
  position: absolute;
  left: 0;
  top: 5px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 17px auto;
  background-image: url(images/loc.svg);
}
.location_block li + li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  height: 55px;
  transform: translateY(-50%);
  border-left: 1px solid var(--white);
}

.after_banner_Sec {
  background-color: var(--black);
}
.pinner_sec {
  position: relative;
  height: 100vh;
}
.bn_item_sec {
  position: absolute;
  height: 100vh;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  color: #fff;
  pointer-events: none;
}
.bn_item_sec.active {
  pointer-events: all;
}
.bn_item_sec h2 {
  color: inherit;
  margin-bottom: 0;
}
.bg_anim video,
.bg_anim img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bg_anim {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: -1;
  pointer-events: none;
}
.item_content_sec,
.item_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  text-align: center;
}
.item_overlay {
  pointer-events: none;
}
.item_content_sec {
  opacity: 0;
}
.bn_item_sec .header {
  margin-bottom: 0px;
}
.get_help_sec {
  background-color: var(--white);
  margin-top: -75vh;
  padding-top: 50vh !important;
  z-index: -1;
  position: relative;
}
.help_item {
  background-color: var(--white);
  padding: 35px 25px;
  box-shadow: 0px 4px 54px 0px rgba(77, 137, 163, 0.25),
    0 0 0 0px var(--base) inset;
  height: 100%;
  min-height: 340px;
  text-align: center;
  transition: 0.5s ease;
  font-size: 16px;
}
.help_item:hover {
  background-color: rgba(64, 142, 198, 0.25);
  box-shadow: 0px 0px 15px 0px rgba(77, 137, 163, 0.25),
    0 0 0 2px var(--base) inset;
}
.help_row {
  margin-bottom: -30px;
  justify-content: center;
}
.help_row > div {
  margin-bottom: 30px;
}
.help_item figure {
  margin-bottom: 25px;
  position: relative;
}
.help_item h4 {
  margin-bottom: 12px;
  color: var(--black);
}
.limitless_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500%;
  background: #558cc1;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #558cc1 20%,
    #712748 40%,
    #20275e 60%,
    #80367b 80%,
    #82a6cf 100%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.limitless_sec.active .limitless_bg {
  opacity: 1;
}
.limitless_sec {
  background-color: transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.limitless_wrapper {
  height: 100vh;
  width: 100%;
  position: relative;
}
.limitless_wrapper > div {
  position: relative;
}
.indicators {
  left: 0;
  top: 0;
  margin: 20vh 0;
  height: 60vh;
  position: absolute;
  color: var(--black);
}
.indicator_bar {
  width: 4px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}
.indicator_bar > span {
  background-color: currentColor;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  transition: 0.5s linear;
}
.limitless_wrapper:not(.active) .indicator_bar {
  background-color: var(--gray);
}
.limitless_item {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  padding-left: 30px;
  padding-top: 100px;
  padding-bottom: 100px;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
}
.limitless_item.active {
  pointer-events: all;
}
.limitless_wrapper.active .limitless_item,
.limitless_wrapper.active .indicators {
  color: #fff;
}
.indicator_text {
  display: flex;
  align-items: center;
  font-size: 15px;
  position: absolute;
  font-family: var(--headlineFont);
  font-weight: 600;
  color: currentColor;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 3px;
}
.limit_lft {
  width: 100%;
  max-width: 44%;
}
.limitless_wrapper .limitless_item h2 {
  color: inherit;
}
.limitless_item h4 {
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 24px;
}
.limit_lft p {
  padding-right: 13%;
}
.limit_rt {
  width: 100%;
  max-width: 50%;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.limit_rt img,
.limit_rt video {
  width: 100%;
  height: auto;
}
.limit_box {
  height: 380px;
  width: 380px;
  border-radius: 23px;
  background-color: rgba(237, 237, 237, 0.3);
  display: block;
  position: relative;
  z-index: 1;
}
.limit_box:after {
  content: "";
  height: 95px;
  width: 125px;
  border-top: 1px solid var(--white);
  border-left: 1px solid var(--white);
  display: block;
  position: absolute;
  top: 40%;
  left: 30%;
  transform: translate(-50%, -50%);
}
.limitless_wrapper:not(.active) .limit_box {
  background-color: var(--gray);
  opacity: 0.3;
}
.limitless_wrapper:not(.active) .limit_box:after {
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
}
.limit_rt figure {
  position: absolute;
  z-index: 2;
  margin: 0;
  width: 100%;
  transition: 1s ease 0.4s;
  opacity: 0;
  max-width: 300px;
}
.limit_rt figure.limit_img {
  transform: scale(0);
  opacity: 0;
  overflow: hidden;
  border-radius: 15px;
  line-height: 0;
}

.limitless_item.active figure.limit_img {
  transform: none;
  opacity: 1;
}
.end2end_anim_wrapper {
  position: relative;
  overflow: hidden;
  height: 100vh;
}
.end2_title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15%;
  background-color: var(--black);
  opacity: 0;
}
.end2end_sec {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.bg_color {
  width: 500%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #558cc1;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 16.66%,
    #558cc1 33.32%,
    #712748 49.98%,
    #20275e 66.64%,
    #80367b 83.3%,
    #82a6cf 100%
  );
  z-index: -1;
}
.orbit.faded * {
  opacity: 0.1 !important;
}

.end2end_sec .header h2 {
  color: inherit;
}
.end2end_sec.active .header {
  color: var(--white);
}
.end2end_anim {
  /* height: auto;
  width: 170%;
  transform-origin: right bottom; */
  position: relative;
  z-index: 1;
  height: 100%;
  width: auto;
}
.main_planet {
  pointer-events: none;
}
.hover_cr {
  stroke: var(--white);
  stroke-width: 0px;
  transition: 0.4s ease-out;
  cursor: pointer;
}
.hover_cr:hover {
  stroke-width: 4px;
}
/* .shape_pop {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  border: 1px solid var(--white);
  padding: 20px 25px;
  color: var(--black);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  opacity: 0;
  margin-top: 5px;
  transition: opacity 0.3s ease 0.1s;
  max-width: 250px;
}
.shape_pop.open {
  opacity: 1;
} */
.end2end_content_each {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 5vw 0 8vw;
  z-index: 3;
  pointer-events: none;
}
.end2end_ct_inner {
  /* max-width: 70%; */
  max-width: 45%;
  margin-left: auto;
  color: var(--black);
  pointer-events: none;
  opacity: 0;
  text-align: right;
  padding: 30px 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
}
.end2end_ct_inner h3 {
  margin-bottom: 15px;
}
.growing_sec .lineBtn,
.growing_sec .lineBtn:before {
  color: var(--white);
}
.growing_sec .lineBtn:hover {
  color: var(--blueLight);
}

.footer {
  background-color: var(--white);
  padding-top: 42px;
}
.ft_logo {
  text-align: center;
  margin-bottom: 20px;
}
.ft_logo img {
  max-width: 115px;
}
.ft_nav {
  display: flex;
  margin: 0 auto;
  list-style: none;
  align-items: center;
  justify-content: center;
}
.ft_nav li {
  padding: 3px 16px;
}
.ft_nav a {
  color: var(--blueDark);
  font-size: 13px;
}
.copyright_block a {
  color: var(--base);
}
.ft_nav a:hover,
.copyright_block a:hover {
  color: var(--maroonLight);
}
.copyright_block {
  margin-top: 25px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 1px solid #545454;
  text-align: center;
  font-size: 13px;
}
.gallery {
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 150vh;
  position: absolute;
  overflow: hidden;
  gap: 5px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.g_col {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 25%;
  align-self: flex-start;
  justify-self: flex-start;
}
.g_col_item {
  width: 100%;
  padding: 0 25px;
}
.g_col_item a {
  display: block;
  width: 100%;
}
.g_col_item img,
.g_col_item video {
  transition: 0.3s ease-out;
  overflow: hidden;
  width: 100%;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 3px 3px 20px;
}
.scrollable_gal {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
}
.contactModal .modal-header {
  background-color: var(--maroonLight);
  color: var(--white);
}
.contactModal .btn-close {
  filter: invert(1);
}
.contactModal .modal-body {
  padding: 30px 25px;
}
.input_container {
  margin-bottom: 25px;
}
.input_container label {
  text-transform: uppercase;
  font-weight: 400;
  display: block;
  margin-bottom: 5px;
  color: var(--black);
}
.contactModal .modal-dialog {
  max-width: 800px;
}
.banner_content h1.hide {
  transform: translateY(100%);
  opacity: 0 !important;
  transition: opacity 0.3s ease, transform 0.5s ease;
}
.people_block + .people_block {
  margin-top: 45px;
}
.rt_potential input[type="text"],
.rt_potential input[type="number"],
.rt_potential input[type="tel"],
.rt_potential input[type="password"],
.rt_potential input[type="email"],
.rt_potential select,
.rt_potential textarea {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  color: var(--white);
}
.rt_potential *::-webkit-input-placeholder {
  color: var(--white);
  opacity: 0.3;
}
.rt_potential *:-ms-input-placeholder {
  color: var(--white);
  opacity: 0.3;
}
.rt_potential *::-moz-placeholder {
  color: var(--white);
  opacity: 0.3;
}
.rt_potential *:-moz-placeholder {
  color: var(--white);
  opacity: 0.3;
}
.rt_potential input[type="text"]:hover,
.rt_potential input[type="number"]:hover,
.rt_potential input[type="tel"]:hover,
.rt_potential input[type="password"]:hover,
.rt_potential input[type="email"]:hover,
.rt_potential select:hover,
.rt_potential textarea:hover {
  border: 1px solid var(--white);
}
.privacypg_Sec .location_block {
  margin: 0;
}
.privacypg_Sec .location_block li:after,
.privacypg_Sec .location_block li + li:before {
  filter: invert(1);
}
.privacypg_Sec h3 {
  margin-top: 65px;
}
.inner_page_banner {
  padding: 200px 0 85px;
  background-color: var(--base);
}
.inner_page_banner .header {
  margin-bottom: 0;
}
.inner_page_banner .header h2 {
  color: var(--white);
}
.loc_blk {
  margin: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 13px;
}
.loc_blk h4 {
  font-size: 21px;
  margin-bottom: 8px;
}
.loc_blk li {
  padding: 5px 25px;
  position: relative;
  max-width: 20%;
}
.loc_blk li:after {
  content: "";
  position: absolute;
  top: 50%;
  height: 100%;
  transform: translateY(-50%);
  left: 0;
  width: 1px;
  background-color: var(--white);
  opacity: 0.1;
}
.loc_blk li:first-child:after {
  content: none;
}
/* .change_view {
  opacity: 0;
  pointer-events: none;
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--base);
  font-size: 22px;
  padding: 60px 40px 40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  z-index: 9999999;
}
.change_view img {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  display: block;
} */
.pp_title {
  text-transform: capitalize;
}
.pp_title p {
  max-width: 80%;
}
.help_row {
  margin-top: 60px;
}
.end2end_sec .header {
  opacity: 0;
  transition: 0.6s ease;
}
.end2end_sec.active .header {
  opacity: 1;
}
/* CSS Modification 14.09.23 */
.rt_potential .contact_frm .gform_wrapper.gravity-theme .gform_heading,
.rt_potential
  .contact_frm
  .gform_wrapper.gravity-theme
  .gfield_label.gform-field-label {
  display: none;
}
.contact_frm .gform_wrapper.gravity-theme input[type="text"],
.contact_frm .gform_wrapper.gravity-theme input[type="number"],
.contact_frm .gform_wrapper.gravity-theme input[type="tel"],
.contact_frm .gform_wrapper.gravity-theme input[type="password"],
.contact_frm .gform_wrapper.gravity-theme input[type="email"],
.contact_frm .gform_wrapper.gravity-theme select,
.contact_frm .gform_wrapper.gravity-theme textarea {
  padding: 15px 30px !important;
  font-size: var(--baseSize) !important;
}
.contact_frm .gform_wrapper.gravity-theme textarea.medium {
  height: 145px !important;
}
.contact_frm .gform_wrapper.gravity-theme .gform_fields {
  grid-row-gap: 25px;
  grid-column-gap: 6%;
}
.contact_frm .gform_wrapper.gravity-theme .gform_footer {
  padding-top: 0;
  margin-top: 20px;
}
.modal-body.contact_frm .gform_wrapper.gravity-theme .gform_heading {
  display: none;
}
.modal-body.contact_frm .gform_wrapper.gravity-theme .gfield_label {
  font-family: var(--baseFont) !important;
  text-transform: uppercase;
  font-weight: 400 !important;
  display: block;
  margin-bottom: 5px;
  color: var(--black);
  font-size: var(--baseSize) !important;
}
.loader {
  position: absolute;
  bottom: 15vh;
  left: 50%;
  width: 180px;
  transform: translateX(-50%);
}
.loading_text {
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
}
.lpercent {
  position: absolute;
  bottom: 4px;
  right: 0;
  font-size: 14px;
}
.loader_line {
  height: 3px;
  background: var(--white);
  border-radius: 15px;
  margin-top: 0.3em;
  position: relative;
  overflow: hidden;
  width: 0;
}
/* CSS Modification 14.09.23 */
.gform_wrapper.gravity-theme .gfield_validation_message,
.gform_wrapper.gravity-theme .validation_message,
.gform_wrapper.gravity-theme .gform_validation_errors {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  font-family: var(--baseFont) !important;
}
.gform_wrapper.gravity-theme .gfield_description {
  font-size: 12px !important;
  font-family: var(--baseFont) !important;
}

.gform_confirmation_message {
  color: var(--blueLight) !important;
  font-family: var(--baseFont) !important;
}
.contact_frm .gform_wrapper.gravity-theme .gform_footer {
  padding-bottom: 0 !important;
  position: relative !important;
}
.contact_frm .gform_footer img[class*="gform_ajax_spinner"] {
  position: absolute !important;
  top: 15px !important;
  right: 15px !important;
  z-index: 2 !important;
  width: 30px !important;
  height: 30px !important;
  display: block !important;
}
/* ========== responsive css =========== */
/* @media (max-height: 480px) and (orientation: landscape) {
  .change_view {
    opacity: 1 !important;
    pointer-events: all !important;
  }
} */
@media (min-width: 992px) {
  /* navbar*/
  .navbar-nav > li.menu-item-has-children > a,
  .navbar-nav
    li.menu-item-has-children
    > .sub-menu
    li.menu-item-has-children
    > a {
    padding-right: 20px;
    position: relative;
  }
  .navbar-nav > li.menu-item-has-children > a::before,
  .navbar-nav
    li.menu-item-has-children
    > .sub-menu
    li.menu-item-has-children
    > a::before {
    content: "";
    position: absolute;
    width: 13px;
    height: 6px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(images/qt.svg);
    top: 12px;
    right: 0;
    display: block;
  }
  .main-head.white .navbar-nav > li.menu-item-has-children > a::before {
    filter: brightness(0);
  }
  .navbar-nav
    li.menu-item-has-children
    > .sub-menu
    li.menu-item-has-children
    > a::before {
    background-image: url(images/qt_sub_b.svg);
  }
  .navbar-nav
    li.menu-item-has-children
    > .sub-menu
    li.menu-item-has-children:hover
    > a::before {
    background-image: url(images/qt_sub_w.svg);
  }
  .navbar-nav .clickD {
    display: none;
  }
  .navbar-nav li.menu-item-has-children:hover > .sub-menu {
    display: block;
  }
  .main-head.white .navbar-nav > li > a {
    color: var(--black);
  }
  .main-head.white .navbar-nav > li > a:after {
    background-color: var(--black);
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
    padding: 0 15px;
  }
}
@media (max-width: 1600px) {
}

@media (max-width: 1366px) {
  :root {
    --baseSize: 16px;
    --headingBaseSize: 18px;
  }
  .end2end_ct_inner {
    max-width: 32%;
    padding: 30px 20px;
  }
}

@media (max-width: 1199px) {
  h1,
  .h1 {
    font-size: 52px;
  }
  h2,
  .h2 {
    font-size: 36px;
  }
  h3,
  .h3 {
    font-size: 26px;
  }
  h4,
  .h4 {
    font-size: var(--headingBaseSize);
  }
  h5 {
    font-size: 16px;
  }
  .cmn_gap {
    padding: 60px 0;
  }
  .main-head {
    padding: 12px 0;
  }
  .navbar-nav > li > a {
    font-size: 15px;
  }
  .sub-menu > li > a {
    font-size: 14px;
  }
  .help_item {
    font-size: 14px;
  }
  .home_banner .banner_content h1 {
    font-size: 12.75vw;
  }
  .limitless_item {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .loc_blk li {
    padding: 3px 15px;
  }
}

@media (max-width: 1024px) {
  .slick-prev {
    left: -15px;
  }
  .slick-next {
    right: -15px;
  }
}

@media (max-width: 991px) {
  :root {
    --baseSize: 14px;
    --headingBaseSize: 16px;
  }
  /* navbar*/
  .main-head {
    padding: 0;
  }
  .navbar-nav {
    margin-right: auto !important;
  }
  .navbar-nav .clickD {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 29px;
    display: block;
    cursor: pointer;

    /*
     -webkit-transform: rotate(0) !important;
    transform: rotate(0) !important;
    background: transparent url(images/qt.svg) right center no-repeat;
    background-size: 10px; */
  }
  .navbar-nav > li > .clickD:after {
    content: "";
    height: 29px;
    width: 29px;
    position: absolute;
    right: 0;
    top: 0;
    background-size: 10px;
    background: transparent url(images/qt.svg) center center no-repeat;
    -webkit-transform: rotate(0) !important;
    transform: rotate(0) !important;
  }

  .navbar-nav .clickD.toggled:after {
    opacity: 0.5;
    -webkit-transform: rotate(180deg) !important;
    transform: rotate(180deg) !important;
  }
  .sub-menu {
    background-color: transparent;
    padding-left: 20px;
    margin-bottom: 15px;
    margin-top: 10px;
  }
  .sub-menu.show {
    display: block;
  }
  /*
     .navbar-nav li .menu-item-has-children .clickD {
    background: transparent url(images/qt.svg) center center no-repeat;
    background-size: 10px;
    top: 5px !important;
  } 
  .sub-menu > li.menu-item-has-children .clickD {
    top: 8px;
    right: 5px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  .sub-menu > li.menu-item-has-children .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  } */
  .navbar-nav > li.menu-item-has-children {
    padding-right: 0px;
  }
  .sub-menu > li.menu-item-has-children > a {
    padding-right: 20px;
  }
  .navbar-nav > li {
    padding-top: 15px;
    padding-bottom: 15px;
    /* min-width: 250px; */
  }
  .navbar-nav > li.current-menu-item > a:after,
  .navbar-nav > li > a:after,
  .navbar-nav > li.menu-item-has-children > a:after {
    width: 100%;
    opacity: 0;
  }
  .navbar-nav > li.current-menu-item > a:after,
  .navbar-nav > li > a:hover:after,
  .navbar-nav > li.menu-item-has-children:hover > a:after {
    width: 100%;
    opacity: 1;
  }
  .sub-menu,
  .navbar-nav > li > .sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
    right: inherit;
  }
  .navbar-nav > li {
    margin: 0;
    padding: 0;
  }
  /* .navbar-nav li.menu-item-has-children > a {
    padding-right: 30px !important;
  } */
  .sub-menu > li > a {
    color: var(--white);
  }
  .navbar-nav > li > a {
    padding: 0 0 5px 0;
    display: inline-block;
    width: 100%;
    text-align: left;
    font-size: 20px;
    margin-bottom: 0px;
  }
  .navbar-nav > li.menu-item-has-children > a {
    padding-right: 30px;
  }
  .sub-menu .sub-menu > li > a {
    padding-left: 30px;
  }
  .sub-menu .sub-menu .sub-menu > li > a {
    padding-left: 40px;
  }
  .navbar-nav > li + li {
    margin-top: 10px;
  }
  .navbar-nav > li > a:after {
    bottom: 0;
  }
  .navbar-collapse {
    position: fixed;
    top: 0;
    height: 100vh !important;
    width: 100%;
    overflow-y: auto;
    right: 0;
    margin: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    -webkit-transition: 0.4s ease-in, opacity 0.2s ease;
    transition: 0.4s ease-in, opacity 0.2s ease;
    opacity: 0;
    z-index: 100;
    pointer-events: none;
    background: var(--base);
  }
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    opacity: 1;
    pointer-events: all;
  }
  body.open-nav,
  html.open-nav,
  [data-scroll-container].open-nav {
    overflow: hidden !important;
    pointer-events: none;
  }
  /* navbar end*/
  h1,
  .h1 {
    font-size: 45px;
  }
  h2,
  .h2 {
    font-size: 32px;
  }
  h3,
  .h3 {
    font-size: 24px;
  }
  h4,
  .h4 {
    font-size: var(--headingBaseSize);
  }
  h5 {
    font-size: 14px;
  }
  p {
    margin: 0 0 12px 0;
  }
  p:last-child {
    margin-bottom: 0;
  }
  .architecture_item_inner figure {
    margin-bottom: 16px;
  }
  .architecture_item_inner h4 {
    margin-bottom: 8px;
  }
  .architecture_item_inner {
    padding: 25px 15px;
    box-shadow: 0px 0px 6px 0px rgba(77, 137, 163, 0.25);
  }
  .expertise_sec {
    padding: 40px 0;
  }
  .logo_item img {
    width: 50px;
  }
  .logo_sl,
  .people_grid,
  .potential_row,
  .people_grid p + h4 {
    margin-top: 30px;
  }
  .people_grid h4 {
    margin-bottom: 8px;
    letter-spacing: 2px;
  }
  .changing_txt > span {
    padding: 6px 10px;
  }
  .pp_title h2 {
    margin-bottom: 15px;
  }
  .location_block {
    margin-bottom: 25px;
  }
  .location_block li {
    width: 30%;
  }
  .location_block li:last-child {
    padding-right: 0;
    width: 40%;
  }
  .footer {
    padding-top: 35px;
  }
  .ft_logo {
    margin-bottom: 15px;
  }
  .ft_nav li {
    padding: 3px 10px;
  }
  .copyright_block {
    margin-top: 25px;
    padding-top: 20px;
    padding-bottom: 15px;
  }
  .end2end_content_each {
    padding: 100px 0 120px;
  }
  .limitless_item {
    padding-top: 45px;
    padding-bottom: 25px;
  }
  .indicators {
    margin: 25vh 0;
    height: 50vh;
  }
  .indicator_bar {
    width: 2px;
  }
  .indicator_text {
    font-size: 13px;
  }
  .limitless_item .header {
    margin-bottom: 20px;
  }
  .limit_lft {
    max-width: 60%;
  }
  .limit_rt {
    max-width: 40%;
  }
  .limit_box {
    height: 275px;
    width: 275px;
    border-radius: 18px;
  }
  .limit_rt figure {
    max-width: 235px;
  }
  .limit_box:after {
    height: 55px;
    width: 55px;
  }
  .architecture_item {
    padding: 8px;
  }
  .g_col_item img {
    border-radius: 10px;
  }
  .privacypg_Sec h3 {
    margin-top: 35px;
    margin-bottom: 15px;
  }
  .inner_page_banner {
    padding: 150px 0 55px;
  }
  .gallery {
    flex-wrap: wrap;
  }
  .g_col_item {
    padding: 0 6px;
  }
  .g_col_item img,
  .g_col_item video {
    border-radius: 3px;
  }
  .gallery {
    height: 100vh;
    gap: 0px;
  }
  .block {
    padding: 0;
    margin-bottom: 0;
  }
  .block:after {
    height: 2px;
  }
  .lft_potential {
    max-width: 100%;
    text-align: center;
  }
  .block {
    justify-content: center;
  }
  .changing_txt {
    width: auto;
  }
  .rt_potential {
    margin-right: auto;
    max-width: 100%;
  }
  .pp_title {
    margin-bottom: 50px;
  }
  .contact_frm h2 {
    text-align: center;
  }
  .loc_blk {
    margin: 20px -8px 0;
  }
  .loc_blk li {
    width: 100%;
    max-width: 33.33%;
    text-align: center;
  }
  .loc_blk li:first-child:after {
    content: none;
  }
  .loc_blk li br {
    display: none;
  }
  .loc_blk h4 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .help_row {
    margin-top: 40px;
  }
  .get_help_sec .header.center p,
  .limitless_sec .header.center p,
  .end2end_sec .header.center p,
  .architecture_sec .header.center p {
    text-align: left;
  }
  /* CSS Modification 14.09.23 */
  .contact_frm .gform_wrapper.gravity-theme .gfield.gfield--width-half {
    -ms-grid-column-span: 12;
    grid-column: span 12;
  }

  /* CSS Modification 14.09.23 */
  .limit_lft p {
    font-size: 15px;
  }
  .end2end_anim {
    height: 57%;
    width: 100%;
  }
  .end2end_anim .cls-1 {
    clip-path: none !important;
  }
}

@media (max-width: 767px) {
  /* images alignment for wordpress content pages */
  .alignright,
  .alignleft,
  .aligncenter {
    float: none;
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    clear: both;
    margin-bottom: 24px;
  }
  h1,
  .h1 {
    font-size: 42px;
  }
  h2,
  .h2 {
    font-size: 28px;
  }
  h3,
  .h3 {
    font-size: 21px;
  }
  input[type="text"],
  input[type="number"],
  input[type="tel"],
  input[type="password"],
  input[type="email"],
  select,
  input[type="submit"] {
    height: 45px;
    padding: 8px 20px;
  }
  textarea {
    padding: 8px 20px;
    height: 85px;
  }
  .input_container {
    margin-bottom: 15px;
  }
  .help_item figure {
    margin-bottom: 15px;
  }
  .help_item {
    padding: 25px 15px;
    min-height: auto;
    box-shadow: 0px 0px 20px 0px rgba(77, 137, 163, 0.25),
      0 0 0 0px var(--base) inset;
  }
  .main-head.show:not(.active) {
    background: rgba(0, 0, 0, 0.9);
  }
  .limit_lft {
    margin-top: auto;
    max-width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }
  .limit_rt {
    margin: 0 auto auto;
  }
  .people_grid {
    column-count: 1;
    column-gap: 0;
  }
  .people_grid,
  .people_box {
    font-size: 14px;
  }
  .people_grid:after {
    content: none;
  }
  .people_grid p + h4 {
    margin-top: 20px;
  }
  .location_block {
    margin-top: 30px;
  }
  .potential_row {
    margin-bottom: 40px;
  }
  .location_block {
    flex-wrap: wrap;
  }
  .location_block li,
  .location_block li:last-child {
    width: 100%;
    padding-right: 0;
  }
  .location_block li + li {
    margin-top: 8px;
  }
  .location_block li + li:before {
    content: none;
  }
  .ft_nav {
    flex-wrap: wrap;
  }
  .contactModal .modal-body {
    padding: 20px 15px;
  }
  .end2end_ct_inner {
    max-width: 100%;
    text-align: left;
  }
  .end2end_ct_inner h3 {
    margin-bottom: 8px;
  }
  .limit_box {
    height: 200px;
    width: 200px;
  }
  .limit_rt figure {
    max-width: 175px;
  }
  .limitless_item h4 {
    margin-bottom: 5px;
  }
  .limit_lft p {
    padding-right: 0;
  }
  .loc_blk h2 {
    margin-bottom: 0;
  }
  .pp_title h2 br {
    display: none;
  }
  .limitless_item h4 {
    font-size: 22px;
  }
  .loc_blk {
    font-size: 12px;
  }
  /* CSS Modification 14.09.23 */
  .contact_frm .gform_wrapper.gravity-theme input[type="text"],
  .contact_frm .gform_wrapper.gravity-theme input[type="number"],
  .contact_frm .gform_wrapper.gravity-theme input[type="tel"],
  .contact_frm .gform_wrapper.gravity-theme input[type="password"],
  .contact_frm .gform_wrapper.gravity-theme input[type="email"],
  .contact_frm .gform_wrapper.gravity-theme select,
  .contact_frm .gform_wrapper.gravity-theme textarea {
    padding: 8px 20px !important;
  }
  .contact_frm .gform_wrapper.gravity-theme textarea.medium {
    height: 85px !important;
  }
  .contact_frm .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 15px;
  }
  .contact_frm .gform_wrapper.gravity-theme .gform_footer {
    margin-top: 10px;
  }
  /* CSS Modification 14.09.23 */
  .contact_frm .gform_footer img[class*="gform_ajax_spinner"] {
    top: 8px !important;
  }
}

@media (max-width: 575px) {
  .home_banner .banner_content h1 {
    font-size: 90px;
  }
  .indicators {
    left: 15px;
  }
  .end2end_ct_inner {
    padding: 20px 15px;
    border-radius: 15px;
  }
  .end2end_content_each {
    padding-bottom: 50px;
  }
  .architecture_sl {
    margin-left: 0;
    margin-right: 0;
  }
  .slick-prev {
    left: -10px;
  }
  .slick-next {
    right: -10px;
  }
  .limit_rt {
    max-width: 70%;
  }
  .potential_row {
    margin-bottom: 15px;
  }
  .g_col_item img {
    border-radius: 6px;
  }
  .contact_frm input[type="submit"] {
    max-width: 100%;
  }
  .architecture_item {
    padding: 8px 25px;
  }
  .inner_page_banner {
    padding: 100px 0 25px;
  }
  .limitless_item {
    padding-right: 15px;
  }
  /* .loc_blk li {
    padding: 15px 0;
  }
  .loc_blk li {
    width: 100%;
    max-width: 100%;
  }
  .loc_blk li:after {
    top: 0;
    left: 50%;
    width: 60%;
    height: 1px;
    transform: translateX(-50%);
  } */
  .loc_blk h3 {
    margin-bottom: 4px;
  }
  .limitless_item h4 {
    font-size: 20px;
  }
  .loc_blk h3 {
    font-size: 26px;
  }
  .loc_blk li {
    padding: 3px 8px;
  }
}

@media (max-width: 479px) {
  h1,
  .h1 {
    font-size: 38px;
  }
  h2,
  .h2 {
    font-size: 26px;
  }
  h3,
  .h3 {
    font-size: 20px;
  }
  .loc_blk {
    font-size: 10px;
  }
}

@media (max-width: 374px) {
}
