@font-face {
  font-family: 'Futura BT';
  src: url('/wp-content/themes/html5blank/fonts/futura/FuturaBT-Book.woff2') format('woff2'),
    url('/wp-content/themes/html5blank/fonts/futura/FuturaBT-Book.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Futura BT';
  src: url('/wp-content/themes/html5blank/fonts/futura/FuturaBT-Light.woff2') format('woff2'),
    url('/wp-content/themes/html5blank/fonts/futura/FuturaBT-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir LT Std';
  src: url('/wp-content/themes/html5blank/fonts/avenir/AvenirLTStd-Light.woff2') format('woff2'),
    url('/wp-content/themes/html5blank/fonts/avenir/AvenirLTStd-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir LT Std';
  src: url('/wp-content/themes/html5blank/fonts/avenir/AvenirLTStd-Roman.woff2') format('woff2'),
    url('/wp-content/themes/html5blank/fonts/avenir/AvenirLTStd-Roman.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir LT Std';
  src: url('/wp-content/themes/html5blank/fonts/avenir/AvenirLTStd-Medium.woff2') format('woff2'),
    url('/wp-content/themes/html5blank/fonts/avenir/AvenirLTStd-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir LT Std';
  src: url('/wp-content/themes/html5blank/fonts/avenir/AvenirLTStd-Heavy.woff2') format('woff2'),
    url('/wp-content/themes/html5blank/fonts/avenir/AvenirLTStd-Heavy.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

.fw-300 {
  font-weight: 300;
}

.fw-900 {
  font-weight: 900;
}

.ff-avenir {
  font-family: 'Avenir LT Std';
}

.ff-futura {
  font-family: 'Futura BT';
}

.heroFold {
  background: radial-gradient(circle at 94.35384114583333% 89.61588541666666%, #150464 0%, 20%, rgba(21, 4, 100, 0) 40%), radial-gradient(circle at 6.503906249999999% 88.037109375%, rgba(46, 5, 233, 0.99) 0%, 25%, rgba(46, 5, 233, 0) 50%), radial-gradient(circle at 6.165364583333333% 12.617187499999998%, #0B2F5B 0%, 42%, rgba(11, 47, 91, 0) 70%), radial-gradient(circle at 93.6865234375% 11.42578125%, #4326C3 0%, 42%, rgba(67, 38, 195, 0) 70%), radial-gradient(circle at 48.9013671875% 49.521484375%, #150464 0%, 100%, rgba(21, 4, 100, 0) 100%);
  padding-top: 0;
  padding-bottom: 0;
}

.heroFold .leftArea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 595px;
}

.heroFold .leftArea p:last-child {
  margin: 0;
}

.emp-slider {
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.emp-slider .imageBox {
  max-width: 200px;
  display: block;
  margin: 0 auto;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  transform: translateY(-245px);
  opacity: 0.2;
  z-index: 0;
  animation: slider-anim 24s infinite linear;
}

.emp-slider .imageBox img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: top;
}

.emp-slider .imageBox:nth-child(2),
.emp-slider .imageBox:nth-child(2) .textBox {
  animation-delay: 6s;
}

.emp-slider .imageBox:nth-child(3),
.emp-slider .imageBox:nth-child(3) .textBox {
  animation-delay: 12s;
}

.emp-slider .imageBox:nth-child(4),
.emp-slider .imageBox:nth-child(4) .textBox {
  animation-delay: 18s;
}

.emp-slider .textBox {
  background: #fff;
  max-width: 90%;
  padding: 8px 30px;
  border-radius: 6px;
  position: relative;
  top: -10px;
  opacity: 0;
  margin: 0 auto;
  display: block;
  animation: hide-show 24s infinite linear;
}

.emp-slider .imageBox p {
  margin: 0;
}

.emp-slider .textBox p {
  color: #000;
  font-family: 'Avenir LT Std';
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
}

.emp-slider .textBox:before {
  content: "";
  position: absolute;
  left: 16px;
  top: -10px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: #fff;
  width: 15px;
  height: 10px;
}

@keyframes hide-show {
  0% {
    opacity: 0;
  }

  41% {
    opacity: 0;
  }

  42% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  51% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes slider-anim {
  0% {
    transform: translateY(-245px);
    opacity: 0.2;
  }

  10% {
    transform: translateY(-138.5px);
    opacity: 0.2;
  }

  20% {
    transform: translateY(-32px);
    opacity: 0.2;
  }

  30% {
    transform: translateY(74.5px);
    opacity: 0.2;
  }

  40% {
    transform: translateY(181px);
    opacity: 0.2;
  }

  41% {
    transform: translateY(181px) scale(1.5);
    opacity: 1;
    z-index: 999;
  }

  52.5% {
    transform: translateY(181px) scale(1.5);
    opacity: 1;
    z-index: 999;
  }

  55% {
    transform: translateY(340.75px) scale(1);
    opacity: 0.2;
  }

  60% {
    transform: translateY(394px);
    opacity: 0.2;
  }

  70% {
    transform: translateY(500.5px);
    opacity: 0.2;
  }

  80% {
    transform: translateY(607px);
    opacity: 0.2;
  }

  90% {
    transform: translateY(713.5px);
    opacity: 0.2;
  }

  100% {
    transform: translateY(820px);
    opacity: 0.2;
  }
}

section {
  padding: 80px 0;
}

p,
li {
  font-family: 'Futura BT';
}

a,
button {
  font-family: 'Avenir LT Std';
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Avenir LT Std';
  font-weight: 500;
}

.primary-h-color {
  color: #07081f;
}

.primary-text-color {
  color: #000;
}

.bg-gray {
  background-color: #f5f6f8;
}

.shadow-border {
  box-shadow: 0 0px 13px rgba(0, 0, 0, .2);
  border-radius: 12px;
}

.nav-link,
.nav-link:focus,
.nav-link:hover {
  color: gray;
}

.nav-tabs {
  border-bottom: none;
}

.nav-tabs .nav-link {
  background: #fff;
  border-radius: 30px;
  box-shadow: 2.83px 2.83px 15px 3px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  margin: 0 8px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  border: none;
}

.btn {
  font-family: 'Avenir LT Std';
  font-size: 18px;
}

.btn-primary {
  background-color: #34d1b6;
  border-color: #34d1b6;
}

.btn-lg {
  padding: 9px 29px;
}

.ctaSec {
  background: #1d0295;
}

.whyChooseUs video {
  max-width: 330px;
  display: block;
  margin: 0 auto;
  outline: 2px solid #000;
  outline-offset: 10px;
}

.whyChooseUs ul li {
  position: relative;
}

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

.whyChooseUs .card {
  border: none;
  height: 100%;
}

.bg-yellow {
  background-color: #e9c926;
}

.bg-green {
  background-color: #34be6f;
}

.bg-lblue {
  background-color: #3d9be9;
}

.theme-main-color {
  color: #34D1B6;
}

.theme-sec-color {
  color: #1D0295;
}

.theme-blue-color {
  background-color: #150464;
}

.serviceSec3 {
  background: radial-gradient(circle at 42.980143229166664% 100%, #2E05E9 0%, 25%, rgba(46, 5, 233, 0) 50%), radial-gradient(circle at 9.952799479166668% 44.847005208333336%, #907BF0 0%, 42%, rgba(144, 123, 240, 0) 70%), radial-gradient(circle at 92.76204427083333% 14.70703125%, #1F039B 0%, 60%, rgba(31, 3, 155, 0) 100%), radial-gradient(circle at 48.9013671875% 49.521484375%, #FFFFFF 0%, 100%, rgba(255, 255, 255, 0) 100%);
}

.h-150 {
  height: 150px;
}

.serviceSec7 svg {
  width: 100px;
  height: 100px;
}

.navbar-brand .logo-img {
  max-width: 243px;
}

.home .navbar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99999;
}

body:not(.home) .navbar {
  background-color: #150464;
}

.navbar-nav .menu-item a {
  color: #fff;
  text-decoration: none;
  font-weight: 300;
  padding: 0 13px;
  font-size: 18px;
}

.navbar-nav .menu-item a:hover {
  color: #34D1B6;
}

.navbar-nav .menu-button a {
  color: #1D0295;
  background: #fff;
  font-size: 16px;
  border-radius: 30px;
  padding: 9px 35px;
  font-weight: 400;
}

.navbar-nav .menu-button {
  margin-left: 20px;
}

.footer-logo img {
  max-width: 243px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-20 {
  margin-bottom: 20px;
}

.nav-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.pt-60 {
  padding-top: 60px;
}

div.footer-logo {
  margin-top: -29px;
}

.contactUsSec {
  background: linear-gradient(180deg, #150464 45.625001192092896%, #4326C3 100%);
}

.wpcf7-textarea {
  height: 125px;
}

.fs-80 {
  font-size: 80px;
}

.l-100 {
  line-height: 100%;
}

.fw-800 {
  font-weight: 800;
}

.careerSec2 {
  background: url(https://workmatic.co/wp-content/uploads/2024/08/wow_image-scaled.jpg);
  background-size: cover;
  background-position: center;
}

.navbar-nav .current_page_item a,
.navbar-nav .current-menu-item a {
  color: #34D1B6 !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #fff;
}

.browserOuterScreen {
  max-width: 649px;
  height: 443px;
  margin: 0 auto;
  border: 5px solid #34D1B6;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 36px rgb(255 255 255 / 40%);
}

.browserOuterScreen .innerScreen {
  padding: 25px;
}

.browserOuterScreen .innerScreen1 {
  padding: 25px;
}

.browserOuterScreen .innerScreen1 #carouselImageFade {
  box-shadow: 0 0 100px rgb(0 0 0 / 35%);
  border-radius: 3px;
}

.browserOuterScreen .spot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  margin: 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 100%;
}

.screenHandle {
  width: 194px;
  height: 105px;
  margin: -5px auto 0;
  position: relative;
  border-left: 5px solid #34D1B6;
  border-right: 5px solid #34D1B6;
  z-index: 2;
}

.screenHandle2 {
  width: 238px;
  height: 35px;
  margin: -5px auto 0;
  position: relative;
  border: 5px solid #34D1B6;
  z-index: 0;
}

.mainScreen {
  position: relative;
  bottom: -75px;
}

.h-60 {
  height: 60px;
}

.h-80 {
  height: 80px;
}

.wpcf7-form p {
  margin: 0;
}

.p-md-xt {
  padding: 0;
}

@media (min-width: 993px) {
  .w-md-75 {
    width: 75%;
  }

  .w-md-66 {
    width: 66.66666667%;
  }

  .top-left {
    position: relative;
    top: 1.5rem;
    left: -1.5rem;
  }

  .wm-logo-height {
    width: 95px;
    height: 95px;
  }
}

@media (max-width: 992px) {
  .navbar-toggler {
    border-color: #fff;
    position: absolute;
    left: 14px;
    transform: scale(0.7);
    top: 16px;
  }

  .navbar-toggler-icon {
    filter: brightness(0) invert(1);
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgb(255 255 255 / 33%);
  }

  .navbar-nav {
    margin-bottom: 0 !important;
    background: #fff;
    border-radius: 10px;
  }

  .navbar-nav .menu-item a {
    display: inline-block;
    color: #150464;
    font-weight: 400;
  }

  .navbar-nav li {
    padding: 12px 26px;
    border-bottom: 1px solid #eee;
  }

  .navbar-nav .menu-button a {
    background: #150464;
    color: #fff;
  }

  .navbar-nav .menu-button {
    margin-left: 0;
    border: navajowhite;
  }

  .navbar-brand {
    margin-right: 0;
  }

  .navbar>.container {
    position: relative;
    justify-content: center;
  }

  .navbar-brand .logo-img {
    max-width: 203px;
  }

  .wm-logo-height {
    width: 60px;
    height: 60px;
  }
  .whyChooseUs video {
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) {
  .md-hide {
    display: none;
  }
}

@media (max-width: 767px) {
  .browserOuterScreen {
    height: auto;
    padding: 0 0 10% 0;
  }

  .browserOuterScreen .spot {
    width: 20px;
    height: 20px;
    bottom: 0;
  }

  .p-md-xt {
    padding: 1.5rem 1.5rem 0;
  }

  .nav-tabs .nav-link {
    margin-bottom: 14px;
    width: 100%;
  }

  nav .nav-tabs {
    max-width: 336px;
    margin: 0 auto;
  }

  .nav-tabs .nav-link:last-child {
    margin-bottom: 0;
  }

  .nav-tabs .nav-link+br {
    display: none;
  }

  .opportunitiesFold .tab-content div ul {
    padding: 0 0 0 20px;
    margin: 0 0 25px;
  }

  .xs-mb-4 {
    margin-bottom: 1.5rem;
  }

  .footer-logo img {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .opportunitiesFold .tab-content>.tab-pane img {
    max-width: 250px;
    display: block;
    margin: 0 auto;
    max-height: 258px !important;
  }

  .opportunitiesFold .tab-content>.tab-pane .bg-white.position-relative.shadow-border.top-left {
    max-width: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto;
  }

  .sm-hide {
    display: none;
  }

  .emp-slider .imageBox {
    animation: none;
    position: relative;
    transform: initial;
    opacity: 1;
  }

  .emp-slider .textBox {
    animation: none;
    opacity: 1;
    max-width: 80%;
  }

  .heroFold .leftArea {
    min-height: auto;
    padding: 100px 0 50px;
  }

  .emp-slider {
    display: flex;
    flex-wrap: wrap;
  }

  .emp-slider .imageBox img {
    width: 100%;
    height: auto;
    max-height: 246px;
  }

  .emp-slider .imageBox {
    width: 50%;
    padding: 0 6px;
  }

  .emp-slider .textBox p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .screenHandle {
    width: 39%;
    height: 75px;
  }

  .mainScreen {
    bottom: -65px;
  }

  .whyChooseUs .card {
    margin: 0 auto;
    width: 269px;
  }

  .xs-w-85 {
    max-width: 85%;
    display: block;
    margin: 0 auto;
  }
  .emp-slider .imageBox {
    width: 100%;
  }
}