/* font-famaly-hear */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* font-famaly-hear-end */

/* root */
:root {
  --inter: "Inter", sans-serif;
  --poppins: "Poppins", serif;

  --white-color: #fff;
  --black-color: #000;

  --primary: #19BBC2;
  --secondary: #000;

  --hover-colo: #000;

  --body-color: #D9D9D9;
  --heading-color: #D9D9D9;

  --ciBlue: #00fff1;
  --ciSecond: #0c1016;
  --ciWhite: #ffffff;

}

/* root */

/* defaults-css-start */
html {
  font-size: 100%;
  box-sizing: border-box;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.3;
  font-family: var(--poppins);
  font-size: 16px;
  font-weight: 200;

}

a,
button {
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
}

a:focus,
button:focus,
.btn:focus {
  outline: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--poppins);
  color: var(--heading-color);
  margin-top: 0px;
  font-style: normal;
  font-weight: 700;
  text-transform: normal;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

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

li {
  list-style: none;
}

p {
  font-size: 20px;
  font-weight: 200;
  line-height: 24px;
  color: var(--body-color);
  margin-bottom: 15px;
}

label {
  color: var(--body-color);
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}

*::-moz-selection {
  background: var(--secondary);
  color: var(--white-color);
  text-shadow: none;
}

::-moz-selection {
  background: var(--secondary);
  color: var(--white-color);
  text-shadow: none;
}

::selection {
  background: var(--secondary);
  color: var(--white-color);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--body-color);
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: var(--body-color);
  font-size: 16px;
  opacity: 1;
}

/* defaults-css--end */

/* theme-css */

.body-bg {
  background-image: linear-gradient(to bottom, #222629, #222629, #1d1f22, #1b1c1e, #18191b, #18191b, #18191b, #18191b, #1b1c1e, #1d1f22, #202325, #222629);
}

.text-primary {
  color: var(--primary) !important;
}

.fs-2 {
  font-size: 48px !important;
  line-height: 55px !important;
  font-weight: bold;
  text-transform: capitalize;
}

.btn {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--poppins);
  padding: 15px 50px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-main {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white-color);
}

.btn-main-textdark {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--black-color);
}

.btn-main-textdark:hover {
  background-color: #0c8f94;
  border-color: #0c8f94;
  color: var(--white-color);
}

.btn-main:hover {
  background-color: #0c8f94;
  border-color: #0c8f94;
  color: var(--white-color);
}

