/* Default Css */
html::-webkit-scrollbar, body::-webkit-scrollbar {
  width: 10px;
}
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
  background: #c1c1c1;
}
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
html::-webkit-scrollbar-thumb:active, body::-webkit-scrollbar-thumb:active {
  background: #F58220;
}

body {
  color: #333333;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

img {
  max-width: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
a:active, a:hover {
  text-decoration: none;
}

button,
.btn {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
button:active, button:hover, button:focus,
.btn:active,
.btn:hover,
.btn:focus {
  outline: 0;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.form-control:focus {
  color: #333333;
  background-color: transparent;
  outline: 0;
  box-shadow: none;
}

.btn:hover,
.btn:focus {
  outline: 0;
  box-shadow: none;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "navigo", sans-serif;
  color: #333333;
  font-weight: 700;
  margin-bottom: 20px;
}

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

h1 {
  font-size: 48px;
  line-height: 1.3;
}

h2 {
  font-size: 36px;
  line-height: 1.3;
}

h3 {
  font-size: 28px;
  line-height: 1.3;
}

h4 {
  font-size: 24px;
  line-height: 1.2;
}

h5 {
  font-size: 20px;
  line-height: 1.2;
}

h6 {
  font-size: 16px;
  line-height: 1.2;
}

hr {
  margin: 20px 0;
  border-color: #352323;
}

ol {
  list-style: decimal;
}

p:last-child {
  margin-bottom: 0;
}

/* Form */
label {
  color: #ddd;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}

*::-moz-selection {
  background: #F58220;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #F58220;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #F58220;
  color: #fff;
  text-shadow: none;
}

/* Placeholder */
*::-moz-placeholder {
  color: #333333;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #333333;
  font-size: 16px;
  opacity: 1;
}

/* Button */
.btn-theme {
  color: #fff;
  border-color: #F58220;
  background: #F58220;
}
.btn-theme:hover {
  background: #F58220;
  color: #fff;
  border-color: #F58220;
}

.btn-rounded {
  border-radius: 100% !important;
}

.btn-square {
  border-radius: 0 !important;
}

/* Bg Color */
.bg-gray {
  background: #ddd;
}

.bg-white {
  background: #fff;
}

.bg-black {
  background: #000;
}

.bg-theme {
  background: #F58220;
}

.bg-dark {
  background-color: #1E1E1E !important;
}

.bg-off-white {
  background-color: #F9F8F7;
}

.bg-off-white-2 {
  background-color: #f1f8ff;
}

.bg-blue {
  background-color: #4c87ff !important;
}

.bg-yellow {
  background-color: #fea116 !important;
}

.bg-pink {
  background-color: #fc4557 !important;
}

.bg-egg-blue {
  background-color: #1cb5a3 !important;
}

.bg-purple {
  background-color: #5851a7 !important;
}

/* Text Color */
.gray-color {
  background: #ddd;
}

.white-color {
  color: #fff;
}

.black-color {
  color: #000;
}

.theme-color {
  color: #F58220;
}

/* Others Common Css Here :) */
.table-row {
  display: table;
  width: 100%;
  height: 100%;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

.separator {
  border-top: 1px solid #f2f2f2;
}

.bg-fix {
  background-position: 0 0;
  background-size: cover;
  background-repeat: no-repeat;
}

[data-overlay] {
  position: relative;
  z-index: 1;
}
[data-overlay]::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: -1;
}

[data-overlay=light]::before {
  background-color: #fff;
}

[data-overlay=dark]::before {
  background-color: #000a2d;
}

[data-overlay=theme]::before {
  background-color: #F58220;
}

[data-opacity="1"]::before {
  opacity: 0.1;
}

[data-opacity="2"]::before {
  opacity: 0.2;
}

[data-opacity="3"]::before {
  opacity: 0.3;
}

[data-opacity="4"]::before {
  opacity: 0.4;
}

[data-opacity="5"]::before {
  opacity: 0.5;
}

[data-opacity="6"]::before {
  opacity: 0.6;
}

[data-opacity="7"]::before {
  opacity: 0.7;
}

[data-opacity="8"]::before {
  opacity: 0.8;
}

[data-opacity="9"]::before {
  opacity: 0.9;
}

@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1290px;
  }
}
.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
  padding-right: var(--bs-gutter-x, 15px);
  padding-left: var(--bs-gutter-x, 15px);
}

.row {
  --bs-gutter-x: 30px;
}

.slide-bar {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: -330px;
  width: 300px;
  padding: 25px 20px;
  height: 100%;
  display: block;
  background-color: #333;
  z-index: 1020;
  -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
}

.slide-bar.show {
  right: 0;
}

.close-mobile-menu a {
  color: #fff;
  position: relative;
  z-index: 2;
  font-size: 16px;
  top: -10px;
  left: 0;
}
.close-mobile-menu a:hover {
  color: #ff0000;
}

.on-side {
  overflow: hidden;
}

.body-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  opacity: 0;
  display: none;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.body-overlay.active {
  opacity: 1;
  display: block;
}

.side-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.side-mobile-menu ul li a {
  padding: 13px 0;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
}
.side-mobile-menu ul li a:hover {
  color: #F58220;
  padding-left: 5px;
}
.side-mobile-menu ul li a[aria-expanded=true] {
  color: #F58220;
}
.side-mobile-menu ul li a[aria-expanded=true]:before {
  background: #F58220;
  border-color: #F58220;
}
.side-mobile-menu ul li ul {
  padding-left: 0;
  list-style: none;
}
.side-mobile-menu ul li ul li {
  padding-left: 15px;
}
.side-mobile-menu ul li ul li:hover > a {
  color: #F58220;
  padding-left: 20px;
}
.side-mobile-menu ul li ul li:hover > a:before {
  background: #F58220;
  border-color: #F58220;
}
.side-mobile-menu ul li ul li a {
  position: relative;
  padding-left: 15px;
  text-transform: capitalize;
  font-size: 16px;
}
.side-mobile-menu ul li ul li a:before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #101a23;
  border-radius: 50%;
}
.side-mobile-menu ul li ul li a[aria-expanded=true] {
  padding-left: 20px;
}
.side-mobile-menu ul li.has-children > a:after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-width: 2px 0 0 2px;
  border-style: solid;
  border-color: initial;
  right: 16px;
  top: 50%;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
  -webkit-transform-origin: top;
  transform-origin: top;
  transition: all 0.3s ease-out;
}
.side-mobile-menu ul li.has-children a[aria-expanded=true]:after {
  -webkit-transform: rotate(-135deg) translateY(-50%);
  transform: rotate(-135deg) translateY(-50%);
}

