/* Workforce CSS */
.container-workforce {
    width: 100%;
    height: 100%;
    /* background: #f2f2f2; */
    padding: 0;
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
  }
  .container-workforce {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }
  .card {
    position: relative;
    width: 165px;
    height: 100px;
    max-width: 240px;
    max-height: 200px;
    min-width: 50px;
    margin: 10px;
    /* padding: 20px; */
   /* padding:20px 5px 20px 5px; */
    align-items: center;
    background: #fff;
  }
  

  .card--loading,
  .card__title:empty,
  .card__paragraph:empty {
    border-radius: 4px;
    background: linear-gradient(-90deg, #d1d1d1, #f1f1f1, #d1d1d1) no-repeat;
    background-size: 200% 200%;
    animation: card--loading 1.5s infinite;
  }
  .card__title {
    text-align: center;
    font-weight: 300;
    margin-bottom: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .card__title:empty {
    width: 100%;
    height: 15px;
    margin-bottom: 30px;
  }
  .card__paragraph {
    text-align: center;
    font-weight: 300;
  }
  .card__paragraph:empty {
    width: 100%;
    height: 10px;
  }
  .shadow {
    position: relative;
    transition: transform 0.2s ease-in-out;
    will-change: transform;
  }
  .shadow:before,
  .shadow:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.2s ease-in-out;
    pointer-events: none;
    will-change: opacity;
  }
  .shadow:before {
    box-shadow: 0 35px 50px -30px rgba(0,0,0,0.2);
  }
  .shadow:after {
    opacity: 0;
    box-shadow: 0 55px 50px -17px rgba(0,0,0,0.22);
  }
  .shadow:hover {
    transform: translateY(-5%);
  }
  .shadow:hover:before {
    opacity: 0;
  }
  .shadow:hover:after {
    opacity: 1;
  }
  .shadow:active {
    transform: translateY(5%) scale(0.9);
  }
  .shadow:active:before {
    opacity: 1;
  }
  .shadow:active:after {
    opacity: 0;
  }
  @-moz-keyframes card--loading {
    0% {
      background-position: 100% 50%;
    }
    50% {
      background-position: 0 50%;
    }
    100% {
      background-position: 100% 50%;
    }
  }
  @-webkit-keyframes card--loading {
    0% {
      background-position: 100% 50%;
    }
    50% {
      background-position: 0 50%;
    }
    100% {
      background-position: 100% 50%;
    }
  }
  @-o-keyframes card--loading {
    0% {
      background-position: 100% 50%;
    }
    50% {
      background-position: 0 50%;
    }
    100% {
      background-position: 100% 50%;
    }
  }
  @keyframes card--loading {
    0% {
      background-position: 100% 50%;
    }
    50% {
      background-position: 0 50%;
    }
    100% {
      background-position: 100% 50%;
    }
  }

  .h1-center{
    align-items: center;
    text-align: center;
    margin-top: 2%;
    
  }

  /* Our Partners */
.container-partners {
    font-family: 'Montserrat', sans-serif;
    color: #111;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  :root {
    --marquee-width: 100%;
    --marquee-height: 20vh;
    /* --marquee-elements: 12; */ /* defined with JavaScript */
    --marquee-elements-displayed: 5;
    --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
    --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
  }

.marquee {
    width: var(--marquee-width);
    height: var(--marquee-height);
    overflow: hidden;
    position: relative;
    margin-top: -5%;
}
  .marquee:before, .marquee:after {
    position: absolute;
    top: 0;
    width: 10rem;
    height: 100%;
    content: "";
    z-index: 1;
  }
  .marquee:before {
    left: 0;
   
  }
  .marquee:after {
    right: 0;
   
  }
  .marquee-content {
    list-style: none;
    height: 100%;
    display: flex;
    animation: scrolling var(--marquee-animation-duration) linear infinite;
  }
  /* .marquee-content:hover {
    animation-play-state: paused;
  } */
  @keyframes scrolling {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
  }
  .marquee-content li {
    display: flex;
    justify-content: center;
    align-items: center;
    /* text-align: center; */
    flex-shrink: 0;
    width: var(--marquee-element-width);
    max-height: 100%;
    font-size: calc(var(--marquee-height)*3/4); /* 5rem; */
    white-space: nowrap;
  }
  
  .marquee-content li img {
    width: 100%;
    padding: 50px;
    /* height: 100%; */
  }
  
  @media (max-width: 600px) {
    html { font-size: 12px; }
    :root {
      --marquee-width: 100vw;
      --marquee-height: 16vh;
      --marquee-elements-displayed: 3;
    }
    .marquee:before, .marquee:after { width: 5rem; }
  }
  
  @media(max-width:820px){
    .marquee-content li img{
      padding: 10px;
    }
}

.partners-section {
    margin-top: 8%;
    margin-bottom: 0 !important;
}


@media(max-width:430px) {
    .partners-section {
        margin-top: 15%;
    }
}

    /* Contact Us form */
    .form-control:disabled, .form-control:read-only {
        background-color: #fff !important;
    }

    .link-white {
        color: #fff;
    }

    /* Contact Form */
    .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
        padding-top: 0.50rem !important;
    }

    /* Map */
    .map {
        width: 100%;
        height: 80%;
        padding-top: 40%;
        padding-left: 10%;
        width: 800px;
    }

    @media (max-width:720px) {
        .map {
            width: 380px !important;
            /* padding-left: 0% !important; */
            align-items: center;
        }
    }

    /* @media (min-width: 1500px){
  .container-contact{
    max-width: 1900px !important;
    margin-left: -200px;
  }
} */

    /* @media(min-width:1500px){
.form-wi{
  width: 60% ;
}
}

@media(min-width:1500px){
.map-wi{
  width: 40% ;
}
} */

    #form-name {
        width: 298px !important;
    }

    /* About Page */
    .img-about {
        height: 700px;
    }

    @media(min-width:1200px) {
        .about-row {
            height: 600px;
        }
    }

    p.desc {
        font-size: 1.1rem;
    }

    @media(min-width:960px) {
        .foot-para {
            font-size: 16px;
        }
    }

    .partner {
        margin-top: -6rem !important;
    }

    p {
        text-align: justify;
    }

    .form-floating > .form-control, .form-floating > .form-select {
        height: 3rem;
    }

    .servicetext {
        text-align: center;
    }

    @media(min-width:990px){
    .second_text{
      margin-left: 17px;
      margin-top: -23px;
    }
  }

  .btn-linkedin{
    width: 21px !important; 
    height: 21px !important;
    margin-left: -1px !important;
  }

  .privacy p{
    letter-spacing: 0.05em;
  }

  .btn-hover{
    color: #000;
    background-color: #E8F5E9;
    border-color: #E8F5E9;
  }

  .fa-linkedin-in{
    width: 15px;
    height: 15px;
  }

