.row-center {
    justify-content: center;
}

.row {
    background-color: transparent !important;
}

.section-background {
    background-image:var(--backgroundImage); 
    background-size: cover;
    background-position: bottom;
}

a {
    color: var(--primary);
}

.center-text {
  text-align: center;
}

.section-title {
  margin-bottom: 20px;
}

.tech-logo-back {
    padding: 15px;
    background-color: #fff;
    border-radius: 15px;
}
@media (max-width: 1024px) {
    .tech-logo {
        width: 70% !important;
    }
}

a:not([href]):not([tabindex]) {
  color: var(--background-primary);
}

a:not([href]):not([tabindex]):hover {
  color: var(--primary);
}

#ContentContainer_MainContent_MainContent_LocalLogin {
  width: 50%;
}

#ContentContainer_MainContent_MainContent_LocalLogin .col-md-6 {
  width: 100%;
}

#ContentContainer_MainContent_MainContent_ExternalLogin {
  width: 50%;
}

#ContentContainer_MainContent_MainContent_ExternalLogin .col-md-6 {
  width: 100%;
}

/* HEADER */

.nav>li>a:hover, .nav>li>a:focus,
.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus {
    background-color: transparent !important;
}

.privine-nav {
  background-color: var(--background-primary);
}

.navbar-light .navbar-brand {
  color: var(--background-primary);
}

.navbar-light .navbar-brand:hover {
  color: var(--primary);
}

.privine-nav .navbar .navbar-nav .nav-item a {
  color: var(--text-primary);
}

.privine-nav .navbar .navbar-nav .nav-item a:hover {
  color: var(--primary);
}

.privine-nav .navbar .navbar-nav .nav-item a:active {
  color: var(--primary);
}

.navbar-area.is-sticky .navbar-nav .nav-item a:hover, .navbar-area.is-sticky .navbar-nav .nav-item a:focus, .navbar-area.is-sticky .navbar-nav .nav-item a.active {
  color: var(--primary);
}

a.text-primary:focus,a.text-primary:hover {
  color: var(--primary) !important;
}

.theme-switch-wrapper {
  display: flex;
  align-items: center;
  position: absolute;
  top:40px;
  right: 8px;
}
.theme-switch {
  display: inline-block;
  height: 34px;
  position: relative;
  width: 60px;
}

.theme-switch input {
  display:none;
}

.slider {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: .4s;
}

.slider:before {
  background-color: #fff;
  bottom: 4px;
  content: "";
  height: 26px;
  left: 4px;
  position: absolute;
  transition: .4s;
  width: 26px;
}

