@media (max-width: 991.99px) {
  main {
    padding-top: 61px;
  }

  header {
    background: var(--whiteColor);
    padding: 15px 0;
  }

  .logoWhite {
    display: none;
  }

  .menuBtn {
    display: block;
    padding: 0;
    width: 30px;
    height: 20px;
    position: relative;
    background: none;
    border: 0;
  }

  .menuBtn span {
    display: block;
    background: #3e3e3f;
    width: 100%;
    height: 3px;
    position: absolute;
    top: 50%;
    left: 0;
    transition: all 0.3s ease-in-out;
    border-radius: 100rem;
  }

  .menuBtn span:first-child {
    transform: translate3d(0, -10px, 0);
  }

  .menuBtn span:nth-child(4) {
    transform: translate3d(0, 10px, 0);
    width: 70%;
  }

  .menuBtn.active span:first-child,
  .menuBtn.active span:nth-child(4) {
    transform: translateZ(0);
    opacity: 0;
    width: 0;
  }

  .menuBtn.active span:nth-child(2) {
    transform: rotate(45deg);
  }

  .menuBtn.active span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .menuWrp {
    background: var(--greenColor);
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 30px 0;
  }

  .menuWrp ul li {
    border-bottom: 1px solid #147075;
    font-size: 16px;
  }
  .menuWrp ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .menuWrp ul li a {
    padding: 15px 0;
  }
  .bannerWrp .bannerPic {
    aspect-ratio: 16/9;
  }
  .philosophySwiper {
    overflow: visible;
  }
  .philosophySec {
    overflow: hidden;
  }

  .quantamRow > div:nth-child(2) .quantumCol,
  .quantamRow > div:nth-child(3) .quantumCol {
    border-right: 0;
  }

  .quantamRow > div:nth-child(2) .quantumCol,
  .quantamRow > div:nth-child(3) .quantumCol {
    border-bottom: 0;
  }

  .locWrp {
    padding-left: 25px;
  }

  .linkRow {
    margin-bottom: 30px;
  }
  .footLogo {
    width: 300px;
  }
}

@media (max-width: 575.99px) {
  main {
    padding-top: 51px;
  }

  .dpBtnCol {
    background: var(--orangeColor);
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    padding: 5px 15px;
    border-radius: 5px;
  }
  .quantamRow > div:nth-child(3) .quantumCol {
    border-right: 1px solid rgb(255 255 255 / 30%);
  }
  .quantamRow > div:nth-child(4) .quantumCol {
    border-right: 0;
  }

  .quantamRow > div:nth-child(4) .quantumCol {
    border-bottom: 0;
  }
  .linkRow {
    margin-bottom: 20px;
  }
  .teamBox {
    width: 70%;
    margin: 0 auto;
  }
}

@media (max-width: 400.99px) {
  .bannerWrp .bannerPic {
    aspect-ratio: 1/1;
  }
  .vector {
    display: none;
  }
}

@media (min-width: 575.99px) {
  .dpBtn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--whiteColor);
    transition: all 0.3s ease;
    z-index: -1;
  }
  .dpBtn:hover:after {
    height: 100%;
    background: var(--orangeColor);
    transition: all 0.3s 0.5s ease;
  }
  .footCol {
    height: 100%;
  }
  .officeCol {
    position: relative;
    padding-bottom: 50px;
    height: 100%;
  }
  .locWrp {
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .popupWrp .modal-content {
    padding: 30px;
  }
  .popupWrp .modal-content > *:not(:last-child) {
    margin-bottom: 25px;
  }
}

@media (min-width: 768.99px) {
  .logo {
    width: 180px;
  }
  .bannerWrp .bannerTxt h3 {
    font-size: 30px;
  }
  .teamList li {
    font-size: 18px;
  }
}