.btn-light:hover {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.section-padding {
  padding: 70px 0px 70px;
}

.dropdown-menu {
  background: linear-gradient(180deg, #131415 0%, #141617 100%);
  border: 1px solid;
  border-image-source: linear-gradient(180deg, #1F1F1F 0%, rgba(31, 31, 31, 0) 100%);
  border-radius: 0px;
  border-image-slice: 1;
}

.dropdown-menu li a {
  color: var(--body-color);
  padding: 6px 10px;
  font-size: 15px;
}

.dropdown-menu li:hover a {
  background: #1F1F1F;
  color: var(--body-color);
}

@media (max-width: 768px) {
  .hide-on-mobile {
    display: none;
  }
}

/* theme-css-end */

/* ======== header style start ============ */
.header {
  background-color: transparent; /* Make the navbar transparent initially */
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 1111;
  padding: 22px 0px;
  transition: background-color 0.3s ease; /* Smooth transition for the background change */
}

.header.scrolled {
  background-color: #1B1F24; /* Background color when scrolled */
}

.header-nav>ul>li>a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: block;
  padding: 10px 15px;
  position: relative;
  transition: all .3s;
  color: #D9D9D9;
}

.header-nav>ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-nav>ul>li:hover>a {
  color: var(--primary);
}

.btn-outline {
  border-color: var(--primary);
  color: var(--white-color);
}

.header-link a.btn {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  border-radius: 10px;
  border-width: 2px;
  padding: 5px 20px;
}

.btn-outline:hover {
  background: var(--primary);
}

.header-end {
  gap: 15px;
}


.header-nav ul li.has-submenu {
  position: relative;
}

.header-nav ul li.has-submenu ul.submenu {
  position: absolute;
  left: 0px;
  top: 110%;
  min-width: 250px;
  background: #25898e;
  border-radius: 10px;
  padding: 6px 0px;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
  z-index: 1111;
}

.header-nav ul li.has-submenu ul.submenu li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 15px;
  font-size: 14px;
  color: #fff;
  border-bottom: 1px solid #171F20;
  font-weight: 300;
}

.header-nav ul li.has-submenu ul.submenu li a span.icon img {
  width: 23px;
}

.header-nav ul li.has-submenu:hover ul.submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.header-nav ul li.has-submenu ul.submenu li:last-child a {
  border-bottom: navajowhite;
}

.header-nav ul li.has-submenu ul.submenu li:hover a {
  color: var(--white-color);
  background-color: #0f4b4e;
}


/* ======== header style end ============ */



/* ======== sections style start ============ */
.header-bar button {
  background: transparent;
  border: none;
  font-size: 24px;
  padding: 3px 9px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  color: #fff;
}

.offcanvas {
  background: rgba(25, 187, 194, 0.6);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.offcanvas-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px;
  border-bottom: 1px solid #0000001A;
}

.offcanvas-menu ul li ul li a {
  font-size: 16px !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.offcanvas-menu ul li a span svg {
  transition: .3s;
}

.offcanvas-menu ul li a[aria-expanded="true"] span svg {
  transform: rotate(180deg);
}

.offcanvas-menu ul li a:hover {
  color: var(--primary);
}

.offcanvas {
  z-index: 1111111;
}

/* ======== sections style end ============ */


/* ======== hero style start ============ */



.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-logos {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-area {
  background-repeat: no-repeat;
  background-size: cover;
  /* background-position: center; */
  padding: 167px 0px 120px;
}

.hero-content {
  flex: 0 0 auto;
  max-width: 763px;
}

.hero-content>span {
  font-size: 28px;
  display: block;
  color: #D9D9D9;
  margin-bottom: 14px;
}

.hero-content h1 {
  margin-bottom: 30px;
}

.hero-content p {
  font-size: 20px;
  line-height: normal;
  font-weight: 200;
}

.hero-counter h3 {
  font-size: 40px;
  line-height: normal;
  font-weight: 300;
  margin-bottom: 4px;
}

.hero-counter span.text {
  font-size: 22px;
  font-weight: 300;
  color: #D9D9D9;
  display: block;
}

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

.hero-counts {
  margin: 40px 0px;
}

.link {
  font-size: 20px;
  font-weight: normal;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  gap: 20px;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-bottom: 2px;
}

.link::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  content: "";
  background: var(--primary);
  transition: .3s;
}

.link:hover::after {
  width: 100%;
}


/* ======== hero style end ============ */

/* ======== partners-area style start ============ */


.partners-wrapper {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0px -15px;
  margin-bottom: 40px;
}

.partner-item {
  padding: 0px 15px;
  width: 20%;
  display: block;
  flex: 0 0 auto;
}

.partners-wrapper-home .partner-item {
  padding: 0px 15px;
  width: 16%;
  display: block;
  flex: 0 0 auto;
}

.partner-item a img {
  max-width: 100px;
  width: 100%;
}


.partners-area {
  padding: 80px 0px 80px;
}

.partners-title {
  margin-bottom: 60px;
}


.partners-rated {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #19BBC21A;
  padding: 20px 48px;
  border-radius: 40px;
  border: 1px solid #19BBC230;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}

.partners-rated:hover {
  background-color: #19BBC230;
}

.partners-rated span {
  display: block;
  line-height: 1;
}

.partners-rated span.star {
  padding-bottom: 1px;
}

.partners-bottom {
  margin-bottom: 57px;
}

.sw-nav button {
  position: absolute;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
}

.sw-nav button.s-next {
  left: auto;
  right: -100px;
}

.partners-review-item {
  background: #162122;
  border: 1px solid #16484B;
  padding: 30px 28px;
  border-radius: 10px;
  height: auto;
}

.pr-stars {
  display: flex;
  align-items: center;
  gap: 5px;
}

.pr-review-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #D9D9D9;
  line-height: 27px;
}

.pr-project-name {
  font-size: 14px;
  font-weight: 600;
  color: #D9D9D9;
  line-height: 24px;
  display: block;
}

.pr-top {
  padding-bottom: 21px;
}

.pr-text p {
  font-size: 14px;
  line-height: 24px;
  color: #D9D9D9;
  margin-bottom: 0px;
  font-weight: 300;
}

.pr-text {
  margin-bottom: 12px;
}

.pr-bottom {
  gap: 10px;
}

.pr-partner {
  max-width: 77px;
  max-height: 26px;
}

/* ======== partners-area style end ============ */

/* ======== help-area style start ============ */


.help-area {
  padding: 75px 0px 75px;
}

.help-area .section-title {
  margin-bottom: 50px;
}


.section-title h2 {
  margin-bottom: 24px;
}

.section-title p {
  font-size: 22px;
  font-weight: 200;
  margin-bottom: 0px;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px 60px;
  max-width: 1060px;
  margin: 0 auto;
}

.help-item {
  border: 2px solid var(--primary);
  border-radius: 8px;
  text-align: center;
  padding: 24px 11px 56px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.help-item::after {
  position: absolute;
  right: 0;
  top: 0;
  width: 0px;
  height: 0px;
  content: "";
  background: var(--primary);
  transition: all .8s;
  border-radius: 50%;
  z-index: -1;
  transform: translate(12%, -20%) scale(1.5);
}

.help-item:hover::after {
  width: 400px;
  height: 400px;
}

.help-item--content h4 {
  font-size: 22px;
  line-height: 36px;
  margin-bottom: 12px;
}


.help-icon {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.help-icon img {
  position: relative;
  z-index: 11;
}

.help-icon::after {
  position: absolute;
  left: 20px;
  top: 0;
  width: 100%;
  height: 100%;
  background: #176468;
  content: "";
  z-index: 1;
  border-radius: 5px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 18px;
  box-shadow: 0px 2px 4px #19BBC278;
  transition: .3s;
}

.help-item:hover .help-icon::after {
  left: 0px;
}

.help-item--content p {
  font-size: 16px;
  line-height: 20px;
  color: #D9D9D9;
  margin-bottom: 0px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 100%;
}


.anim-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000;
  transition: .3s;
  font-size: 14px;
  font-weight: bold;
}

.anim-link span.icon {
  font-size: 20px;

}

.help-item:hover a.anim-link {
  transform: translate(-50%, -5px);
  opacity: 1;
  visibility: visible;
  transition: .9s;
}

.help-item:hover .help-item--content p {
  color: #000;
}

.help-item a.anim-link {
  transform: translate(-50%, 10px);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  bottom: 9px;
  z-index: 11;
  color: #000;
  transition: .5s;
  font-size: 14px;
  font-weight: bold;
}


/* ======== help-area style end ============ */

/* ======== sections style start ============ */


.work-area {
  padding: 75px 0px 75px;
}

.work-area .section-title {
  margin-bottom: 70px;
}

.work-item--img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
  height: 253px;
}

.work-item--img img {
  width: 100%;
  height: 100%;
  transition: .3s;
}

.work-item--content {
  padding: 16px 20px 30px;
}

.work-item--content h4 span.year {
  margin: 0 0 0 auto;
  display: inline-block;
  font-size: 18px;
  font-weight: normal;
}

.work-item--content h4 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}

.work-item--content ul li {
  color: var(--body-color);
  font-size: 13px;
  line-height: 1.5;
}

.work-item--content ul {
  display: block;
  margin-bottom: 12px;
}

.work-item--desc p {
  font-size: 14px;
  line-height: 1.5;
  font-weight: normal;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.work-item--content a.link {
  font-size: 13px;
}

.work-item--content a.link span.icon img {
  max-width: 12px;
  top: -1px;
  position: relative;
}

.work-item--desc {
  margin-bottom: 24px;
}

.work-item:hover .work-item--img img {
  transform: scale(1.03);
}

.work-item {
  transition: .3s;
  border-radius: 20px;
}

.work-item:hover {
  background-color: #171819;
  box-shadow: 0px 5px 40px rgba(25, 187, 194, 0.05);
}

.work-bottom {
  margin-top: 70px;
}

/* ======== sections style end ============ */

/* ======== indestries-area style start ============ */


.industrise-area {
  padding: 75px 0px 75px;
}

.industrise-area .section-title {
  margin-bottom: 80px;
}

.ind-item {
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 40px 20px 40px 25px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: .5s;
  height: 100%;
}

.ind-item:hover {
  background-color: var(--primary);
  transform: translateY(-15px);
  box-shadow: 0px 4px 40px rgba(25, 187, 194, 0.3);
}

.ind-item:hover::after {
  width: 400px;
  height: 400px;

}

.ind-item.ind-item--dis {
  border: 3px solid #19BBC238;
  border-radius: 0px;
  border-bottom: 6px solid #19BBC2;
}


.ind-item--icon {
  height: 58px;
  margin-bottom: 16px;
  display: flex;
  gap: 30px;
  align-items: center;
}

.ind-item:hover .ind-item--icon svg path {
  fill: #fff;
}

.ind-item--icon.icon-circle {
  position: relative;
}

.ind-item--icon.icon-circle::after {
  position: absolute;
  left: 21px;
  top: 10px;
  width: 30px;
  height: 30px;
  background: var(--primary);
  content: "";
  border-radius: 50%;
  z-index: -1;
}

.ind-item--icon img {
  max-width: 100%;
}

.ind-item--icon h4 {
  font-weight: 600;
  margin-bottom: 21px;
  transition: .3s;
  transform: translateX(30px);
  opacity: 0;
  visibility: hidden;
  color: #fff;
}

.ind-item:hover .ind-item--icon h4 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
}

.ind-item:hover .ind-item--content h4 {
  height: 0px;
  opacity: 0;
  line-height: 0;
  transition: all .3s;
  margin: 0px;
}

.ind-item--content h4 {
  font-weight: 600;
  margin-bottom: 21px;
}

.ind-item--content p {
  margin-bottom: 0px;
  font-size: 16px;
  line-height: 19px;
}

.ind-item:hover .ind-item--content p {
  color: #fff;
}

.industrise-bottom {
  padding-top: 110px;
}

.ind-item a.anim-link {
  transform: translate(0px, 40px);
  opacity: 0;
  visibility: hidden;
  transition: .5s;
  position: absolute;
  right: 20px;
}

.ind-item:hover a.anim-link {
  transform: translate(0px, 26px);
  opacity: 1;
  visibility: visible;
  transition: .5s;
}

.anim-link:hover span.icon {
  transform: translateX(6px);
}

.anim-link span.icon {
  transition: .3s;
}



/* ======== indestries-area style end ============ */

/* ======== part=Story style start ============ */


.partStory-inner {
  max-width: 1089px;
  margin: 0 auto;
}

.lead-text {
  font-size: 23px;
  line-height: 1.4;
}

.partStory-content p {
  text-align: justify;
  margin-bottom: 27px;
  color: #D9D9D9;
}

.partStory .section-title {
  margin-bottom: 58px;
}

.partStory-content--btn a.btn {
  color: #292835;
}

.partStory-img img {
  max-width: 100%;
}

.partStory-img-box {
  position: relative;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #17191A;
}

.pulse-circle {
  border-radius: 50%;
  background-color: #19BBC236;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  animation: scaleIn 4s infinite linear;
  z-index: -1;
  backdrop-filter: blur(20px);
}

@keyframes scaleIn {
  from {
    transform: scale(0.5, 0.5);
    opacity: 1;
  }

  to {
    transform: scale(1.5, 1.5);
    opacity: 0;
  }
}

/* ======== part=Story style end ============ */

/* ======== news-letter-area style start ============ */


.newsletter-inner {
  max-width: 1026px;
  margin: 0 auto;
}

.newsletter-content-text p {
  color: #8C8C8C;
  font-size: 22px;
  line-height: 1.4;
}

.newsletter-content-text h2 {
  margin-bottom: 24px;
}

.newsletter-content-text {
  margin-bottom: 45px;
}

.newsletter-content ul li a {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 20px;
  font-weight: bold;
  color: #D9D9D9;
  text-decoration: none;
  line-height: 1.6;
  transition: .3s;
}

.newsletter-content ul li a span {
  transition: .3s;
}

.newsletter-content ul li a span.icon {
  flex: 0 0 auto;
  width: 70px;
  height: 70px;
  background: #19BBC21A;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-content ul li a span.icon svg path {
  transition: .3s;
}

.newsletter-content ul li a:hover span.icon svg path {
  stroke: var(--primary);
}

.newsletter-content ul li a span.small {
  font-size: 16px;
  font-weight: 500;
  display: block;
}

.newsletter-content ul li a:hover span.text {
  color: var(--primary);
}

.newsletter-content ul li:not(:last-child) {
  padding-bottom: 40px;
}



.newsletter-form {
  max-width: 412px;
  margin: 0 auto;
  border: 1px solid #FFFFFF1A;
  padding: 34px 35px 40px;
}

.input-box--input input {
  width: 100%;
  height: 40px;
  border-radius: 3px;
  background: transparent;
  border: 1px solid #FFFFFF1A;
  padding: 0px 17px;
  padding-right: 6px;
  font-size: 14px;
  color: #FFFFFF4D;
}

.input-box--input input::placeholder {
  font-size: 14px;
  color: #FFFFFF4D;
}

.input-box {
  margin-bottom: 18px;
}

.input-box label {
  font-size: 14px;
  color: #FFF9;
  display: block;
  margin-bottom: 5px;
}

.input-box textarea {
  width: 100%;
  height: 130px;
  border-radius: 3px;
  background: transparent;
  border: 1px solid #FFFFFF1A;
  padding: 11px 17px;
  padding-right: 17px;
  padding-right: 6px;
  font-size: 14px;
  color: #FFFFFF4D;
  resize: none;
}

.input-box textarea::placeholder {
  font-size: 14px;
  color: #FFF9;
}

.newsletter-form {
  background-image: linear-gradient(to bottom, #0000001f, #191B1D1F);
}



.input-box--select .nice-select {
  width: 100%;
  height: 40px;
  line-height: 40px;
  border-radius: 3px;
  background: transparent;
  border: 1px solid #FFFFFF1A;
  padding: 0px 17px;
  padding-right: 17px;
  padding-right: 6px;
  font-size: 14px;
  color: #FFFFFF4D;
}

.input-box--select .nice-select::after {
  border-color: #19BBC2 !important;
  width: 7px;
  height: 7px;
}

.input-box--select .nice-select ul.list {
  background-color: #222629;
  width: 100%;
  border-radius: 3px;
}

.input-box--select .nice-select ul.list li.option {
  font-size: 12px;
  color: #fff;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #162122;
}



/* ======== news-letter-area style end ============ */

/* ======== footer style start ============ */


.footer-content h4 a img {
  max-width: 148px;
  top: -16px;
  position: relative;
}



.footer-content p {}

.footer-content p {
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 5px;
  font-weight: 200;
}

.footer-menu h6 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-menu ul {
  column-count: 2;
}

.footer-menu ul li a {
  font-size: 14px;
  text-decoration: none;
  color: #fff9;
  display: block;
  padding: 10px 0px;
  line-height: 28px;
}

.footer-menu ul li:hover a {
  color: var(--primary);
}

.footer-location h6 {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 18px;
}

.f-location-item p {
  line-height: 34px;
  margin-bottom: 0px;
  font-size: 14px;
}

.f-location-item {
  margin-bottom: 18px;
}

.footer-contact h6 {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 23px;
  color: #FFFFFF99;
}

.social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  margin-bottom: 42px;
}

.social a {
  display: block;
  text-decoration: navajowhite;
}

.social a:hover svg path {
  fill-opacity: 1;
  fill: var(--primary);
}

.careers>a {
  text-decoration: none;
  color: var(--body-color);
  font-size: 14px;
  line-height: 28px;
}

.careers a.link {
  font-weight: 300;
  font-size: 14px;
  text-transform: inherit;
  margin-bottom: 8px;
}

.footer {
  padding: 75px 0px 50px;
}

.footer-contact {
  max-width: 190px;
  margin: 0 auto;
}

.footer-location .f-location-item:last-child {
  margin-bottom: 0px;
}

.f-location-item {
  margin-bottom: 54px;
}

/* ======== footer style end ============ */


/* =============================
== Service- pages
================================*/



/* ========= Hero-Service-area ========== */
.hero-service {
  min-height: 804px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-area.hero-service .hero-content {
  width: 100%;
  max-width: 100%;
}

.hero-area.hero-service .hero-content p {
  font-size: 24px;
  line-height: 1.5;
  max-width: 767px;

}

/* ========= Hero-Service-area--end ========== */


/* ========= Vertual-realitys-influence-area ========== */

.vr-influence.section-padding {
  padding-top: 110px;
}

.vr-influence .section-title {
  margin-bottom: 85px;
  text-align: center;
}

.vr-influenc--inner {
  max-width: 1287px;
  margin: 0 auto;
  padding: 0px 15px;
}

.vr-influenc--inner>div {
  margin-left: -20px;
  margin-right: -20px;
}

.vr-influenc-item {
  flex: 0 0 auto;
  width: 25%;
  padding: 0px 20px;
  text-align: center;
  max-width: 305px;
}

.vr-influenc-item p {
  color: #D9D9D9;
  font-size: 20px;
  line-height: normal;
  font-weight: 100;
}

.vr-influenc-item p b {
  font-weight: 600;
}

.vr-influenc-item h3 {
  font-size: 40px;
  font-weight: 900;
  color: var(--primary);
}

.useCase-pattern {
  position: absolute;
  left: 18%;
  top: -10%;
  z-index: -1;
  max-width: 100%;
}

/* ========= Vertual-realitys-influence-area--end ========== */


/* ========= Use-case-area ========== */


.useCase-area .section-title {
  margin-bottom: 100px;
}

.useCase-content h3 {
  font-size: 30px;
  font-weight: bold;
  line-height: 48px;
  margin-bottom: 23px;
  position: relative;
  padding-top: 16px;
}

.useCase-content h3::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
  content: "";
}

.useCase-content {
  max-width: 502px;
}

.useCase-content p {
  color: #FFFFFF66;
  font-weight: 300;
  line-height: 32px;
  margin-bottom: 0px;
}

.useCase-img {
  max-width: 532px;
  width: 100%;
  height: 342px;
}

.useCase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.useCase-item--row:not(:last-child) {
  margin-bottom: 115px;
}

.useCase-item--row {
  align-items: center;
}

.useCase-item--row:nth-child(even) {
  flex-direction: row-reverse;
}

.useCase-item--row:nth-child(2n) .useCase-item--content {
  margin: 0 0 0 auto;
}

.useCase-item--row:nth-child(even) .useCase-content {
  margin: 0 0 0 auto;
}

.useCase-item--row:nth-child(2n+1) .useCase-img {
  margin: 0 0 0 auto;
}

.rtc-inner {
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}

.rtc-inner h2 {
  font-size: 40px;
  line-height: 48px;
  color: #D9D9D9;
  margin-bottom: 20px;
}

.rtc-inner p {
  font-size: 24px;
  font-weight: 200;
  margin-bottom: 13px;
}

.rtc-inner {
  align-items: center;
}

.rtc-inner a.btn {
  flex: 0 0 auto;
  width: 274px;
  font-size: 24px;
  padding-left: 0px;
  padding-right: 0px;
}


/* ========= Use-case-area--end ========== */


/* ========= vr-projects-area ========== */

.vrProject .section-title {
  margin-bottom: 75px;
}

.vrProject .section-title h2 .icon {
  transition: .3s;
}

.vrProject .section-title h2:hover .icon {
  transform: translateX(20px);
}

.vrProject .section-title h2 a {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}

.vrProject-item {
  height: 368px;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  display: block;
  text-decoration: none;
  position: relative;
}

.vrProject-item:hover::after {
  opacity: 1;
  box-shadow: 0px 10px 30px rgba(0, 255, 241, 0.1);
}

.vrProject-item::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(to top, #19bcc225, #19bcc200);
  backdrop-filter: blur(2px);
  transition: .3s;
  opacity: 0;
}

.vrProject-item span {
  display: inline-flex;
}

.vrProject-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

.vrProject-info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.sw-angles {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 42px;
}

.sw-angles button {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: none;
  background: #153638;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
}

.sw-angles button:hover {
  background: #0A2A2D;
}

/* ========= vr-projects-area--end ========== */

/* =============================
== Service- pages===end
================================*/










/* =============================
== Service- pages
================================*/



/* ========= Hero-industries-area ========== */

.hero-ind-content h1 {
  font-size: 48px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-ind-infos {
  max-width: 720px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.ind-info-item {
  max-width: 286px;
  height: 286px;
  display: inline-flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #D9D9D9;
  line-height: normal;
  position: relative;
}

.ind-info-item.bg-primary-blur::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  filter: blur(20px);
  background: #19BBC275;
  content: "";
}

.ind-info-item h3 {
  position: relative;
  z-index: 1;
}

.ind-info-item.bg-white-blur::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #ffffff4D;
  border-radius: 50%;
  filter: blur(20px);
}

.hero-ind-content h4 {
  font-weight: 100;
  line-height: 1.5;
  text-align: center;
}

.hero-ind-content h4 b {
  font-weight: 600;
}

/* ========= Hero-industries-area--end ========== */


/* ========= benifit-area ========== */


.benifits-area .section-title {
  margin-bottom: 80px;
}

.benifits-area .section-title h2 {
  margin-bottom: 40px;
}

.benifits-area .section-title p {
  line-height: 1.5;
  font-weight: normal;
  font-size: 23px;
}

.benifit-item-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  background-image: url('../imgs/industries/icon-bg.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  position: relative;
}

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

.benifit-item-content {
  max-width: 290px;
  margin: 0 auto;
}

.benifit-item-content h4 {
  line-height: 1.5;
  margin-bottom: 15px;
}

.benifit-item-content p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 0px;
}