input:checked + .slider {
  background-color: var(--primary);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.flex-style {
  display: flex;
  justify-content: center;
}

/* page title */
.page-title-area {
    padding-top: 130px !important;
    height: 250px;
}

.page-title-content {
    margin-top: 0;
}

/* FOOTER */

.footer-subscribe-wrapper {
  background-color: #030f17;
  background-image: none;
}

/* HOME PAGE */
.default-btn {
  background-color: var(--primary);
  box-shadow: none;
  border-radius: 3px;
  color: var(--background-primary);
}

.default-btn-one {
  background-color: var(--secondary);
  box-shadow: none;
  color: var(--background-primary);
}

.default-btn span {
  background-color: var(--background-primary);
}

.default-btn-one span {
  background-color: var(--background-primary);
}

.default-btn:hover {
  color: var(--primary);
  background-color: transparent;
  border: 2px solid var(--primary);
}

.default-btn-one:hover {
  color: var(--secondary);
  background-color: transparent;
  border: 2px solid var(--secondary);
}

/* ABOUT PAGE */
.about-row {
    margin-top: 80px;
}

.about-images-1 {
    margin-top: 75px;
}

.about-img-wrapper .about-images-2::before {
    background-color: initial;
}

.award-title {
    width: 150px;
    text-align: center;
    margin-top:15px;
  }

.award-img {
    width: 150px;
}

.about-card {
    display: flex; 
    justify-content: center;
}

.banner-divider {
    background-color: var(--primary);
    padding: 40px 0 40px 0;
  }

/* Team Member Cards */
.team-content {
    padding: 14px;
}

.team-social {
    padding-bottom: 20px;
    margin-top: 0px;
}

.our-team {
    padding: 30px 0 40px;
    margin-bottom: 30px;
    background-color: var(--cardBackground);
    border: 2px solid var(--primary);
    text-align: center;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    height: 320px;
    width: 260px;
  }
  
  .our-team .picture {
    display: inline-block;
    height: 160px;
    width: 160px;
    margin-bottom: 35px;
    z-index: 1;
    position: relative;
  }
  
  .our-team .picture::before {
    content: "";
    width: 100%;
    height: 0;
    border-radius: 50%;
    background-color: var(--primary);
    position: absolute;
    bottom: 135%;
    right: 0;
    left: 0;
    opacity: 0.9;
    transform: scale(3);
    transition: all 0.3s linear 0s;
  }
  
  .our-team:hover .picture::before {
    height: 100%;
  }
  
  .our-team .picture::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--primary);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  
  .our-team .picture img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    transform: scale(1);
    transition: all 0.9s ease 0s;
  }
  
  
  .our-team:hover .picture img {
    transform: scale(0.85);
  }
  
  .our-team .name {
    color: var(--text-primary);
    font-size: 27px;
  }
  
  .our-team .title {
    display: block;
    font-size: 15px;
    color: var(--primary);
    text-transform: capitalize;
  }
  
  .our-team .social {
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: var(--primary);
    position: absolute;
    bottom: -100px;
    left: 0;
    transition: all 0.5s ease 0s;
  }
  
  .our-team:hover .social {
    bottom: 0;
  }
  
  .our-team .social li {
    display: inline-block;
  }
  
  .our-team .social li a {
    display: block;
    padding: 10px;
    font-size: 17px;
    color: var(--background-primary);
    transition: all 0.3s ease 0s;
    text-decoration: none;
  }
  
  .our-team .social li a:hover {
    color: var(--primary);
    background-color: var(--background-primary);
    border-radius: 8px;
    margin-top: 1px;
  }

/* CUSTOMERS PAGE */
#map {
  background-color: none;
  display: flex;
  justify-content: center;
}

.state {
  fill: var(--cardBackground);
  stroke: var(--primary);
  stroke-width: 1.5;
}

.client {
  fill:var(--secondary);
}

.client-hover {
  fill: var(--primary);
  stroke: var(--secondary);
  stroke-width: 1.5;
}

text {
  fill: var(--background-primary);
  font-size: 18px;
}

rect {
  fill: var(--primary);
  stroke: var(--background-primary);
  stroke-width: 1;
}

#TypesofCustomers {
  overflow: hidden;
  position: relative;
}

#TypesofCustomers h4 {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

/* PLATFORM PAGE */
.single-services-box {
    height: 350px;
    width: 350px;
    min-height: 300px;
    background-color: var(--cardBackground);
    border: 2px solid var(--accent);
    background-repeat: no-repeat;
    background-position: center bottom 12%;
    background-size:260px;
    overflow: hidden;
    padding-top: 20px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--cardBackground); 
  z-index: -1;
}

.single-services-box:hover .overlay {
  background-color: var(--cardBackground); 
}


.single-services-box .icon {
    background-color: var(--background-primary);
  }

  .single-services-box .icon-img {
    border-radius: 50%;
    width: 80%;
  }

  .single-services-box:hover .icon-img {
    opacity: 100;
  }
  
.single-services-box .icon {
    width: 65px;
    height: 65px;
    -webkit-transition: 0.6s !important;
    transition: 0.6s !important;
    position: absolute;
    top: 28px;
}
.single-services-box h2 {
  font-size: 25px;
  position: absolute;
  top:45px;
  left: 100px;
}

.service-text-content {
   display:block;
   margin-top: 80px;
}
.popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.popup-btn-img-container {
  width: 100%;;
  display: flex;
  align-items: center; 
  justify-content: flex-end;
  flex-direction: column; 
}