@media (min-width: 991.99px) {
  body {
    font-size: 1.042vw;
  }
  .logoClr {
    display: none;
  }

  header.sticky {
    background: var(--whiteColor);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    position: sticky;
    top: 0;
  }

  header.sticky .logoWhite {
    display: none;
  }

  header.sticky .logoClr {
    display: block;
  }

  header.sticky .menuWrp ul li {
    color: var(--grayColor);
  }

  header.sticky .dpBtn {
    color: var(--grayColor);
  }

  header.sticky .dpBtn:hover {
    color: var(--whiteColor);
  }
  header.sticky .dpBtn::after {
    background: var(--grayColor);
  }

  .menuWrp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .menuWrp ul {
    display: flex;
    gap: 2.015vw;
    justify-content: center;
  }
  .menuWrp ul li {
    padding-bottom: 0.3vw;
  }
  .menuWrp ul li:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--whiteColor);
    transition: all 0.3s ease-in-out;
  }
  .menuWrp ul li:hover:after {
    width: 100%;
  }

  header.sticky .menuWrp ul li:after {
    background: var(--grayColor);
  }
  header.sticky .menuWrp ul li.active:after {
    background: var(--grayColor);
    width: 100%;
  }
  section {
    margin-bottom: 5.208vw;
  }
  .title {
    font-size: 2.604vw;
    margin-bottom: 2vw;
  }
  .title:after {
    width: 3.125vw;
    height: 0.208vw;
    margin-top: 0.625vw;
  }

  header {
    position: fixed;
    padding: 2vw 0;
    transition: all 0.3s ease-in-out;
  }
  .container {
    width: 100%;
    padding: 0 5.208vw;
    max-width: inherit;
  }

  .logo {
    width: 15.625vw;
  }
  .dpBtn {
    padding: 0.5vw 0;
  }
  .dpBtn span {
    gap: 0 0.5vw;
  }
  .dpBtn span:after {
    width: 1.563vw;
  }
  .dpBtn:hover {
    padding: 0.5vw 0.8vw;
  }
  .dpBtn::after {
    margin-top: 0.1vw;
  }

  .bannerSwiper .bannerPagi {
    bottom: 4.167vw;
  }
  .bannerWrp .bannerPic {
    height: 100vh;
  }
  .bannerWrp .bannerTxt h3 {
    font-size: 3.125vw;
  }

  .philosophySec {
    padding-bottom: 5.208vw;
  }
  .philosophySec::before {
    bottom: 0;
    left: 0;
    height: 15.104vw;
  }

  .philosophyRow {
    --bs-gutter-x: 3.125vw;
    margin-bottom: 5.208vw !important;
  }
  .philPicCol {
    width: 39.063vw;
    aspect-ratio: 7/4;
  }
  .philPicCol img {
    height: 100%;
    object-fit: cover;
  }
  .philosophyList li {
    padding-left: 2vw;
  }
  .philosophyList li::before {
    width: 1.042vw;

    top: 0.5vw;
  }
  .philosophyList li:not(:last-child) {
    margin-bottom: 1.042vw;
  }
  .philosophySwiper .swiper-slide {
    padding: 0 0 0.521vw 0.521vw;
  }
  .box .whiteBorder {
    top: 0.521vw;
    right: 0.521vw;
    bottom: -0.521vw;
    left: -0.521vw;
  }
  .box:hover .whiteBorder {
    top: 0.521vw;
    right: 0.521vw;
    bottom: 0.521vw;
    left: 0.521vw;
  }
  .box .innerBox {
    padding: 2.604vw;
  }
  .box .innerBox::before {
    height: 0.26vw;
  }
  .box .innerBox > *:not(:last-child) {
    margin-bottom: 1.563vw;
  }
  .box .innerBox .iconWrp {
    width: 4.167vw;
  }

  .box .innerBox h4 {
    font-size: 1.302vw;
  }
  .advantageRow {
    --bs-gutter-x: 1.563vw;
    --bs-gutter-y: 1.563vw;
  }

  .quantamSec {
    padding: 0;
  }
  /* .quantamRow {
    --bs-gutter-x: 4.688vw;
  } */

  .quantumCol {
    padding: 2.083vw;
  }

  .quantamRow > div:nth-child(2) .quantumCol,
  .quantamRow > div:nth-child(4) .quantumCol,
  .quantamRow > div:nth-child(5) .quantumCol {
    border-right: 0;
  }

  .quantamRow > div:nth-child(2) .quantumCol,
  .quantamRow > div:nth-child(3) .quantumCol {
    border-bottom: 0;
  }
  .quantumCol {
    font-size: 1.042vw;
  }
  .quantumCol h6 {
    font-size: 2.604vw;
    margin-bottom: 9.115vw;
  }

  .keyFeaturesRow {
    --bs-gutter-x: 1.563vw;
    --bs-gutter-y: 1.563vw;
  }
  .keyFeaturesRow .col {
    padding-top: 2.604vw;
  }
  .kfBox {
    padding: 2.865vw 2.083vw 2.083vw 2.083vw;
    min-height: 13.021vw;
  }
  .kfBox span {
    width: 5.208vw;
    filter: drop-shadow(0.208vw 0.313vw 0.521vw rgba(0, 0, 0, 0.4));
    top: -2.604vw;
    right: 1.302vw;
  }
  .kfBox h4 {
    font-size: 1.563vw;
    margin-bottom: 0.938vw;
  }

  .chartWrp {
    /* height: 19.792vw; */
    margin: 2vw 0;
  }

  .teamList li {
    font-size: 1.563vw;
  }
  .teamList li:not(:last-child) {
    border-width: 0.104vw;
    padding-right: 1.563vw;
    margin-right: 1.563vw;
  }

  .teamSec {
    padding: 5.208vw 0;
  }
  .teamBox:after {
    height: 0.365vw;
  }
  .teamColRow {
    margin-top: 1.5vw;
    --bs-gutter-x: 2vw;
    --bs-gutter-y: 2vw;
  }
  .linkedin {
    width: 1.302vw;
  }
  .teamTxt {
    padding: 1.302vw;
  }
  .teamTxt h6 {
    font-size: 1.563vw;
  }

  /* Swiper Pagination */
  .swiper-pagination {
    gap: 0 0.7vw;
  }
  .swiper-pagination .swiper-pagination-bullet {
    width: 1.5vw;
  }

  footer {
    padding: 2.344vw 0;
    border-top: 1.042vw solid var(--orangeColor);
  }
  footer .footHead {
    margin-bottom: 0.781vw;
    font-size: 1.042vw;
  }
  footer .footHead::after {
    width: 2.604vw;
    height: 0.104vw;
    margin-top: 0.781vw;
  }
  .footCol {
    font-size: 0.833vw;
  }
  .footCol ul li {
    margin-bottom: 1.042vw;
  }
  .footCol ul li:last-child {
    margin-bottom: 0;
  }
  .footCol h6 {
    font-weight: 700;
    font-size: 0.833vw;
  }

  .officeCol {
    padding-bottom: 4vw;
  }
  .locWrp:before {
    left: -1.2vw;
    width: 0.938vw;
  }
  .linkRow {
    margin-bottom: 3.125vw;
  }
  .footLogo {
    width: 24.74vw;
  }

  #onLoadPopup .modal-dialog {
    max-width: 63.542vw;
  }

  #onLoadPopup .modal-dialog .modal-content {
    padding: 3.385vw 7.813vw;
  }
  #onLoadPopup .modal-content ul li::before {
    width: 0.3vw;
    height: 0.3vw;
    margin-right: 0.5vw;
  }
  #onLoadPopup .modal-content h6 {
    font-size: 1.042vw;
    margin-bottom: 0.8vw;
  }
  #onLoadPopup .modal-content > *:not(:last-child) {
    margin-bottom: 2vw;
  }
  .agreeBtn {
    padding: 0.781vw;
    min-width: 10.417vw;
  }
  #onLoadPopup .modal-content ul li {
    margin-bottom: 0.8vw;
  }
  #onLoadPopup .modal-content::before {
    inset: 0.521vw;
  }
  .vector {
    width: 4.948vw;
  }

  .chartWrp {
    height: 50vh;
  }
  #igdPopup .modal-dialog {
    max-width: 45vw;
  }
  #igdPopup .modal-content {
    padding: 3vw 2vw;
  }
  #igdPopup .modal-content > *:not(:last-child) {
    margin-bottom: 2vw;
  }
  .popupWrp ul li {
    padding-left: 2vw;
    font-size: 1.2vw;
  }
  .popupWrp ul li::before {
    width: 1vw;
    top: 0.8vw;
  }
  .popupWrp .btn-close {
    margin-bottom: 1vw;
  }
  .popupTxtWrp > *:not(:last-child) {
    margin-bottom: 1vw;
  }
  .disTxt {
    margin-top: 2vw;
  }
}