.benifits-row div:not(:last-child) {
  border-right: 1px solid #333333;
}


.benifit-separator {
  margin: 50px 0px;
  border-top: 1px solid #333333;
}

.benifit-item.benifit-item-lg .benifit-item-content {
  max-width: 485px;
}


.benifit-item-icon::after {
  width: 40px;
  height: calc(100% + 100px);
  background: #fff;
  content: "";
  opacity: 0.1;
  transform: rotate(31deg) translate(calc(100% + 40px), 0px);
  right: 0px;
  bottom: 0px;
  position: absolute;
  transition: .5s;
}

.benifit-item:hover .benifit-item-icon::after {
  transform: rotate(31deg) translate(calc(-100% - 40px), 0px);
}

/* ========= benifit-area--end ========== */


/* ========= benifit-area-area ========== */


.step-item {
  background: linear-gradient(363deg, #13141500 0%, #1416175c 100%);
  border-radius: 20px;
  height: 100%;
}



.step-item-header {
  padding: 16px 20px 16px 37px;
  border-bottom: 1px solid #19BBC2;
  min-height: 110px;
  display: flex;
  align-items: center;
}

.step-item-body {
  padding: 50px 40px 70px;
}

.step-item-body p {
  margin-bottom: 0px;
  font-size: 18px;
  line-height: 1.5;
  color: #8C8C8C;
}

.step-item-header h5 {
  margin-bottom: 0px;
  color: #fff;
  line-height: 1.4;
}

.step-area .section-title {
  margin-bottom: 80px;
}



/* ================= */
.step-item {
  width: 100%;
  background: radial-gradient(150rem circle at 0 0, var(--primary), transparent 0%);
  position: relative;
  transition: all 0.15s;
  border: 1px solid;
  border-image-source: linear-gradient(180deg, #1F1F1F 0%, rgba(31, 31, 31, 0) 100%);
  border-image-slice: 1;
  border-radius: 0px;
  background: linear-gradient(to bottom, #131415 0%, #141617 100%);
  /* height: 100%; */
}


.step-item:hover {
  transform: scale(0.97);
}

.step-item::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: radial-gradient(60rem circle at var(--xPos) var(--yPos), rgba(0, 255, 241, 0.1), transparent 35%);
  opacity: 0;
  transition: all 0.15s ease-in-out;
}

.step-item:hover::before {
  opacity: 1;
}

/* ========= benifit-area-area--end ========== */



/* =============================
== Service- pages===end
================================*/





/* =============================
== Projects pages===start
================================*/



/* =========hero-projects-area ========== */
.hero-area.hero-projects .hero-content p {
  font-size: 24px;
  line-height: 1.5;
}

.hero-area.hero-projects .hero-content {
  margin-bottom: 120px;
}

/* =========hero-projects-area--end ========== */



/* =========esc-area-area ========== */

.esc-area .section-title {
  margin-bottom: 90px;
}

.nav.esc-nav {
  flex-direction: column;
  align-items: stretch;
  text-align: start;
  gap: 30px;
}

.nav.esc-nav button {
  background: #FFFFFF0D;
  padding: 18px 30px;
  text-align: start;
  font-size: 17px;
  border-radius: 7px;
  color: #FFFFFF99;
  font-weight: normal;
  border-right: 3px solid transparent;
  position: relative;
  z-index: 1;
  padding-right: 0px;
}

.nav.esc-nav button.active {
  background: #19BBC20D;
  border-color: #19BBC2;
  color: #fff;
}

.nav.esc-nav button:hover {
  background: #19BBC20D;
  color: #fff;
}



.nav.esc-nav button::after {
  position: absolute;
  left: 50%;
  top: 100%;
  height: 30px;
  width: 1px;
  height: 30px;
  content: "";
  border-left: 1px dashed var(--primary);
  opacity: 0.4;
}

.nav.esc-nav button:last-child::after {
  display: none;
}

.esc-brand-img {
  display: flex;
  align-items: center;
  justify-items: center;
  height: 115px;
  width: 110px;
  margin-bottom: 21px;
}

.esc-brand img {
  max-height: 100%;
  text-align: center;
  max-width: 100%;
  width: 100%;
}

.esc-brand {
  color: #FFFFFF99;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0px;
  transition: all .3s;
  filter: grayscale(1);
}

.esc-brand:hover {
  filter: grayscale(0);
}

.work-filter {
  background: transparent;
  border: none;
  font-size: 25px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* =========esc-area-area--end ========== */


/* =============================
== Section- pages===end
================================*/





/* =============================
== About us pages===start
================================*/



/* =========about-hero-area ========== */

.hero-area.hero-about .hero-wrapper {
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  align-items: center;
}

.hero-area.hero-about .hero-content {
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.hero-area.hero-about .hero-logos {
  flex-direction: row;
}

.hero-area.hero-about {
  padding-top: 375px;
}

.hero-area.hero-about .hero-content {
  margin-bottom: 60px;
}

.hero-area.hero-about .hero-content h1 {
  margin: 0px;
}


.hero-area.hero-about .hero-content h1 span.colored-bg {
  background: var(--primary);
  color: #191C1D;
  padding: 0px 19px;
  display: inline-block;
  margin-top: 9px;
}

/* =========about-hero-area--end ========== */

/* =========eleveating-area ========== */


.elevating-area {
  padding-top: 130px;
}

.elevating-area .section-title p {
  line-height: 1.5;
  font-size: 24px;
}

.elevating-area .section-title {
  margin-bottom: 100px;
}

.elevating-item {
  position: relative;
  text-align: center;
  z-index: 1;
  width: 100%;
  height: 250px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.elevating-item h3 {
  font-size: 50px;
  font-weight: 800;
}

.elevating-item p {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 200;
}

.elevating-item::after {
  position: absolute;
  left: 0px;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #19BBC246;
  z-index: -1;
  border-radius: 50%;
  filter: blur(23px);
}

/* =========eleveating-area--end ========== */

/* =========whOctave-area ========== */


.elevating-area {
  padding-top: 130px;
}

.elevating-area .section-title p {
  line-height: 1.5;
  font-size: 24px;
}

.elevating-area .section-title {
  margin-bottom: 100px;
}

.elevating-item {
  position: relative;
  text-align: center;
  z-index: 1;
  width: 100%;
  height: 250px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.elevating-item h3 {
  font-size: 50px;
  font-weight: 800;
}

.elevating-item p {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 200;
}

.elevating-item::after {
  position: absolute;
  left: 0px;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #19BBC246;
  z-index: -1;
  border-radius: 50%;
  filter: blur(23px);
}

.whOcatav-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.whOctave-item {
  background: rgba(62, 60, 60, 0.4);
  border-radius: 20px;
  padding: 37px 26px 40px 40px;
  position: relative;
  z-index: 1;
}

.whOctave-item h3 {
  margin-bottom: 24px;
  color: #fff;
}

.whOctave-item p {
  color: #D0D0D0;
  margin-bottom: 0px;
}

.whOctave-items {
  height: 100%;
  justify-content: space-between;
  flex-direction: column;
}

.whOctave-item::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60%;
  height: 80%;
  content: "";
  background: #19BBC23b;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(81px);
  opacity: 0;
  transition: .5s;
}

.whOctave-item:hover::after {
  opacity: 1;
}

.whOctave-area .section-title {
  margin-bottom: 79px;
}

.whOcatav-img {
  height: 100%;
}

.whOcatav-img img {
  border-radius: 20px;
}

.whOctave-items div:not(:last-child) {
  margin-bottom: 20px;
}

/* =========whOctave-area--end ========== */

/* =========team-area-area ========== */


.team-area .section-title {
  margin-bottom: 80px;
}

.team-area .section-title p {
  line-height: 1.5;
  font-size: 24px;
}

.team-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px 198px;
  width: 100%;
  justify-self: left;
}

.team-item {
  flex: 0 0 auto;
  width: 100%;
  max-width: 240px;
}

.team-item-img {}

.team-item-img {
  width: 100%;
  height: 240px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 15px;
}

.team-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team-item-content h4 {
  font-size: 24px;
  line-height: 27px;
  font-weight: 600;
}

.team-item-content p {
  font-size: 18px;
  color: #A6A6A6;
  line-height: 24px;
  margin-bottom: 18px;
}

.team-item-content .social {
  justify-content: flex-start;
  gap: 15px;
}


/* =========team-area-area--end ========== */


.contact-page.section-padding {
  padding-top: 167px;
}







/* =============================
== About us pages===end
================================*/





/* =============================
== Rida-vr pages===start
================================*/



/* =========riad-content-area ========== */



.riad-content {
  padding: 155px 0px 70px;
}

.riad-video {
  height: 696px;
  position: relative;
  margin-bottom: 42px;
}

.riad-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

.play-video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.riad-header-title h1 {
  margin-bottom: 0px;
}

.riad-header-title a.btn {
  border-radius: 36px;
  gap: 10px;
  padding: 16px 21px;
  font-size: 17px;
}

.riad-header-title a.btn:hover {
  color: #fff;
}

.riad-header-title {
  margin-bottom: 20px;
}

.riad-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.r-meta-item {
  font-size: 16px;
  line-height: 18px;
  color: #A6A6A6;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid #4F4F4F;
  border-radius: 39px;
  font-size: 17px;
}

.riad-header {
  margin-bottom: 50px;
}

.riad-desc {
  background: #151718;
  border-radius: 20px;
  padding: 50px 50px;
}

.desc-top h4 {
  font-size: 22px;
  font-weight: normal;
  margin-bottom: 11px;
}

.desc-top p {
  font-size: 18px;
  line-height: 1.5;
  color: #8C8C8C;
}

.desc-top p:last-child {
  margin-bottom: 0px;
}

.desc-box {
  border: 1px solid #2C2C2C;
  border-radius: 12px;
  padding: 40px 40px;
  margin-bottom: 30px;
}

.proDesc-infos {
  margin-left: -40px;
  margin-right: -40px;
}

.proDesc-item {
  flex: 0 0 auto;
  width: 25%;
  padding: 0px 40px;
  position: relative;
}

.proDesc-item:not(:last-child) {
  border-right: 1px solid #1F1F1F;
}

.proDesc-item span {
  font-size: 18px;
  color: #8C8C8C;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}


.proDesc-item p {
  color: #fff;
  font-size: 20px;
  margin-bottom: 0px;
}

.desc-gallery-wrapper {
  max-width: 838px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 60px;
}

.desc-gallery h5 {
  margin-bottom: 28px;
  font-weight: normal;
}

.descGallery-item img {
  width: 100%;
  height: 189px;
  object-fit: cover;
  object-position: center;
}

.desc-teamProject h5 {
  font-weight: normal;
  margin-bottom: 20px;
}

.descTeamProject {
  border: 1px solid #2C2C2C;
  padding: 24px 27px;
  border-radius: 20px;
  height: 100%;
}

.descTeamProject h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.descTeamProject h5 {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 9px;
}

.descTeamProject p {
  margin-bottom: 0px;
  font-weight: 200;
  font-size: 18px;
}

.desFeatures {
  background: #19BBC22b;
  padding: 33px 48px 20px;
  border-radius: 12px;
}

.desFeatures h5 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 12px;
}

.desFeatures ul li {
  color: #D9D9D9;
  font-size: 14px;
  gap: 30px;
  display: flex;
  align-items: center;
}

.gd-btn {
  background: linear-gradient(180deg, #1A1A1A 0%, rgba(26, 26, 26, 0) 100%);
  border-radius: 50px;
  padding: 14px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.desc-tecUsed p {
  margin-bottom: 0px;
  font-size: 20px;
  color: #fff;
}

.desFeatures ul li span {
  width: 32px;
  height: 32px;
  background: #DEDEDE;
  font-size: 18px;
  font-weight: 500;
  color: #3C3C43;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
}

.desFeatures ul li {
  padding: 10px 0px;
}









/* =========riad-content-area--end ========== */










/* =============================
== Rida-vr pages===end
================================*/





/* =============================
== Careers pages===start
================================*/



/* =========careers-hero-area ========== */


.hero-area.hero-career .hero-content {
  text-align: center;
  max-width: 780px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
  margin: 0 auto;
}

.hero-area.hero-career .hero-content h1 {
  margin-bottom: 0px;
}

.hero-area.hero-career {
  padding: 273px 0px 240px;
}

/* =========careers-hero-area--end ========== */


/* =========lifeoctave-area ========== */

.lifeOctave.section-padding {
  padding-top: 100px;
}

.lifeOctave .section-title {
  margin-bottom: 60px;
}

.lifeOctave-content p {
  font-size: 24px;
  line-height: 1.5;
  color: #D9D9D9;
  font-weight: 200;
  margin-bottom: 75px;
}

.lifeOctave-content p b {
  font-weight: 600;
}

.lifeOctave-link {
  padding: 0px 16px;
  border: 1px solid #19BBC2;
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  color: #D9D9D9;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.lifeOctave-img img {
  max-width: 100%;
  border-radius: 20px;
}

/* =========lifeoctave-area--end ========== */


/* =========perks-area-area ========== */


.perks-content .icon img {
  max-width: 100%;
}

.perks-content .icon {
  margin-bottom: 50px;
}

.perks-content h2 {
  font-size: 58px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0px;
}

.perks-content p {
  font-size: 22px;
  line-height: 1.5;
  font-weight: normal;
  color: #7C7C7C;
  max-width: 460px;
  margin-bottom: 0px;
}

.perks-content {
  max-width: 509px;
}

.perks-accordion .accordion-item {
  border-radius: 0px !important;
  background: transparent;
  border: none;
  border-bottom: 1px solid #19BBC2;
}

.perks-accordion .accordion-button {
  background: transparent !important;
  font-size: 22px;
  color: #D9D9D9;
  padding: 19px 0px;
}

.perks-accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
  border-bottom: 1px solid #19BBC2;
}

.perks-accordion .accordion-body {
  padding: 22px 0px;
}

.perks-accordion .accordion-body p {
  font-size: 18px;
  line-height: normal;
  color: #7C7C7C;
  margin-bottom: 0px;
}

.accordion-item:first-of-type .accordion-button:focus {
  outline: none !important;
  box-shadow: none;
}

/* =========perks-area-area--end ========== */


/* =========Section-area ========== */


.interview-process.section-padding {
  padding: 140px 0px 140px;
}

.interview-process .section-title {
  margin-bottom: 80px;
}

.process-wrapper {
  max-width: 1360px;
  margin: 0 auto;
}

.process-item span.count {
  font-size: 50px;
  font-weight: normal;
  color: #fff;
  background: var(--primary);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* margin: ; */
  width: 54px;
  height: 54px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.process-item {
  text-align: center;
  background: #fff;
  height: 100%;
  padding: 15px 38px;
  border-radius: 7px;
}

.process-item p {
  margin-bottom: 0px;
  font-size: 21px;
  color: #7C7C7C;
  line-height: normal;
}

.process-item h3 {
  font-size: 32px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 11px;
}

.section-title p {
  font-size: 24px;
  line-height: 1.5;
}

/* =========Section-area--end ========== */

/* =========Section-area ========== */


.openPosition-area .section-title {
  margin-bottom: 45px;
}

.position-items {
  max-width: 1006px;
  margin: 0 auto;
  padding: 50px 50px;
  border: 1px solid #FFFFFF29;
  border-radius: 20px;
  margin-bottom: 50px;
}

.posTitle-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.posTitle-content .icon {
  flex: 0 0 auto;
  width: 96px;
}

.posTitle-content .icon img {
  max-width: 100%;
}

.title-content h4 {
  line-height: 1.5;
  margin-bottom: 5px;
  font-weight: 600;
  color: #fff;
}

.title-content p {
  margin-bottom: 11px;
  line-height: normal;
  font-size: 18px;
}

.applay-btn {
  padding: 10px 10px 10px 24px;
  border: 1px solid #1F1F1F;
  border-radius: 40px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  font-size: 18px;
  color: #FFFFFF;
}

.applay-btn span.icon {
  padding: 10px 20px;
  border-radius: 24px;
  background: #1A1A1A;
}

.position-title {
  margin-bottom: 50px;
}

.applay-btn:hover {
  background: #1F1F1F;
}

.position-header ul li {
  font-size: 18px;
  color: #FFFFFF;
  line-height: 1.5;
  display: inline-flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0px;
}

.position-header ul li span.icon {
  flex: 0 0 auto;
  width: 28px;
}

.position-header ul li span.icon img {
  max-width: 100%;
}

.position-header {
  padding-bottom: 40px;
}

.position-infoBox {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  border: 1px solid #1F1F1F;
  border-radius: 20px;
  padding: 45px 50px;
  margin-bottom: 30px;
  background-image: url('../imgs/careers/jobdesc-bg.png');
}

.position-infoBox h4 {
  font-weight: normal;
  color: #fff;
  font-size: 22px;
  margin-bottom: 14px;
}

.position-infoBox p {
  font-size: 18px;
  line-height: 1.5;
  color: #8C8C8C;
  margin-bottom: 19px;
}

.posMeta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #808080;
  font-size: 18px;
  line-height: 1.5;
  border: 1px solid #1F1F1F;
  padding: 12px 20px;
  border-radius: 30px;
}

.list-dotted li {
  font-size: 18px;
  line-height: 1.5;
  color: #8C8C8C;
  position: relative;
  padding: 7px 0px;
  padding-left: 20px;
}

.list-dotted li::after {
  position: absolute;
  left: 0;
  top: 19px;
  width: 5px;
  height: 5px;
  background: #8C8C8C;
  content: "";
  border-radius: 50%;
}

.position-desc {
  padding-bottom: 40px;
}

.show-moreLess {
  background: transparent;
  border: none;
  color: #666666;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.show-moreLess span.icon {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('../imgs/careers/btn-icon-bg.png');
}


.show-moreLess[aria-expanded="false"] span.icon svg {
  transform: rotate(180deg);
}

.show-moreLess[aria-expanded="false"] span.text-less {
  display: none;
}

.show-moreLess[aria-expanded="false"] span.text-less {
  display: none;
}

.show-moreLess[aria-expanded="true"] span.text-less {
  display: block;
}

.show-moreLess[aria-expanded="true"] span.text-more {
  display: none;
}


.input-box--file input {
  display: none;
}

.input-box--file label {
  width: 100%;
  height: 40px;
  border-radius: 3px;
  background: transparent;
  border: 1px solid #FFFFFF1A;
  padding: 0px 17px;
  padding-right: 17px;
  padding-right: 17px;
  font-size: 14px;
  color: #FFFFFF4D;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.premier-verfied {
  float: right; 
  margin-top: -20px;
  text-align: right;
}

.premier-verfied-img {
  width: 60%;
}

/* =========Section-area--end ========== */

/* =========Section-area ========== */
/* =========Section-area--end ========== */


/* =========Section-area ========== */
/* =========Section-area--end ========== */










/* =============================
== Careers pages===end
================================*/




/* =============================
== Section- pages===start
================================*/



/* =========Section-area ========== */
/* =========Section-area--end ========== */










/* =============================
== Section- pages===end
================================*/