.popup-btn {
  margin-right: 0px;
  margin: 20px 0px 0px auto;
}

.popup-img {
  max-width: 650px;
  width: 100%;
  margin: 10px auto 0px auto;
}

.container#blur.active {
  filter: blur(20px);
  pointer-events: none;
  user-select: none;
}

.popup {
  width: 40%;
  position: fixed;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 40px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.3);
  background-color: var(--background-primary);
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  color: var(--text-primary);
  z-index: 100;
}

.popup.active {
    visibility: visible;
    opacity: 1;
    transition: 0.5s;
}


/* CAREERS Page */

.values-list {
  display: flex;
  justify-content: center;
  align-items: end;
}

.values-list img {
  width: 90px;
  height: 100px;
}

/* Role Cards */
.role-box {
  position: relative;
  z-index: 1;
  padding: 35px 25px;
  border-radius: 5px;
  height: 350px;
  width: 350px;
  min-height: 300px;
  background-color: var(--cardBackground);
  border: 2px solid var(--accent);
  background-repeat: no-repeat;
  background-position: center bottom 12%;
  background-size:260px;
  overflow: hidden;
  padding-top: 20px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 5px 30px 0px rgb(82,90,101,0.12);
  box-shadow: 0px 5px 30px 0px rgb(82,90,101,0.12);
}

.role-box:hover .overlay {
  background-color: var(--cardBackground); 
}


.role-box .icon {
  width: 65px;
  height: 65px;
  -webkit-transition: 0.6s !important;
  transition: 0.6s !important;
  position: absolute;
  top: 28px;
}

.role-box .icon-img {
  width: 80%;
}

.role-box:hover .icon-img {
  opacity: 100;
}

.role-box h2 {
  font-size: 25px;
  position: absolute;
  top:45px;
  left: 100px;
}

.role-box p {
  font-size: 15px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin-top: 15px;
  margin-bottom: 0;
}

.role-box:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.role-box:hover::before {
  height: 100%;
}

.role-box:hover .icon {
  visibility: visible;
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}


/* Testimonials */

.single-testimonial {
    background-color: var(--cardBackground);
    border: 2px solid var(--accent);
    height: 470px;
}

.single-testimonial .testimonial-content {
    height: 120px;
    margin-bottom: 60px;
}

.single-testimonial .avatar img {
    width: 150px;
    border-color: var(--cardBackground);
    border-left-color: var(--accent);
    border-bottom-color: var(--accent);
}

.owl-dots {
  display:none;
}

/* PRODUCT PAGE */

.features-div {
  margin: auto;
}

.features-container {
  display: flex;
  border: 1px solid var(--accent);
  border-radius: 10px;
  background-color: var(--cardBackground);
}

