/* ============================================
   VIRTUALIZATION SECTION - ThinkAgile HX
   ============================================ */

#thinkagile-hx #virtualization-section {
  width: 100%;
  height: 350px;
  display: flex;
  position: relative;
}

#thinkagile-hx #virtualization-section .col-left {
  width: 50%;
  height: 100%;
  overflow: hidden;
}

#thinkagile-hx #virtualization-section .col-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#thinkagile-hx #virtualization-section .col-right {
  width: 65%;
  height: 100%;
  background-color: #EAEEF5;
  display: flex;
  align-items: center;
  padding: 0 4rem;
  box-sizing: border-box;
  overflow: hidden;
}

#thinkagile-hx #virtualization-section .col-right .content {
  max-width: 100%;
  width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

#thinkagile-hx #virtualization-section .col-right h2 {
  font-family: var(--font-gotham-bold);
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  padding: 0;
}

#thinkagile-hx #virtualization-section .col-right p {
  font-family: var(--font-gotham-book);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-text-gray);
  margin: 0;
}

#thinkagile-hx #virtualization-section .col-right p strong {
  font-family: var(--font-gotham-bold);
  color: var(--color-primary);
}

/* Responsive */
@media screen and (max-width: 1100px) {
  #thinkagile-hx #virtualization-section {
    flex-direction: column;
    height: auto;
    min-height: 350px;
    overflow: hidden;
  }

  #thinkagile-hx #virtualization-section .col-left {
    width: 100%;
    height: 300px;
  }

  #thinkagile-hx #virtualization-section .col-right {
    width: 100%;
    height: auto;
    padding: 3rem 2rem;
    box-sizing: border-box;
    text-align: center;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  #thinkagile-hx #virtualization-section .col-right .content {
    text-align: center;
    width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  #thinkagile-hx #virtualization-section .col-right h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-align: center !important;
  }

  #thinkagile-hx #virtualization-section .col-right p {
    font-size: 1rem;
    text-align: center !important;
  }
}

@media screen and (max-width: 767px) {
  #thinkagile-hx #virtualization-section .col-left {
    height: 250px;
  }

  #thinkagile-hx #virtualization-section .col-right {
    padding: 2rem 1.5rem;
    box-sizing: border-box;
    text-align: center;
    align-items: center;
    overflow: hidden;
  }

  #thinkagile-hx #virtualization-section .col-right h2 {
    font-size: 1.5rem;
    text-align: center !important;
  }

  #thinkagile-hx #virtualization-section .col-right p {
    font-size: 0.9rem;
    text-align: center !important;
  }
};