.header-area {
  padding: 50px 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-area {
    padding: 15px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-area {
    padding: 15px 0;
  }
}
@media (max-width: 767px) {
  .header-area {
    padding: 15px 0;
  }
}

.header-area.sticky-header {
  background: #fff;
  padding: 10px 0;
}

.midnight-wrap {
  position: fixed;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  width: 25px;
  min-height: 494px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .midnight-wrap {
    left: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .midnight-wrap {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .midnight-wrap {
    display: none;
  }
}
@media (max-width: 767px) {
  .midnight-wrap {
    display: none;
  }
}

.main-menu {
  position: relative;
  margin-top: 116px;
}
.main-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-menu ul li {
  display: block;
  margin-bottom: 35px;
}
.main-menu ul li a {
  display: inline-block;
  font-size: 17px;
  color: #000;
  width: 25px;
  text-align: center;
  height: 28px;
}
.main-menu ul li a span {
  position: absolute;
  left: 0;
  bottom: 106%;
  width: 25px;
  transform: rotate(-90deg);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.main-menu ul li a:before {
  display: inline-block;
  content: "";
  width: 5px;
  height: 5px;
  border: 0;
  background: #9F9E9D;
  border-radius: 50%;
  left: 0;
  top: 0;
}
.main-menu ul li.current > a span {
  visibility: visible;
  opacity: 1;
}
.main-menu ul li.current > a:before {
  background: #333333;
  box-shadow: 0 0 0 10px rgba(51, 51, 51, 0.2);
}

.midnightHeader.default .main-menu ul li a {
  color: #000;
}
.midnightHeader.default .main-menu ul li a:before {
  background: #9F9E9D;
}
.midnightHeader.default .main-menu ul li.hero-section > a span {
  visibility: visible;
  opacity: 1;
}
.midnightHeader.default .main-menu ul li.hero-section > a:before {
  background: #333333;
  box-shadow: 0 0 0 10px rgba(51, 51, 51, 0.2);
}

.midnightHeader.mission .main-menu ul li a {
  color: #000;
}
.midnightHeader.mission .main-menu ul li a:before {
  background: #9F9E9D;
}
.midnightHeader.mission .main-menu ul li.mission-section > a span {
  visibility: visible;
  opacity: 1;
}
.midnightHeader.mission .main-menu ul li.mission-section > a:before {
  background: #333333;
  box-shadow: 0 0 0 10px rgba(51, 51, 51, 0.2);
}

.midnightHeader.technology .main-menu ul li a {
  color: #fff;
}
.midnightHeader.technology .main-menu ul li a:before {
  background: #fff;
}
.midnightHeader.technology .main-menu ul li.technology-section > a span {
  visibility: visible;
  opacity: 1;
}
.midnightHeader.technology .main-menu ul li.technology-section > a:before {
  background: #fff;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
}

.midnightHeader.about .main-menu ul li a {
  color: #fff;
}
.midnightHeader.about .main-menu ul li a:before {
  background: #fff;
}
.midnightHeader.about .main-menu ul li.about-section > a span {
  visibility: visible;
  opacity: 1;
}
.midnightHeader.about .main-menu ul li.about-section > a:before {
  background: #fff;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
}

.midnightHeader.team .main-menu ul li a {
  color: #000;
}
.midnightHeader.team .main-menu ul li a:before {
  background: #9F9E9D;
}
.midnightHeader.team .main-menu ul li.team-section > a span {
  visibility: visible;
  opacity: 1;
}
.midnightHeader.team .main-menu ul li.team-section > a:before {
  background: #333333;
  box-shadow: 0 0 0 10px rgba(51, 51, 51, 0.2);
}

.midnightHeader.career .main-menu ul li a {
  color: #000;
}
.midnightHeader.career .main-menu ul li a:before {
  background: #9F9E9D;
}
.midnightHeader.career .main-menu ul li.career-section > a span {
  visibility: visible;
  opacity: 1;
}
.midnightHeader.career .main-menu ul li.career-section > a:before {
  background: #333333;
  box-shadow: 0 0 0 10px rgba(51, 51, 51, 0.2);
}

.header-btn {
  display: inline-block;
}
.header-btn a {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  height: 60px;
  line-height: 60px;
  padding: 0 30px;
  border-radius: 50px;
  background: #333;
}
@media (max-width: 767px) {
  .header-btn a {
    padding: 0 15px;
    height: 50px;
    line-height: 52px;
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  .header-btn a {
    font-size: 14px;
  }
}
.header-btn a:hover {
  background: #F58220;
}

.open-mobile-menu {
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .open-mobile-menu {
    margin-left: 10px;
  }
}
.open-mobile-menu a {
  display: inline-block;
  font-size: 30px;
  color: #333;
}
.open-mobile-menu a:hover {
  color: #F58220;
}

.footer-area {
  background: #333333;
  position: relative;
  z-index: 1;
  padding-top: 225px;
  padding-bottom: 50px;
}
.footer-area:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 85px;
  border-radius: 0 0 60px 60px;
  z-index: 2;
  background: #f2f0ef;
}
.footer-area .footer-shape-1 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-area .footer-shape-1 {
    width: 475px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-area .footer-shape-1 {
    width: 400px;
  }
}
@media (max-width: 767px) {
  .footer-area .footer-shape-1 {
    width: 80%;
  }
}
.footer-area .footer-shape-2 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-area .footer-shape-2 {
    width: 500px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-area .footer-shape-2 {
    width: 440px;
  }
}
@media (max-width: 767px) {
  .footer-area .footer-shape-2 {
    width: 80%;
  }
}

.footer-separator {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright-text {
  font-size: 15px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.widget-wrapper {
  margin-bottom: 220px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .widget-wrapper {
    margin-bottom: 160px;
  }
}
@media (max-width: 767px) {
  .widget-wrapper {
    margin-bottom: 160px;
  }
}

.widget-wrap .title {
  font-size: 13px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}
.widget-wrap a {
  font-size: 28px;
  font-family: "Inter", sans-serif;
  color: #fff;
  display: inline-block;
  position: relative;
}
.widget-wrap a:before {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 0;
  height: 2px;
  display: block;
  right: 0;
  background: #F58220;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.widget-wrap a:hover:before {
  width: 100%;
  left: 0;
}
.widget-wrap a i {
  margin-left: 5px;
  transform: rotate(-45deg);
}
.widget-wrap a:hover {
  color: #F58220;
}

.page-title-area {
  background-color: #f5f5f5;
  background-position: center center;
  background-size: cover;
  padding-top: 200px;
  padding-bottom: 255px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-title-area {
    padding-top: 170px;
    padding-bottom: 170px;
  }
}
@media (max-width: 767px) {
  .page-title-area {
    padding-top: 170px;
    padding-bottom: 170px;
  }
}

.page-title-content .sub-title {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  padding-left: 40px;
  position: relative;
  margin-bottom: 25px;
}
.page-title-content .sub-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-top: 24px solid #333333;
  border-right: 24px solid transparent;
}
.page-title-content .title {
  font-size: 68px;
  line-height: 70px;
  color: #333333;
  font-weight: 300;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .page-title-content .title {
    font-size: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-title-content .title {
    font-size: 35px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .page-title-content .title {
    font-size: 35px;
    line-height: 50px;
  }
}
.page-title-content .title span {
  color: #F58220;
}
.page-title-content p {
  font-size: 30px;
  font-weight: 300;
  color: #ffff;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-title-content p {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .page-title-content p {
    font-size: 18px;
  }
}

.page-title-area.breadcrumb-bg.breadcrumb-spacings {
  padding: 130px 0 100px;
  text-align: center;
}

.hero-wrapper {
  height: 900px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-wrapper {
    height: 830px;
  }
}
@media (max-width: 767px) {
  .hero-wrapper {
    height: 780px;
  }
}
.hero-wrapper .hero-content .title {
  text-align: center;
  font-size: 78px;
  font-weight: 200;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-wrapper .hero-content .title {
    font-size: 70px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-wrapper .hero-content .title {
    font-size: 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-wrapper .hero-content .title {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .hero-wrapper .hero-content .title {
    font-size: 30px;
  }
}
@media (max-width: 375px) {
  .hero-wrapper .hero-content .title {
    font-size: 24px;
    padding-left: 35px;
  }
}
.hero-wrapper .hero-btn {
  position: absolute;
  bottom: 55px;
  left: 0;
  width: 100%;
  z-index: 1;
}
.hero-wrapper .hero-btn .read-more {
  font-size: 16px;
  color: #333333;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  height: 60px;
  line-height: 55px;
  display: inline-block;
}
.hero-wrapper .hero-btn .read-more .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  background: #333333;
  display: inline-block;
  margin-right: 10px;
  line-height: 62px;
  text-align: center;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  font-size: 24px;
}
.hero-wrapper .hero-btn .read-more:hover {
  color: #F58220;
}
.hero-wrapper .hero-btn .read-more:hover .icon {
  background: #F58220;
}

.hero-area {
  position: relative;
  border-radius: 0 0 60px 60px;
  overflow: hidden;
}
.hero-area .slick-dots {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 0;
  margin: 0;
}
.hero-area .slick-dots li {
  display: block;
}
.hero-area .slick-dots li button {
  display: block;
  font-size: 0;
  width: 5px;
  height: 5px;
  border: 0;
  background: #9F9E9D;
  margin-bottom: 35px;
  border-radius: 50%;
  padding: 0;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.hero-area .slick-dots li.slick-active button {
  background: #333333;
  box-shadow: 0 0 0 10px rgba(51, 51, 51, 0.2);
}
.hero-area .hero-badge {
  position: absolute;
  left: 0;
  top: 200px;
  z-index: 99;
  transform: rotate(-90deg);
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.mission-thumb {
  position: relative;
  z-index: 1;
  display: inline-block;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .mission-thumb {
    margin-right: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .mission-thumb {
    margin-right: 30px;
    margin-left: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mission-thumb {
    margin-right: 30px;
    margin-left: 30px;
  }
}
.mission-thumb:hover .caption {
  visibility: visible;
  opacity: 1;
}
.mission-thumb .caption {
  position: absolute;
  right: 50%;
  top: 50%;
  width: 374px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  font-size: 14px;
  text-align: center;
  font-family: "Inter", sans-serif;
  visibility: hidden;
  opacity: 0;
  transform: translate(50%, -50%);
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (max-width: 767px) {
  .mission-thumb .caption {
    right: 50%;
    top: 50%;
    width: 300px;
    transform: translate(50%, -50%);
  }
}
.mission-thumb .caption:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -19px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid white;
  transform: translateX(-50%);
}

.mission-content .sub-title {
  padding-left: 30px;
  font-size: 20px;
  font-weight: 400;
  position: relative;
  margin-bottom: 16px;
  font-family: "navigo", sans-serif;
}
.mission-content .sub-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 48%;
  transform: translateY(-50%);
  background: #F58220;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mission-content .title {
  font-size: 32px;
  line-height: 44px;
  color: #333333;
  font-family: "navigo", sans-serif;
  font-weight: 400;
  margin-bottom: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mission-content .title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .mission-content .title {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 25px;
  }
}
.mission-content p {
  font-size: 17px;
  font-weight: 400;
  color: #333333;
}
@media (max-width: 767px) {
  .mission-content p {
    font-size: 16px;
  }
}

.mission-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #333;
}
.mission-area .shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 0 0 60px 60px;
  z-index: -2;
}
.mission-area:before {
  content: "";
  position: absolute;
  right: -250px;
  top: -250px;
  border: 1px solid #1E1E20;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}
.mission-area:after {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -180px;
  border: 1px solid #1E1E20;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.technology-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #333333;
}
.technology-area .shape-round-1 {
  position: absolute;
  left: 160px;
  top: -30px;
  width: 70px;
  height: 70px;
  background: #555A5C;
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
}
.technology-area .shape-round-2 {
  position: absolute;
  left: 300px;
  top: 30px;
  width: 65px;
  height: 65px;
  background: #555A5C;
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
}
.technology-area .shape-round-3 {
  position: absolute;
  left: 60px;
  top: 120px;
  width: 95px;
  height: 95px;
  background: #555A5C;
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
}
.technology-area .shape-round-4 {
  position: absolute;
  left: 204px;
  top: 130px;
  width: 100px;
  height: 100px;
  background: #555A5C;
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
}
.technology-area .shape-round-5 {
  position: absolute;
  left: 25px;
  top: 260px;
  width: 65px;
  height: 65px;
  background: #555A5C;
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
}

.technology-content .sub-title {
  padding-left: 30px;
  font-size: 20px;
  font-family: "navigo", sans-serif;
  font-weight: 200;
  position: relative;
  margin-bottom: 25px;
  color: #fff;
}
.technology-content .sub-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 48%;
  transform: translateY(-50%);
  background: #F58220;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.technology-content .title {
  font-size: 32px;
  line-height: 48px;
  color: #fff;
  margin-bottom: 30px;
  font-family: "navigo", sans-serif;
  font-weight: 200;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .technology-content .title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .technology-content .title {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 25px;
  }
}

.about-area {
  position: relative;
  z-index: 1;
  border-radius: 0 0 60px 60px;
  overflow: hidden;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-area {
    padding-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .about-area {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .about-area {
    padding-bottom: 0;
  }
}
.about-area:before {
  content: "";
  background: #2A2A2A;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  border-radius: 0 0 60px 60px;
}
.about-area:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 85px;
  border-radius: 0 0 60px 60px;
  z-index: 2;
  background: #333;
}
.about-area .shape-1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.about-area .shape-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -2;
}
@media (max-width: 767px) {
  .about-area .shape-2 {
    display: none;
  }
}
.about-area .about-thumb-2 {
  border-radius: 20px;
  overflow: hidden;
  margin-right: 50px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-area .about-thumb-2 {
    margin-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .about-area .about-thumb-2 {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .about-area .about-thumb-2 {
    margin-right: 0;
  }
}

.about-content-top {
  font-size: 32px;
  color: #fff;
  line-height: 48px;
  font-family: "navigo", sans-serif;
  font-weight: 200;
}
@media (max-width: 767px) {
  .about-content-top {
    font-size: 22px;
    line-height: 36px;
  }
}
.about-content-top a {
  display: inline-block;
  color: #F58220;
  position: relative;
}
.about-content-top a:before {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 0;
  height: 2px;
  display: block;
  right: 0;
  background: #F58220;
  -webkit-transition: all 0.4s linear 0s;
  -moz-transition: all 0.4s linear 0s;
  -o-transition: all 0.4s linear 0s;
  transition: all 0.4s linear 0s;
}
.about-content-top a:hover:before {
  width: 100%;
  left: 0;
  background: #F58220;
}

.about-content-bottom {
  font-size: 17px;
  line-height: 32px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
@media (max-width: 767px) {
  .about-content-bottom {
    font-size: 16px;
    line-height: 30px;
  }
}
.about-content-bottom p {
  margin-bottom: 35px;
}
.about-content-bottom p:first-child {
  font-size: 24px;
}
@media (max-width: 767px) {
  .about-content-bottom p:first-child {
    font-size: 18px;
    line-height: 30px;
  }
}

.team-content .sub-title {
  padding-left: 30px;
  font-size: 20px;
  font-family: "navigo", sans-serif;
  font-weight: 300;
  position: relative;
  margin-bottom: 16px;
}
.team-content .sub-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 48%;
  transform: translateY(-50%);
  background: #F58220;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.team-wrap .thumb {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}
.team-wrap .content .title {
  font-size: 18px;
  font-family: "navigo", sans-serif;
  font-weight: 300;
  color: #333333;
  margin-bottom: 0;
}
.team-wrap .content span {
  font-size: 16px;
  font-family: "navigo", sans-serif;
  font-weight: 300;
  color: rgba(51, 51, 51, 0.5);
}

.team-area {
  position: relative;
  z-index: 1;
  background: #F2F0EF;
  overflow: hidden;
}
.team-area:before {
  content: "";
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  border-radius: 0 0 60px 60px;
}
.team-area:after {
  content: "";
  position: absolute;
  right: -250px;
  top: -250px;
  border: 1px solid #1E1E20;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.career-area {
  background: #F2F0EF;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.career-area:after {
  content: "";
  position: absolute;
  left: -180px;
  top: -180px;
  border: 1px solid #1E1E20;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.career-content .sub-title {
  padding-left: 30px;
  font-size: 20px;
  font-family: "navigo", sans-serif;
  font-weight: 300;
  position: relative;
  margin-bottom: 16px;
}
.career-content .sub-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 48%;
  transform: translateY(-50%);
  background: #F58220;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.career-content .title {
  font-size: 32px;
  line-height: 44px;
  color: #333333;
  font-family: "navigo", sans-serif;
  font-weight: 300;
  margin-bottom: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .career-content .title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .career-content .title {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 25px;
  }
}
.career-content p {
  font-size: 17px;
  font-weight: 400;
  color: #333333;
}
@media (max-width: 767px) {
  .career-content p {
    font-size: 16px;
  }
}

.career-wrapper {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .career-wrapper {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .career-wrapper {
    padding-bottom: 0;
  }
}

.career-thumb {
  position: absolute;
  right: -90px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .career-thumb {
    width: 50vw;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .career-thumb {
    width: 52vw;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .career-thumb {
    width: 54vw;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .career-thumb {
    position: static;
    transform: translateY(0);
    padding: 50px 100px 0;
  }
}
@media (max-width: 767px) {
  .career-thumb {
    position: static;
    transform: translateY(0);
    padding: 50px 50px 0;
  }
}

.opening-title {
  font-size: 20px;
  color: #333333;
  font-family: "navigo", sans-serif;
  font-weight: 300;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .opening-title {
    text-align: center;
  }
}

.list-wrap {
  display: grid;
  grid-template-columns: 3fr 3fr 3fr;
  align-items: center;
  padding: 30px 30px;
  border-bottom: 1px solid rgba(35, 38, 42, 0.2);
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 991px) {
  .list-wrap {
    grid-template-columns: 3fr 3fr 2fr;
  }
}
@media (max-width: 767px) {
  .list-wrap {
    display: block;
    text-align: center;
  }
}
.list-wrap:first-child {
  border-top: 1px solid rgba(35, 38, 42, 0.2);
}
.list-wrap:before {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 0;
  height: 2px;
  display: block;
  right: 0;
  background: #fff;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.list-wrap.active:before{
	background: #F58220;
}
.list-wrap:hover:before {
  width: 100%;
  left: 0;
}
.list-wrap .title {
  font-size: 20px;
  font-family: "navigo", sans-serif;
  font-weight: 300;
  color: #333;
}
@media (max-width: 767px) {
  .list-wrap .title {
    margin-bottom: 10px;
  }
}
.list-wrap .location {
  text-align: center;
  font-family: "navigo", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #222;
}
@media (max-width: 767px) {
  .list-wrap .location {
    margin-bottom: 10px;
  }
}
.list-wrap .red-more {
  text-align: right;
}
@media (max-width: 767px) {
  .list-wrap .red-more {
    text-align: center;
  }
}
.list-wrap .red-more a {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  text-align: center;
  transform: rotate(-45deg);
  font-size: 28px;
  color: #333;
  padding-top: 2px;
}
@media (max-width: 767px) {
  .list-wrap .red-more a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    padding-top: 3px;
  }
}
.list-wrap:hover {
  background: #fff;
  border-color: #fff;
}
.list-wrap:hover .red-more a {
  background: #f2f0ef;
}
.list-wrap .hover-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.opening-footer {
  text-align: center;
  font-family: "navigo", sans-serif;
  font-weight: 300;
  font-size: 24px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .opening-footer {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .opening-footer {
    font-size: 16px;
  }
}
.opening-footer a {
  font-weight: 400;
  color: #222;
  display: inline-block;
  position: relative;
}
.opening-footer a:before {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 0;
  height: 2px;
  display: block;
  right: 0;
  background: #F58220;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.opening-footer a:hover:before {
  width: 100%;
  left: 0;
}
.opening-footer a:hover {
  color: #F58220;
}

/*------------------------------------------------------------------------------
	Template Name: Starter Project Template.
-------------------------------------------------------------------------------*/

/*# sourceMappingURL=main.css.map */
