@media (max-width: 991px) {
* {
    max-width: 100%;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font: 400 16px Lato, sans-serif;
    background: #000;
}

a {
    text-decoration: none;
    font-size: 16px;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

textarea:focus, input:focus{
    outline: none;
}

h2, h3 {
    font: 400 40px 'Josefin Sans', sans-serif;
    text-transform: uppercase;
    background: linear-gradient(112deg, #0067CF 2.8%, #39A1FC 25.03%, #4C93D1 43.25%, #FCB239 64.55%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h3 {
    font: 400 28px 'Josefin Sans', sans-serif;
    text-transform: none;
    text-align: center;    
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: none;
    background-color: #f24535;
    min-height: 42px;
    font: 700 18px Lato, sans-serif;
    color: #fff;
}

@media (max-width: 991px) {
    .button {
        
    }
}

ol, li {
    font: 400 16px Lato, sans-serif;
    margin: 10px 0;
}

/* HEADER */

.header {
    position: fixed;
    top: 0px;
    display: flex;
    width: 100%;
    align-items: center;
    white-space: nowrap;
    text-align: right;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 80px;
    padding: 0px 70px;
    background-color: rgb(0 0 0 / 20%);
    backdrop-filter: blur(10px);
    color: #fff;
    font: 400 14px Lato, sans-serif;
    z-index: 1000;
}

.header a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;

}

.header .logo {
    object-fit: contain;
    object-position: center;
    width: 120px;
    align-self: stretch;
    margin: auto 0;
}

.nav-menu {
    align-self: stretch;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: end;
    margin: auto 0;
}

.nav-item {
    align-self: stretch;
    margin: auto 0;
}

.dropbtn {
    background: transparent;
    color: #fff;
    padding: 16px;
    font-size: 16px;
    border: none;
    /* cursor: pointer; */
    text-align: right;
  }
  
.dropdown {
    position: relative;
    display: inline-block;
  }
  
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
.dropdown-content a {
    color: #000;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
.dropdown-content a:hover {background-color: #f1f1f1}
  
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
  }
  
.dropdown:hover .dropbtn {
    background-color: rgba(0, 0, 0, 0.2);
  }

@media (max-width: 991px) {
    .header {
        display: flex;
        flex-wrap: nowrap;
        max-width: 100%;
        padding: 0px 20px;
        white-space: initial;
    }

    .dropdown {
        width: 100%;
    }

    .nav-menu {
        gap: 20px;
    }
}

/* SOFTWARE SERVICES */

.software-services {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    color: #fff;
    padding-top: 30px;
    background: #000;
}

.software-services .content-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 1280px;
    width: 1280px;
    padding: 0 70px 100px 70px;
    margin: 0px auto;
  }

@media (max-width: 991px) {
    .software-services {
        padding: 300px 30px 100px;
    }

    .software-services .content-wrapper{
        max-width: 100%;
        padding: 0px;
    }
}

.background-image {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.cases-wrapper {
    align-self: stretch;
    display: flex;
    gap: 4px;
    width: 61px;
    margin: auto 0;
}

@media (max-width: 991px) {
    .cases-wrapper {
        white-space: initial;
    }
}

.hero-title {
    position: relative;
    text-transform: uppercase;
    margin-top: 180px;
    width: 400px;
    font: 400 66px Josefin Sans, sans-serif;
    text-shadow: 0 5px 5px rgba(26, 26, 26, 0.9) ;
}

@media (max-width: 991px) {
    .hero-title {
        margin-top: 40px;
        font-size: 40px;
        width: 315px;
    }
}

.hero-description {
    position: relative;
    margin-top: 18px;
    width: 315px;
    font: 300 22px Lato, sans-serif;
}

@media (max-width: 991px) {
    .hero-description {
     margin-bottom: 100px;
    }
}

.services-grid {
    position: relative;
    display: flex;
    flex-direction: row;
    margin-top: 224px;
    align-items: center;
    gap: 20px;
    width: 100%;
    justify-content: start;
    flex-wrap: nowrap;
}

@media (max-width: 991px) {
    .services-grid {
        margin-top: 40px;
        flex-direction: column;
        flex-wrap: wrap;
    }
}

.service-card {
    border-radius: 6px;
    background-color: rgba(26, 26, 26, 0.5);
    display: flex;
    width: 100%;
    min-height: 320px;
    flex-direction: column;
    flex-grow: 1;
    margin: auto 0;
    padding: 40px 30px;
    border: 1px solid #606166;
}

@media (max-width: 991px) {
    .service-card {
        padding: 30px;
        width: 100%;
        min-height: 100%;
        
    }
}

.service-title {
    font: 700 20px Josefin Sans, sans-serif;
}

.service-description {
    margin-top: 20px;
    font: 300 18px Lato, sans-serif;
}

.cta-button {
    position: relative;
    align-self: center;
    margin-top: 80px;
    padding: 10px 60px;
}

@media (max-width: 991px) {
    .cta-button {
        margin: 40px 0 10px;
        padding: 0 20px;
    }
}

/* GLOBAL SOLUTIONS */

.global-solutions {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 117px 0 70px;
    background-color: #fff;
  }
  
  .global-solutions .content-wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
    padding: 0 70px;
    max-width: 1280px;
  }
  
  .title-column {
    width: 30%;
  }
  
  .title {
    text-transform: uppercase;
    font: 400 41px 'Josefin Sans', sans-serif;
  }
  
  .description-column {
    width: 60%;
  }
  
  .description {
    color: #000;
    font: 400 18px Lato, sans-serif;
    line-height: 1.5;
  }
  
  .map-section {
    background-color: #f7f8fc;
    margin-top: 135px;
    padding: 0 80px;
    text-align: center;
    min-width: 100%;
  }
  
  .map-image {

    width: 100%;
    max-width: 980px;
    margin: -84px auto;
  }
  
  .partners-title {
    margin-top: 152px;
  }
  
  .partners-grid {
    display: flex;
    margin-top: 27px;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .partner-logo {
    border-radius: 10px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 100px;
    padding: 16px 20px;
  }
  
  .partner-logo img {
    max-width: 100%;
    height: auto;
  }
  
  @media (max-width: 991px) {
    .global-solutions {
      padding: 30px;
    }
  
    .global-solutions .content-wrapper {
      flex-direction: column;
      gap: 0;
      padding: 0px;
    }
  
    .title-column,
    .description-column {
      width: 100%;
    }
  
    .title,
    .description {
      margin-top: 40px;
    }
  
    .map-section {
      padding: 0;
      margin: 100px 0;
    }
  
    .map-image {
      margin: -60px auto;
    }
  
    .partners-title {
      margin-top: 40px;
    }

    .partners-grid {
        margin-bottom: 40px;
    }
  }

/* CUSTOMERS */

  .customers {
    background-color: #eceef4;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 100px 80px 150px;
  }

  .customers .content-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 1280px;
    margin: 0px auto;
    align-items: center;
  }
  
  .section-title {
    text-align: center;
    font: 400 28px Josefin Sans, sans-serif;
  }
  
  .section-description {
    color: #000;
    text-align: center;
    margin-top: 30px;
    width: 657px;
    font: 400 18px Lato, sans-serif;
    line-height: 1.5;
  }
  
  .logo-grid {
    align-self: stretch;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 60px 0 -23px;
  }
  
  .logo-container {
    border-radius: 10px;
    background-color: #fff;
    align-self: stretch;
    display: flex;
    height: 100px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    max-width: 128px;
    margin: auto 0;
    padding: 20px;
    border: 1px solid #e6e6e6;
  }
  
  .logo-image {
    object-fit: contain;
    object-position: center;
    max-width: 100%;
  }
  
  @media (max-width: 991px) {
    .customers {
      max-width: 100%;
      padding: 100px 30px;
    }
  
    .customers .content-wrapper {
        max-width: 100%;
        margin: 0px auto;
      }

    .section-description {
      max-width: 100%;
    }
  
    .logo-grid {
      max-width: 100%;
      margin: 40px 0 10px;
    }
  }

/* PORTFOLIO */

  .portfolio-container {
    border-radius: 0;
    display: flex;
    flex-direction: column;
  }
  
  .portfolio-content {
    background-color: #595a5f;
    width: 100%;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .portfolio-wrapper {
    display: flex;
    gap: 20px;
    max-width: 1280px;
  }
  
  .portfolio-img-column {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 60%;
    margin-left: 0;
    justify-content: flex-end;
  }
  
  .portfolio-img-wrapper {
    display: flex;
    margin-top: -30px;
    margin-bottom: -5px;
    gap: 12px;
    justify-content: center;
  }
  
  .portfolio-img-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 24px;
    margin: auto 0;
  }
  
  .portfolio-img-image {
    object-position: center;
    width: fit-content;
    flex-grow: 1;
    flex-basis: 0;
  }
  
  .content-column {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 33%;
    margin-left: 20px;
  }
  
  .portfolio-container .content-wrapper {
    display: flex;
    margin-top: 55px;
    gap: 40px 55px;
    flex-wrap: wrap;
  }
  
  .portfolio-container .text-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-basis: 0;
    width: fit-content;
    padding-bottom: 40px;
  }
  
  .portfolio-img-container {
    border-radius: 8px;
    background-color: #fff;
    display: flex;
    width: 80px;
    max-width: 80px;
    height: 50px;
    align-items: center;
    justify-content: center;
    padding: 2px 10px;
    border: 1px solid #e6e6e6;
  }
  
  .portfolio-img-image-small {
    object-fit: contain;
    object-position: center;
    width: 100%;
  }
  
  .portfolio-title {
    color: #fff;
    margin-top: 30px;
    font: 700 21px Lato, sans-serif;
  }

  .portfolio-title::after {
    content: url('/img/diagonal-arrow-right-up.svg');
  }
  
  .portfolio-description {
    color: #fff;
    margin: 20px 28px 0 0;
    font: 400 15px Lato, sans-serif;
  }
  
  .technology-list {
    align-self: start;
    display: flex;
    margin-top: 30px;
    align-items: center;
    gap: 13px;
    color: #fff;
    white-space: nowrap;
    justify-content: start;
    font: 700 12px Lato, sans-serif;
  }
  
  .technology-item {
    align-self: stretch;
    margin: auto 0;
  }
  
  .technology-separator {
    align-self: stretch;
    width: 0;
    height: 23px;
    margin: auto 0;
    border: 1px solid #3e3e3e;
  }
  
  /* overwite bootstrap */
  .carousel-inner {
    overflow: visible;
  }

  @media (max-width: 991px) {
    .portfolio-content {
      max-width: 100%;
      /* padding: 0 30px 50px 30px; */
    }
  
    .portfolio-wrapper {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      width: 100%;
    }
  
    .portfolio-img-column,
    .content-column {
      width: 100%;
      margin-left: 0px;
    }
  
    .portfolio-img-wrapper,
    .content-wrapper {
      max-width: 100%;
    }
  
    .content-wrapper {
      margin-top: 40px;
    }
  
    .portfolio-img-image,
    .text-content {
      max-width: 100%;
    }
  
    .platform-title,
    .platform-description {
      max-width: 100%;
    }
  
    .platform-description {
      margin-right: 10px;
    }
  
    .technology-list {
      white-space: initial;
    }
  }


/* EXPERTISE */

.expertise-section {
    background-color: #0b0b0b;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 150px 0;
    width: 100%;
  }
  
  .expertise-content {
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .expertise-header {
    display: flex;
    gap: 20px;
    padding: 0 70px;
  }
  
  .expertise-title {
    width: 40%;
  }
  
  .expertise-description {
    color: #fff;
    font: 400 18px 'Lato', sans-serif;
    width: 60%;
    line-height: 1.5;
  }
  
  .expertise-stats {
    display: flex;
    margin-top: 110px;
    width: 100%;
    max-width: 875px;
    align-items: flex-start;
    gap: 40px 100px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 157px;
  }
  
  .stat-number {
    font: 43px 'Josefin Sans', sans-serif;
  }
  
  .stat-text {
    color: #fff;
    margin-top: 11px;
    font: 21px 'Lato', sans-serif;
  }
    
  .years-stat { color: #fcb13b; }
  .professionals-stat { color: #0067CF; }
  .projects-stat { color: #7d705b; }

  .core-competences {
    text-align: center;
    margin-top: 130px;
    font: 400 28px 'Josefin Sans', sans-serif;
  }

  .core-competences-wrapper {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-top: 70px;
    align-items: flex-start;
    justify-content: space-evenly;
  }

  .competences-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 145px;
  }
  
  .competences-title {
    color: #fff;
    text-align: center;
    font: 400 18px Josefin Sans, sans-serif;
    height: 40px;
    display: flex;
    align-items: flex-end;
  }
  
  .icon-wrapper {
    border-radius: 10px;
    background-color: #fff;
    display: flex;
    margin-top: 30px;
    min-height: 60px;
    width: 120px;
    height: 70px;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #e6e6e6;
  }
  
  .icon-wrapper {
    padding: 5px 15px;
  }
  
  .icon-image {
    object-fit: scale-down;
    object-position: center;
    width: 100%;
    height: 100%;
  }

  @media (max-width: 991px) {
    .expertise-section {
      max-width: 100%;
      padding: 100px 30px;
    }
  
    .expertise-content {
      max-width: 100%;
    }
  
    .expertise-header {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding:0px;
    }
  
    .expertise-title {
        font-size: 36px;
    }

    .expertise-title,
    .expertise-description {
      width: 100%;
      margin-top: 40px;
    }
  
    .expertise-stats {
      max-width: 100%;
      margin: 80px;
      gap: 40px;
    }
  
    .core-competences {
      margin: 40px 0 10px;
    }

    .core-competences-wrapper {
      flex-direction: row;
      gap: 30px;
      margin-top: 40px;
      align-items: center;
      width: 90%;
      flex-wrap: wrap;
      }

    .competences-container {
        flex-direction: column;
        align-items: center;
        justify-content: ;
        flex-wrap: wrap;
        gap: 15px;
    }

    .competences-title {
        display: flex;
        justify-content: center;
      }

    .icon-wrapper {
        margin-top: 10px;
      }
  }


/* CONTACT */

.contact-section { 
    border-radius: 0; 
    display: flex; 
    flex-direction: column; 
    float: left;
}

.contact-container { 
    background-color: #242527; 
    display: flex; 
    width: 100%; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    padding: 110px 0; 
}

.contact-wrapper { 
    width: 100%; 
    max-width: 980px; 
}

.contact-content { 
    gap: 20px; 
    display: flex; 
}

.contact-info { 
    display: flex; 
    flex-direction: column; 
    line-height: normal; 
    width: 38%; 
    margin-left: 0; 
}

.info-content { 
    display: flex; 
    flex-direction: column; 
    align-items: start; 
    font: 400 14px Josefin Sans, sans-serif; 
}

.contact-heading { 
    font-size: 28px;
    width: 50%;
}

.contact-label { 
    color: #fff; 
    margin-top: 80px; 
}

.contact-text { 
    color: #fff; 
    font: 16px Lato, sans-serif; 
}

.contact-phone { 
    color: #fff; 
    margin-top: 35px; 
}

.logo { 
    object-fit: contain; 
    object-position: center; 
    width: 28px; 
    margin-top: 30px; 
    max-width: 100%; 
}

.contact-form-wrapper { 
    display: flex; 
    flex-direction: column; 
    line-height: normal; 
    width: 62%; 
}

.contact-form { 
    display: flex; 
    margin-top: 80px; 
    width: 100%; 
    flex-direction: column; 
    font-family: Lato, sans-serif; 
    color: #fff; 
}

.form-fields { 
    display: flex; 
    flex-direction: column; 
    font-size: 16px; 
    font-weight: 400; 
    justify-content: start; 
}

.form-field { 
    border-radius: 0; 
    display: flex; 
    max-width: 100%; 
    flex-direction: column; 
}

.form-label { 
    align-self: start; 
    margin-bottom: 6px;
}

.form-input { 
    height: 36px; 
    background: transparent;
    border: none;
    border-bottom: 1px solid #5d5d5d; 
    margin-bottom: 15px;
    color: #fff;
}

.message-field { 
    border-radius: 0; 
    display: flex; 
    margin-top: 20px;
    max-width: 100%; 
    flex-direction: column; 
    white-space: nowrap; 
}

.message-field textarea { 
    min-height: 100px;
}

.submit-btn { 
    position: relative;
    align-self: flex-start;
    padding: 10px 60px;
    margin-top: 30px; 
    white-space: nowrap; 
    text-align: center; 
}

@media (max-width: 991px) {
    .contact-container { 
        max-width: 100%; 
        padding: 60px 30px; 
    }

    .contact-wrapper { 
        max-width: 100%; 
    }
    
    .contact-content { 
        flex-direction: column; 
        align-items: stretch; gap: 0; 
    }
    
    .contact-heading { 
        width: 100%;
    }

    .contact-info, .contact-form-wrapper { 
        width: 100%; 
        margin-top: 20px;
    }
    
    .info-content { 
        margin-top: 20px; 
    }
    
    .contact-label { 
        margin-top: 40px; 
    }
    
    .logo { 
        margin-top: 40px; 
    }
    
    .contact-form { 
        max-width: 100%; 
        margin-top: 40px; 
    }
    
    .form-fields { 
        max-width: 100%; 
    }
    
    .form-input, .message-field { 
        max-width: 100%; 
    }
    
    .message-field { 
        white-space: initial; 
    }
    
    .submit-btn { 
        white-space: initial; 
        padding: 0 20px; 
    }
}


/* INTERNAL PAGES */
.header, .internal {
    background: linear-gradient(112deg, rgba(0, 104, 207, 0.6) 2.8%, rgba(57, 161, 252, 0.6) 25.03%, rgba(76, 147, 209, 0.6) 43.25%, rgba(252, 177, 57, 0.6) 64.55%);
    background-color: rgba(0, 0, 0, 0.5);
}

.internal_subheader {
    display: flex;
    flex-direction: column;
    height: 100px;
    margin-top: 80px;
    padding: 40px 0;
    color: #fff;
    align-items: center; 
    font: 400 28px Josefin Sans, sans-serif;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .internal_subheader { 
        padding: 30px 30px;
        height: 70px;
        font-size: 20px;
    }
}

/* INTERNAL HEADER */

.internal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.internal-header-container {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 400px;
    width: 980px;
    align-items: flex-start;
    justify-content: center;
    /* padding: 100px 80px; */
}

.internal-header-background {
    position: absolute;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: bottom;
}

.internal-header-content {
    position: relative;
    display: flex;
    width: 45%;
    flex-direction: column;
}

.internal-header-label {
    font-size: 16px;
    align-self: start;
}

.internal-header-title {
    color: #fff;
    font-size: 28px;
    margin-top: 17px;
    font: 400 30px Josefin Sans, sans-serif;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .internal-header-container {
        max-width: 100%;
        padding: 10px 30px 50px;
    }

    .internal-header-content {
        width: 70%;
    }

    .internal-header-title {
        max-width: 100%;
        font-size: 32px;
    }
}


/* INTERNAL CONTENT */

.internal-section {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 120px 0;
}

.internal-section .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-width: 240px;
    width: 980px;    
}

.content-wrapper:last-child {
    /* padding-bottom: 50px;
    border-bottom: 1px solid #D7D7D7; */
}

.internal-container {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.internal-title {
    color: #175891;
    text-transform: uppercase;
    font: 700 18px Josefin Sans, sans-serif;
    padding-bottom: 20px;
}

.internal-text, li {
  line-height: 1.5;
}

.internal-text a {
  color: #000;
  text-decoration: underline;
}

.callout-wrapper {
  margin-bottom: 30px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
}

p.callout {
  font-weight: 700;
  font-style: italic;
  background-color: #f3f3f3;
  padding: 20px;
  margin-top: 20px;
  border-radius: 6px;
  width: 100%;
}

p.callout.white {
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  font-size: 24px;

}

p.callout a {
  color: #000;
  text-decoration: underline;
}

.record {
  position: relative;
  top: -20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  margin: -20px;
  width: calc(100% + 40px);
  margin-bottom: 20px;
  border-radius: 6px;
  padding: 20px;
  font-size: 15px;
  background-color: #f3f3f3;
  border: 1px solid #ddd;
  box-shadow: 0px 4px 8px 0px rgba(122, 122, 122, 0.2);
}

.record .records {
  margin: 5px;
}

.internal-container .record-title {
  font-weight: 600;
}

.internal-section .jobs-positions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.internal-section .jobs-position {
  display:flex;
  border: 1px solid #ddd;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  padding: 20px;
  font-size: 15px;
  background-color: #fcfcfc;
  color: #000;
}

.internal-section .jobs-position.placeholder {
  background-color: #e6e6e6;
  color: #606060;
  justify-content: center;
  font-style: italic;
}

.jobs-position span {
  font-weight: 600;
  font-size: 12px;
  text-align: right;
  color: #5d5d5d;
}

.technology-wrapper {
    display: flex;
    gap: 20px
}

@media (max-width: 991px) {
    .internal-container,
    .internal-title,
    .internal-text {
        max-width: 100%;
    }

    .internal-section {
        padding: 60px 0;
    }

    .content-wrapper {
        padding: 0px 30px;
    }

    .technology-wrapper .logo-container {
        padding: 10px;
      }
}

/* EXPLORE MORE */

.explore-more-section {
    display: flex;
    flex-direction: column;
  }
  
.explore-more-container {
    background-color: #595a5f;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 80px 0;
}
  
.explore-more-content {
    display: flex;
    width: 980px;
    flex-direction: column;
}
  
.explore-more-title {
    text-transform: uppercase;
    align-self: start;
    font: 700 20px Josefin Sans, sans-serif;
}
  
.case-list {
    display: flex;
    margin-top: 27px;
    flex-direction: column;
    color: #fff;
    justify-content: start;
    font: 400 16px/1 Lato, sans-serif;
}

.case-list a {
  color: #fff;
}
  
.case-item {
    margin-top: 15px;
}
  
.case-item:first-child {
    margin-top: 0;
}

@media (max-width: 991px) {
    .explore-more-container {
      max-width: 100%;
      padding: 70px 30px;
    }

    .explore-more-content {
        display: flex;
        width: 100%;
        flex-direction: column;
    }
  
    .case-list,
    .case-item {
      max-width: 100%;
    }
}


/* FOOTER */

.footer {
  background-color: #000;
  display: flex;
  min-height: 100px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 70px;
  text-align: right;
}

.footer a {
  color: #fff;
  font-size: 14px;
}

.footer-logo {
  aspect-ratio: 2.86;
  object-fit: contain;
  object-position: center;
  width: 120px;
  align-self: stretch;
  margin: auto 0;
}

.footer-links {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  align-items: center;
  gap: 40px;
  justify-content: start;
  margin: auto 0;
}

.footer-link {
  align-self: stretch;
  margin: auto 0;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 991px) {
  .footer {
    max-width: 100%;
    padding: 34px 30px;
  }

  .footer-links {
      margin-top: 30px;
  }

  .footer a {
    color: #fff;
    font-size: 14px;
    text-align: center;
  }

}