.feature-card {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.feature-text {
  font-size: 16px;
  text-align: right;
  width: 70%;;
}

.feature-img-div {
  margin-left: 4%;
  background-color: var(--primary);
  border-radius: 60px;
}

.feature-img {
  width: 75px;
  height: 75px;
  padding: 13px;
}

.feature-screenshot {
  width: 840px;
  height: 420px;
  margin: auto;
}

.sidebar {
  height: 100%;
  width: 415px;
  padding: 10px 14px;
  background: var(--primary);
  transition: var(--tran-05);
  margin-bottom: 0px;
}

.sidebar li {
  height: 50px;
  list-style: none;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.sidebar header .image,
.sidebar .icon {
  min-width: 60px;
  border-radius: 6px;
}

.sidebar .icon {
  min-width: 60px;
  border-radius: 6px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.sidebar .text,
.sidebar .icon {
  color: var(--accent);
  transition: var(--tran-03);
}

.sidebar .text {
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 1;
  color: #F7F7F7;
}
.sidebar.close .text {
  opacity: 0;
}

.sidebar li a {
  list-style: none;
  height: 100%;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  border-radius: 6px;
  text-decoration: none;
  transition: var(--tran-03);
  cursor: pointer;
}

.sidebar li a:not(.selected):hover {
  background-color: var(--accent);
}

.sidebar li a:hover .icon,
.sidebar li a:hover .text {
  color: #F7F7F7;
}

.sidebar .menu-bar {
  height: calc(100% - 55px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: scroll;
}

.menu-bar::-webkit-scrollbar {
  display: none;
}

.menu-links {
  padding: 0px;
}

.selected {
  background-color: var(--secondary);
}

.hire-section::before {
  background-color: var(--primary);
  opacity: .4;
}

.hire-section {
  background-image: url(~/BlueBannerBackground);
  background-position:unset;
  background-size: contain;
  background-repeat: unset;
}

.hire-inside-wrapper {
  padding: 70px 90px;
}

/* SERVICES PAGE */

.container-services {
  display: flex;
  flex-wrap: nowrap; 
  width: 100%;
}

.image-stack {
  flex: 0 0 50%;
  height: auto; 
  overflow: hidden;
  text-align: center;
  margin-top:auto;
  margin-bottom: auto;
}

.services-image {
  width: 100%;
  height: auto;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.services-image.show {
  display: block;
  opacity: 1;
}

.content {
  flex: 1; 
  overflow-y: auto; 
  /*height: 50vh;*/
  padding: 20px; 
}

.content-section {
  min-height: 50vh;
  font-size: 16px;

  position: relative; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
  height: 100%; 
}


.scroller-icon {
  width: 30%;
  margin-left: 40%;
  position: relative;
  top: 30px;
}


.scroll-arrow {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}

.content::-webkit-scrollbar {
  display: none; 
}

.content {
  -ms-overflow-style: none; 
  scrollbar-width: none;
}



/* SIGN IN PAGE */
.page-title-area {
  background-image: none;
}

.page-title-area::before {
  background-color: var(--primary);
  opacity: 1;
}

.btn-primary {
  background-color: var(--primary);
  border-color: transparent;
}

.form-horizontal {
  color: var(--text-primary);
}

.login-heading-section {
  color: var(--text-primary);
}

/*  SUPPORT PAGE */
.entity-grid .view-grid {
  background-color: var(--cardBackground);
  border: 1px solid var(--accent);
  color: var(--text-primary);
  height: 800px;
}

/* MEDIA QUERIES */
@media screen and (max-width: 767px) {
  /* Header */
  a.meanmenu-reveal span {
    background-color: var(--text-primary);
  }


  /* About */
  .col-3 {
    max-width: none;
  }

  /* Careers and Platform */
  .values-list {
    flex-direction: column;
    align-items: center;
  }

  .col-4 {
    max-width: none;
    flex: auto;
  }

  .col-5 {
    max-width: none;
  }

  /* Platform */

  .service-text-content {
    margin-top: 55px;
  }

  .popup {
    width: 90%;
  }

  .popup.active {
    padding: 30px 30px 0px 30px;
    overflow-y: scroll;
    top: 450px;
  }

  .popup-btn {
    top: 105%;
  }

  .popup-img {
    max-width: 150px;
  }

  /* Services */
  .col-2 {
    max-width: none;
  }

  .privine-nav {
    background-color: #030f17;
  }

 }

 @media (min-width: 768px) {
  #ContentContainer_MainContent_MainContent_LocalLogin .col-md-6 {
      max-width: 100%;
  }

  #ContentContainer_MainContent_MainContent_ExternalLogin .col-md-6 {
      max-width: 100%;
  }
}


/* Ensure dropdown and button sit on same line */
.entitylist-filter .list-inline,
.entitylist-filter .entitylist-filter-option-group,
.entitylist-filter .pull-right {
    display: inline-block !important;
    vertical-align: middle !important;
}

/* Remove extra margins and floating */
.entitylist-filter .pull-right {
    float: none !important;
    margin: 20px 0 0 8px !important;
}

/* Match height visually */
.entitylist-filter select,
.entitylist-filter .btn.entitylist-filter-submit {
    height: 38px !important;
    line-height: 36px !important;
}
