* {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
  padding: 0;
  margin: 0;
}

:root {
  --primary: #1A1A1A;
  --white: #fff;
  --blue: #0057FF;
  /* --secondary: #E2E2E2; */
  --secondary: #fff;
  --blue: #0057FF;
  --purple: #92278F;
  --lblue: #B0CBFF;
  --liblue: #DDBCDC;
  --bgblue: #E6EEFF;
  --dblue: #021333;
}


/* COMMON CSS CLASSES */

.link {
  display: inline-block;
  position: relative;
  text-decoration: none;

  &::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    border-radius: 5px;
    height: 0.05em;
    bottom: 0;
    left: 0;
    background: currentcolor;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }

  &:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
}

.text-primary-cx {
  color: var(--primary) !important;
}

.bg-primary-cx {
  background-color: var(--primary) !important;
}

.btn-primary {
  background-color: var(--blue);
  color: var(--white);
  border-radius: 8px;
  border: none;
  padding: 10px 18px;
}

.btn-secondary {
  background-color: transparent;
  color: var(--blue);
  border-radius: 18px;
  border: 1px solid var(--blue);
  padding: 16px 28px;
  font-weight: 500;
  font-size: 18px;
  width: fit-content;

  @media (max-width: 768px) {
    font-size: 14px;
  }

  &.lblue {
    color: var(--lblue);
    border-color: var(--lblue);
  }

  &.liblue {
    color: var(--liblue);
    border-color: var(--liblue);
  }
}

h1,
h2,
h3,
h4 {
  color: var(--white) !important;
  font-weight: 700 !important;
  font-size: 52px !important;


}

h2 {
  font-size: 40px !important;
}

h3 {
  font-size: 32px !important;
  font-weight: 600 !important;

  @media (max-width: 768px) {
    font-size: 24px !important;
  }
}

h4 {
  font-size: 24px !important;
}

h5 {
  font-size: 20px !important;
  font-weight: 600 !important;
}

p {
  color: var(--primary);
  font-weight: 500;
  font-size: 26px;
}

.p2 {
  color: inherit;
  font-weight: 500 !important;
  font-size: 18px !important;
  padding: 0;
  margin: 0;

  @media (max-width: 768px) {
    font-size: 16px !important;
  }
}

ul {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
}

a {
  text-decoration: none !important;
}

input,
textarea {
  padding: 10px 16px;
  border-radius: 8px;
  outline: none;
  border: none;
  font-size: 14px;
  width: 100%;
}

.ml-80 {
  margin-left: 80px;
}

.light-version {

  input:not([type="submit"]),
  textarea {
    background-color: #EFEFEF !important;
  }
}

.copy-text {
  cursor: pointer;

  a:not(.copy-icon) {
    color: #204FCD;
    text-decoration: underline !important;
  }

  .copy-icon {
    color: #204FCD;
    position: relative;
    display: inline-block;

    span {
      opacity: 0;
      background-color: black;
      color: #fff;
      text-align: center;
      padding: 5px 8px;
      border-radius: 6px;
      transition: all .6s ease;
      font-size: 12px;

      position: absolute;
      z-index: 1;

      bottom: 115%;
      right: -22px;

      &::after {
        content: " ";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: black transparent transparent transparent;
      }

    }
  }
}

.sub-navigation {
  background-color: rgba(176, 203, 255);
  padding: 26px;
  position: fixed;
  z-index: 9;
  width: 100%;

  ul {
    display: flex;
    justify-content: space-between;
    align-items: center;

    li {
      a {
        font-weight: 500;
        color: var(--primary);

        &:hover {
          color: var(--blue);
        }

        &.active:not(.crossed) {
          color: var(--blue);

          &::after {
            transform: scale(1);
          }
        }
      }
    }
  }

}

@media (max-width: 768px) {
  h1 {
    color: var(--white) !important;
    font-weight: 700 !important;
    font-size: 24px !important;
  }
}


/* CUSTOM CSS CLASS SECTION WISE */

header {
  position: fixed;
  width: 100%;
  background-color: transparent;
  transition: all .3s ease;
  z-index: 10;

  .navbar-custom {
    background-color: transparent !important;

    .nav-link {
      color: var(--secondary);
    }

    .nav-link.active {
      color: var(--secondary);

      &::after {
        transform: scaleX(1) !important;
      }
    }
  }

  .hamberger {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    outline: none !important;
    border: none !important;
  }

  .site-logo {
    @media (max-width: 768px) {
      img {
        height: 23px !important;
      }
    }
  }

  &.active {
    background-color: var(--primary);
  }
}

.banner-main {
  padding-top: 80px;
  background: radial-gradient(circle at 75% 55%, #563EDB 0%, #563EDB 0%, var(--primary) 48%);

  &.banner-about-us {
    background: radial-gradient(circle at 75% 55%, #3a5a97 0%, #3459a0 0%, #021333 48%) !important;
  }

  .banner-section {
    padding: 70px 0 140px 0;

    p {
      color: var(--white);
      font-weight: 500;
      font-size: 26px;
      padding-top: 32px;
    }

    @media (max-width: 768px) {

      p,
      li {
        font-size: 16px;
      }
    }

    img {
      height: 100%;
      width: 100%;
    }
  }

  &.no-image {
    padding-top: 200px;
    padding-bottom: 75px;

    @media (max-width: 768px) {
      padding-top: 98px;
      padding-bottom: 36px;

      p {
        padding-top: 10px;
      }
    }

    h1 {
      margin-bottom: 18px;
    }

    ul {
      color: inherit;
      list-style: disc;
      font-weight: 500;
      font-size: 26px;
      padding-left: 2rem !important;
    }

    p {
      color: white;
      font-weight: 600;
    }

    .banner-section {
      padding: 0;
      display: block;

      &>div {
        width: 100%;

        &:last-child {
          display: none;
        }
      }


    }
  }
}



.ontology-section {

  /* background: url("./assets/dotted_bg.png");
  background-size: cover;
  background-repeat: no-repeat; */

  &>div {
    padding: 100px 0;
  }

  .ontology-section_main {
    .ontology-section_image {
      img {
        position: sticky;
        top: 200px;
      }
    }

    .ontology-section_moving-block {

      &>div:nth-child(1) {
        height: 90vh;
        /* height: auto !important; */
        position: sticky;
        top: 0;
        opacity: 1;
      }

      .anim-action {
        height: 90vh;
        position: sticky;
        top: 0;
        /* opacity: 0; */
        transform: translateY(50px);

      }

      .ontology-section_moving-block--content {
        &>div {
          top: calc(20vh);
          position: relative;
        }

        p {
          max-width: 60%;
        }

        @media (max-width: 768px) {
          p {
            max-width: 100%;
          }
        }
      }
    }
  }

  .ontology-section_moving-block {

    .line-top {
      border-top: 4px solid var(--blue);
      padding: 0 10px;
    }

    span {
      position: relative;
      display: block;
      color: var(--blue);
      font-size: 18px;
      width: fit-content;
      font-weight: 600;
      padding-top: 9px;

      /* &::before {
              content: '';
              position: absolute;
              background-color: var(--blue);
              height: 4px;
              width: 45px;
              border-radius: 16px;
              top: 0;
              left: -11px;
          } */
    }
  }

  .ontology-section_static-block {

    a.active {
      font-weight: 600;
      color: var(--blue);
      border-bottom: 5px solid var(--blue);
    }

    a {
      font-weight: 500;
      font-size: 24px;
      color: var(--primary);
      transition: all .3s ease;
      padding-bottom: 12px;


      &:hover {
        font-weight: 600;
        color: var(--blue);
        border-bottom: 5px solid var(--blue);
      }
    }

    svg {
      vertical-align: text-bottom;
      margin-right: 8px;
    }

    ul {
      display: flex;

      li {
        margin-right: 48px;
      }
    }

    .ontology-section-block_items {
      overflow: hidden;
      margin-top: 32px;

      &>div {
        transition: all .5s ease;
      }

      h3 {
        font-weight: 600px;
        font-size: 28px;
        margin-bottom: 20px;
      }

      p {
        font-weight: 400;
        font-size: 24px;
        color: var(--primary);
      }
    }
  }
}

.ontology-part {

  background: url("./assets/dotted_bg.png");
  padding: 60px 0;

  .ontology-section_image {
    background-color: #D9D9D9;
    border-radius: 12px;
    padding: 20px;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
  }

  .ontology-section_moving-block {

    padding: 20px 0;

    .line-top {
      border-top: 4px solid var(--primary);
      padding: 0 10px;
    }

    span {
      position: relative;
      display: block;
      color: var(--primary);
      font-size: 18px;
      width: fit-content;
      font-weight: 600;
      padding-top: 9px;

      /* &::before {
              content: '';
              position: absolute;
              background-color: var(--blue);
              height: 4px;
              width: 45px;
              border-radius: 16px;
              top: 0;
              left: -11px;
          } */
    }
  }


  .ontology-section_moving-block--content {

    &:hover {
      .line-top {
        border-color: var(--blue)
      }

      span,
      h4 {
        color: var(--blue) !important;
      }
    }

    &.anim-action {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    }

    &.anim-visible {
      opacity: 1;
      transform: translateY(0);
    }

    p {
      max-width: 70%;
      font-size: 18px;
    }

    @media (max-width: 768px) {
      p {
        max-width: 100%;
      }
    }
  }

  .ontology-section_static-block {

    a.active {
      font-weight: 600;
      color: var(--blue);
      border-bottom: 3px solid var(--blue);
    }

    a {
      font-weight: 600;
      font-size: 24px;
      color: var(--primary);
      transition: all .3s ease;
      padding-bottom: 12px;
      border-bottom: 1.5px solid #B8B8B8;

      &:hover {
        font-weight: 600;
        color: var(--blue);
        border-bottom: 3px solid var(--blue);
      }
    }


    ul {
      display: flex;

      li {
        margin-right: 48px;
      }
    }

    .ontology-section-block_items {
      overflow: hidden;
      margin-top: 32px;

      &>div {
        transition: all .5s ease;
      }

      h3 {
        font-weight: 600px;
        font-size: 28px;
        margin-bottom: 20px;
      }

      p {
        font-weight: 400;
        font-size: 24px;
        color: var(--primary);
      }
    }
  }
}

.partner-focus-section_old {
  p {
    padding-top: 18px;
    font-size: 26px;
    color: var(--white);
  }

  .menu-list {

    background-color: #363636;
    padding: 20px;
    border-radius: 12px;

    ul {
      li:not(:last-child) {
        padding-bottom: 12px;
      }
    }

    a {
      text-decoration: none;
      font-weight: 500;
      color: var(--white);
      display: block;

      border-radius: 32px;
      padding: 22px 28px;
      /* width: fit-content;   */
      transition: all .4s ease;

      &:hover {
        background-color: var(--blue);
      }

      &.active {
        background-color: var(--blue);
      }
    }
  }

  .menu-items {
    &>div:not(:last-child) {
      margin-bottom: 72px;
    }
  }

  button {
    width: fit-content;
  }
}

.partner-focus-section {

  .accodian-view {
    &>div {
      background-color: var(--bgblue);
      overflow: hidden;

      &:first-child {
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
      }

      &:last-child {
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
      }

      &.active {
        background-color: var(--purple);
        color: white;


        .accodian-view_title {
          span {
            font-weight: 600;
          }

          a {
            color: white;
            font-weight: 600;
            transform: rotate(180deg);
          }
        }
      }
    }

    .accodian-view_title {
      display: flex;
      justify-content: space-between;
      padding: 20px;

      span {
        display: block;
        font-size: 14px;
        font-weight: 500;
      }

      a {
        transition: all .4s ease;
        color: var(--primary);
        font-size: 16px;
        font-weight: 500;
      }
    }

    .accodian-view_body {
      display: none;
      /* padding: 0px 20px 20px; */

      &>div {

        background-color: var(--white);

        .menu-item {
          padding: 12px;
        }

        img {
          height: 100%;
          width: 100%;
          object-fit: cover;
          border-radius: 12px;
        }
      }
    }
  }

  .menu-block {
    color: var(--white);

    .menu-block_list {

      overflow: auto;
      border: 1px solid #4C4C4C;
      border-radius: 32px;
      padding: 10px;

      ul {
        display: flex;
        justify-content: space-between;
        align-items: center;

        a {
          display: block;
          padding: 20px 10px;
          width: 180px;
          text-align: center;
          border-radius: 32px;
          text-decoration: none;
          color: var(--white);
          transition: all .3s ease;

          &.active {
            background-color: var(--purple);
            box-shadow: 0 12px 74px 1px rgba(201, 39, 196, 0.63);
          }
        }

        a:hover {
          background-color: var(--purple);
          box-shadow: 0 12px 74px 1px rgba(201, 39, 196, 0.63);
        }
      }
    }

    .menu-block_items {
      background-color: var(--white);
      border-radius: 8px;
      overflow: hidden;
      /* padding: 26px 54px; */

      &>div {
        transition: all .5s ease;
        padding: 26px;

        @media (max-width: 768px) {
          padding: 10px;
        }
      }

      .menu-item {
        height: 120px;
        display: flex;
        justify-content: center;
        align-items: center;

        img {
          max-height: 100%;
          max-width: 90%;
          object-fit: contain;
        }
      }
    }
  }

  .btn-action-partner {

    position: absolute;
    top: 50%;
    transform: translate(0, -50%);

    &.btn-prev {
      left: -50px;
    }

    &.btn-next {
      right: -50px;
    }
  }

  .btn-action {
    border-radius: 50%;
    border: none;
    background-color: #B66EB4;
    color: var(--white);
    padding: 5px 12px;
  }
}

.digital-journey {

  .accodian-view {
    &>div {
      background-color: var(--bgblue);
      /* padding: 20px; */
      /* height: 62px; */
      overflow: hidden;

      &:first-child {
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
      }

      &:last-child {
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
      }

      &.active {
        background-color: #00256B;
        color: white;


        .accodian-view_title {
          span {
            font-weight: 600;
          }

          a {
            color: white;
            font-weight: 600;
            transform: rotate(180deg);
          }
        }
      }
    }

    .accodian-view_title {
      display: flex;
      justify-content: space-between;
      padding: 20px;

      span {
        display: block;
        font-size: 14px;
        font-weight: 500;
      }

      a {
        transition: all .4s ease;
        color: var(--primary);
        font-size: 16px;
        font-weight: 500;
      }
    }

    .accodian-view_body {
      display: none;
      padding: 0px 20px 20px;

      &>div {
        img {
          height: 100%;
          width: 100%;
          object-fit: cover;
          border-radius: 12px;
        }
      }

      p {
        color: inherit;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 0;
      }

      .sub-accodian-view_body--kpi {
        display: none;
      }
    }
  }

  background-image: url('./assets/dotted_bg.png');

  .digital-journey_menu {

    &>div {
      padding: 18px;
      background-color: var(--bgblue);
      border-radius: 32px;
    }

    ul {

      li {
        border-bottom: 1px solid var(--lblue);
        padding: 8px 0;
      }

      li:last-child {
        border: none;
        padding-bottom: 0px;
      }

      li:first-child {
        padding-top: 0px;
      }
    }

    a {
      padding: 16px 24px;
      width: 100%;
      transition: all .3s ease;
      display: block;
      color: var(--primary);


      &.active {
        background-color: var(--blue);
        box-shadow: 0 12px 74px 0 rgba(0, 87, 255, 0.39);
        color: var(--white);
        border-radius: 32px;
      }
    }

    a:hover {
      background-color: var(--blue);
      box-shadow: 0 12px 74px 0 rgba(0, 87, 255, 0.39);
      border-radius: 32px;
      color: var(--white);
    }
  }

  .digital-journey_content--primary {

    img {
      width: 100%;
      max-height: 100%;
      object-fit: cover;
      border-radius: 12px;
    }

    .digital-journey_content--desc {
      border-radius: 12px;
      position: absolute;
      bottom: 0;
      padding: 50px 24px 24px 24px;
      background: linear-gradient(0deg, var(--primary) 30%, transparent);
      color: var(--white);
    }

    &>div {
      &>div {
        transition: all .5s ease;
      }
    }
  }

  .digital-journey_content {

    .businessMenuMain {

      background-color: var(--primary);
      border-radius: 8px;

      &>div {

        transition: all .5s ease;
        padding: 30px;
        overflow: hidden;
      }
    }

    p {
      color: var(--white);
      font-weight: 600;
      font-size: 16px;

      span {
        color: #FFC9FD;
      }
    }

    .digital-journey_content--exp {
      /* height: 54px; */
      width: fit-content;

      img {
        height: 36px;
        width: 36px;
      }
    }

    img {
      height: 100%;
    }

    .expand-btn-desktop {
      border-radius: 50px;
      padding: 10px 13px;
      height: 30px;
      position: absolute;
      bottom: -16px;
      aspect-ratio: 1 / 1;

      left: 50%;
      transform: translate(-50%, 0px) rotate(90deg);
      transition: all .5s ease;

      button {
        border-radius: 50px;
        aspect-ratio: 1 / 1;
      }
    }

    .sub-accodian-view_body--kpi-button {
      i {
        transform: rotate(90deg);

        &.rotate {
          transform: rotate(270deg);
        }
      }
    }
  }
}

.digital-journey-secondary {
  background-color: var(--primary);

  .digital-journey_menu {

    &>div {
      background-color: #363636;
      padding: 18px;
      border-radius: 8px;
    }

    a {
      padding: 16px 24px;
      width: 100%;
      transition: all .3s ease;
      display: block;
      color: var(--white);
      border-radius: 12px;

      &.active {
        background-color: var(--blue);
        color: var(--white);
      }
    }

    a:hover {
      background-color: var(--blue);
      color: var(--white);
    }
  }

  .digital-journey_content {
    background-color: var(--white);
    border-radius: 8px;
    padding: 32px;

    .digital-journey_content--exp {
      height: 54px;
      width: fit-content;
    }

    span {
      font-weight: 600;
      font-size: 20px;
      color: var(--white);
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    img {
      height: 100%;
    }
  }
}

.form-section {

  transition: all .3s ease;
  background-color: var(--primary);

  h3 {
    color: inherit !important;
  }

  p {
    padding-top: 18px;
    font-size: 22px;
  }

  .form-info {
    font-size: 14px;
    color: inherit;
    display: block;
    margin-left: 6px;
  }

  button {
    padding: 13.5px 97.5px;
  }
}

.blog-sections {
  background: var(--primary);
  padding: 60px 0;

  p {
    color: var(--white);
  }
}

.newsletter {

  margin-top: -100px;
  transform: translate(0px, 85px);

  >div {
    padding: 48px 68px;
    background-color: #00308C;
    border-radius: 12px;
  }

  p {
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: var(--white);
  }

  input {
    padding-right: 90px;
  }

  .mail-action {
    span {
      font-size: 12px;
      color: white;
      display: block;
      margin-top: 5.5px;
    }
  }

  form {

    position: relative;

    input:not([type="submit"]) {
      padding: 10px 16px;
      border-radius: 8px !important;
      padding-right: 90px !important;
    }

    input[type="submit"] {
      padding: 11px 16px !important;
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
      width: fit-content;
    }

    .webform-confirmation {
      color: white !important;
      text-align: center;
    }

    .webform-confirmation__back {
      margin-top: 8px;
      text-align: center;

      a {
        color: white;
        font-weight: 500;

        display: inline-block;
        position: relative;
        text-decoration: none;

        &::after {
          content: '';
          position: absolute;
          width: 100%;
          transform: scaleX(0);
          border-radius: 5px;
          height: 0.05em;
          bottom: 0;
          left: 0;
          background: currentcolor;
          transform-origin: bottom right;
          transition: transform 0.25s ease-out;
        }

        &:hover::after {
          transform: scaleX(1);
          transform-origin: bottom left;
        }

        &::before {
          content: '←';
          margin-right: 4px;
          font-weight: 500;
        }
      }
    }
  }

  .newsletter-submit {
    background-color: var(--blue);
    color: var(--white);
    border: none;
    position: absolute;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 10px 17px;
    right: 0;
    top: 0;
  }
}

.proprietar-delivery {
  padding: 80px 0;

  h3,
  p {
    color: inherit !important;
  }

  h3 {
    margin-bottom: 16px;
  }

  p {
    margin-bottom: 16px;
    font-size: 18px;
  }
}

footer {
  background-color: var(--primary);
  padding: 140px 0 40px 0;

  a {
    color: var(--secondary);
  }

  ul {
    line-height: 35px;

    li:first-child {
      font-weight: 600;
      font-size: 16px;
    }

    li:not(:first-child) {
      font-weight: 500;
      font-size: 15px;
    }
  }

  .social-link {
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
    /* span {
          font-weight: 500;
          font-size: 16px;
      } */
  }

  /* i {
      color: var(--secondary);
      margin-right: 10px;
      font-size: 24px;
  } */

  .copy-right {
    color: var(--secondary);
    font-size: 10px;
  }
}


/* ABOUT US */

.about-us,
.taxonomy-id-14 {

  span,
  p {
    font-weight: 500;
  }

  h3,
  h4 {
    color: inherit !important;
  }

  h5,
  span,
  p {
    color: inherit;
  }

  section {
    background-size: cover;
    padding: 56px 0;
  }

  .meet-leadership {

    .meet-leadership_content--profile {
      margin: 0 auto;
      height: 125px;
      width: 125px;
      border-radius: 50%;
      overflow: hidden;
      margin-bottom: 12px;

      @media (max-width: 768px) {
        height: 81px;
        width: 81px;
      }

      img {
        height: 100%;
        width: 100%;
        object-fit: cover;
      }
    }

    .custom-modal-header {
      .meet-leadership_content--profile {
        height: 107px;
        width: 107px;
      }

      .custom-btn-close {
        background: none;
        border: none;
        color: var(--white);
        position: absolute;
        top: 14px;
        right: 14px;
        font-size: 24px;
      }

    }

    .custom-modal-body {
      padding: 30px 50px;

      ul {
        list-style: disc;

        li:not(:last-child) {
          padding-bottom: 20px;
        }
      }
    }

    .meet-leadership_content {

      text-align: center;
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 36px;



      @media (max-width: 768px) {
        gap: 0;
        justify-content: start;

        h5 {
          font-size: 18px !important;
        }

        span {
          font-size: 14px !important;
        }
      }

      &>div {
        flex: 1 1 250px;
        max-width: 289px;

        @media (max-width: 768px) {
          flex: 0 0 50%;
          max-width: 289px;
          margin-bottom: 32px;
        }
      }

      .btn-view {
        padding: 7px 22px;
        font-size: 14px;
        border-radius: 8px;
        color: var(--blue);
        margin: 0 auto;
      }

      .social-link {
        color: #00256B;
        margin-left: 5px;
      }

      h5,
      span,
      p {
        color: inherit;
      }

      span {
        font-size: 16px;
        margin: .5rem 0;
        display: block;

      }

    }
  }

  .delivery-model {

    .delivery-model_content {


      margin: 36px 0;

      &>div {
        max-width: 235px;
        text-align: center;

        &.line {
          display: block;
          height: 2px;
          background-color: #fff;
          width: 79px;
          transform: translate(0px, -40px);

          @media (max-width: 768px) {
            height: 51px;
            width: 2px;
            transform: translate(0px, 0px);
            margin: 16px 0;
          }
        }
      }


      .delivery-model_content--circle {
        width: 12vw;
        max-width: 166px;
        aspect-ratio: 1 / 1;
        background-color: var(--white);
        border-radius: 50%;
        margin: 0 auto 12px auto;

        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;

        img {
          width: 6vw;
          max-width: 72px;

          @media (max-width: 768px) {
            width: 45px;
          }
        }

        @media (max-width: 768px) {
          width: 107px;
        }

        >div {
          width: 50px;
          aspect-ratio: 1 / 1;
          background-color: var(--blue);
          border: 6px solid #00256B;
          border-radius: 50%;
          position: absolute;
          right: -25px;

          display: flex;
          justify-content: center;
          align-items: center;
        }
      }
    }

    a {
      color: var(--lblue);
      border-color: var(--lblue);
    }
  }

  .our-culture {

    .our-culture_content {

      margin-top: 42px;

      .our-culture_content--index {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--bgblue);
        color: var(--blue);
        border-radius: 50%;
        width: 44px;
        aspect-ratio: 1 / 1;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 16px;
      }

      .our-culture_content--desc {
        display: flex;

        &>div:first-child {
          height: 1px;
          background-color: #A09F9F;
          width: 52px;
          margin-top: 14px;
          margin-right: 10px;
        }

        &>div:last-child {
          width: calc(100% - 52px);
        }
      }
    }
  }

  @media (max-width: 768px) {
    .digital-goals-header {
      padding-bottom: 23px;
    }
  }


  .digital-goals {

    padding-top: 0;

    .quotes {
      margin-top: 35px;

      svg {
        vertical-align: super;
      }

      p:last-child {
        color: var(--lblue);
        font-size: 20px;
      }
    }

    &.mobile-view {
      padding-top: 0;

      .quotes {
        margin-top: 40px;

        p {
          font-weight: 500;
          font-size: 12px;
          margin: 0;
        }

      }

      .digital-goals_body--mobile {
        &>div:first-child {
          position: sticky;
          top: 0;
          background-color: #020F29;
          padding: 12px 0;
        }
      }

      .digital-goals_body--card {

        &>div {
          background-color: #00256B;
          border-radius: 8px;
          padding: 16px;
        }

        p {
          font-weight: 500;
          font-size: 16px;
          margin: 0;
        }

        &>div:not(:last-child) {
          margin-bottom: 16px;
        }
      }

      .digital-goals_content--icon {

        display: flex;

        &>div {
          margin-right: 12px;


          &>div {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--bgblue);
            color: var(--blue);
            border-radius: 50%;
            width: 49px;
            height: 49px;
            padding: 10px;
            /* aspect-ratio: 1 / 1; */
            font-size: 20px;
            font-weight: 600;

            img {
              height: 100%;
              width: 100%;
              object-fit: contain;
            }
          }
        }
      }
    }

    .digital-goals_title {
      padding: 56px;
      background-color: #021333;
    }

    .digital-goals_body {

      display: flex;
      align-items: center;
      position: relative;



      h3 {
        text-align: end;
      }

      &>div:first-child {
        text-align: center;
        display: flex;
        align-items: center;
        width: 55%;

        @media (max-width: 1400px) {
          width: 75% !important;
        }

        @media (max-width: 1200px) {
          width: 120% !important;
        }
      }

      &>div:nth-child(1) {
        /* position: absolute; */
        /* height: 150%; */
        /* aspect-ratio: 1 / 1; */
        border: dashed 3.5px var(--white);
        border-color: transparent var(--white) transparent transparent;
        border-radius: 50%;
      }

      &>div:last-child {

        .digital-goals_content--content {
          display: flex;
          align-items: center;

          p {
            margin-bottom: 0 !important;
          }

          &:nth-child(1) {
            margin-left: -90px;

            @media (max-width: 1400px) {
              margin-left: -92px !important;
            }

            @media (max-width: 1200px) {
              margin-left: -100px !important;
            }
          }

          &:nth-child(2) {
            margin-left: -46px;

            @media (max-width: 1400px) {
              margin-left: -45px !important;
            }
          }

          &:nth-child(3) {
            margin-left: -30px;
          }

          &:nth-child(4) {
            margin-left: -45px;

            @media (max-width: 1400px) {
              margin-left: -40px !important;
            }
          }

          &:nth-child(5) {
            margin-left: -92px;

            @media (max-width: 1400px) {
              margin-left: -80px !important;
            }
          }

        }

        .digital-goals_content--content:not(:last-child) {
          margin-bottom: 32px;
        }

        .digital-goals_content--icon {

          display: flex;
          align-items: center;
          margin-right: 22px;

          &>div {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--bgblue);
            color: var(--blue);
            border-radius: 50%;
            width: 58px;
            height: 58px;
            padding: 10px;
            /* aspect-ratio: 1 / 1; */
            font-size: 20px;
            font-weight: 600;

            img {
              height: 100%;
              width: 100%;
              object-fit: contain;
            }
          }
        }

        p {
          font-weight: 600;
          font-size: 20px;
        }
      }
    }
  }


  .philosophy {
    padding: 0;

    @media (max-width: 768px) {
      padding: 10px;

      h3,
      p,
      .curved-underline {
        font-weight: 500 !important;
        font-size: 18px !important;
      }

      h2 {
        font-size: 24px !important;
      }

      .curved-underline {
        text-indent: 2em;

        img {
          height: 50px !important;
          left: -18px !important;
          top: -42px !important;
          transform: rotate(45deg) !important;
        }
      }
    }

    &>div {
      padding: 56px 0;
      background: center / contain no-repeat;

    }

    .philosophy-content {
      margin-top: 99px;

      p {
        margin-top: 16px;
      }

      @media (max-width: 768px) {
        margin-top: 78px;
      }
    }

    .curved-underline {
      display: flex;
      font-weight: 500;
      font-size: 26px;
      height: 20px;
      justify-self: center;
      margin-top: 33px;
      position: relative;

      img {
        height: 100px;
        position: absolute;
        left: -180px;
        top: -40px;
      }

      &>div {
        margin: 0 10px;
      }

      .highlight {
        height: 20px;
        display: block;
        width: calc(100% + 10px);
        border: solid 6px var(--blue);
        border-color: var(--blue) transparent transparent transparent;
        border-radius: 50% / 10px 10px 0 0;
      }
    }
  }


}

.form-section_social {
  a {
    color: #00256B;
    width: fit-content;
    margin-top: 18px;
  }

  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: 20px;
}

.location-section {

  .location-section_map {

    position: relative;
    margin-top: 28px;

    .location-section_map--address {
      i {
        font-size: 30px;
      }

      position: absolute;
      transform: translate(-50%, -50%);
      color: inherit;
      white-space: nowrap;
      pointer-events: none;

      &.Chicago {
        top: 29%;
        left: 37%;
      }

      &.Austin {
        top: 52%;
        left: 35%;
      }

      &.Chennai {
        top: 61%;
        left: 77%;
      }


      @media (max-width: 1400px) {
        &.Chicago {
          top: 27%;
          left: 40%;
        }

        &.Austin {
          top: 52%;
          left: 38%;
        }
      }

      @media (max-width: 1200px) {
        &.Chicago {
          top: 25%;
          left: 43%;
        }

        &.Austin {
          top: 54%;
          left: 41%;
        }

        &.Chennai {
          top: 64%;
          left: 79%;
        }
      }

      @media (max-width: 992px) {
        &.Chicago {

          top: 25%;
          left: 41%;

          h4 {
            font-size: 16px !important;
          }

          p {
            font-size: 12px !important;
          }

          i {
            font-size: 20px;
          }
        }

        &.Austin {

          top: 54%;
          left: 39%;

          h4 {
            font-size: 16px !important;
          }

          p {
            font-size: 12px !important;
          }

          i {
            font-size: 20px;
          }
        }

        &.Chennai {

          top: 64%;
          left: 78%;

          h4 {
            font-size: 16px !important;
          }

          p {
            font-size: 12px !important;
          }

          i {
            font-size: 20px;
          }
        }
      }
    }

    img {
      width: 100%;
      height: auto;
      display: block;
    }
  }

  .location-section_address {
    margin-top: 42px;

    h5 {
      margin-bottom: 24px;
    }

    span {
      font-size: 18px;
      font-weight: 500;
      display: block;
      margin-bottom: 8px;
    }

    p {
      font-size: 14px;
      color: inherit;
    }
  }
}

.action-btns {
  position: absolute;
  top: 126px;
  z-index: 9;
  transition: all .3s ease 0.6s;

  &.right {
    right: 0;
  }

  &.left {
    left: 0;
  }
}

.btn-action {
  border-radius: 50%;
  border: none;
  background-color: var(--blue);
  color: var(--white);
  padding: 5px 12px;

}

.swiper-button-disabled {
  background-color: #4C4C4C;
  cursor: not-allowed;
  opacity: 0;
}

.swiper-main {
  margin-left: 50px !important;
  margin-right: 50px !important;
  transition: all 1s ease 0.5s;
  /* width: calc(100% - 100px); */
  width: 100%;
}

.left-close {
  margin-left: 0 !important;
}

.right-close {
  margin-right: 0 !important;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.card {
  width: 100%;
  border: none !important;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: inherit !important;
  background-color: inherit !important;
}

.swiper-slide:hover a {
  color: var(--lblue);

  &::before {
    transform: scaleX(1);
    transform-origin: center;
    color: var(--lblue);
  }
}

.swiper-inner {

  margin-bottom: 32px;
  color: inherit;
  background-color: var(--primary);

  &>div:last-of-type>span {
    color: var(--white);
  }

  div:first-child {
    height: 284px;
    width: 100%;
  }

  img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 12px;
  }

  .card__title {
    font-weight: 500;
    width: 240px;
    border-radius: 12px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.06);
    padding: 10px 0;
    text-align: center;
    color: var(--primary);
    background-color: var(--white);
    transform: translate(0px, -24px);
  }

  span {
    font-weight: 500;
    font-size: 16px;
    color: inherit;
  }

  a {
    display: block;
    border-top: 1px solid rgba(215, 215, 215, 1);
    font-weight: 500;
    padding-top: 15px;
    margin-top: 14px;
    text-decoration: none;
    color: rgba(113, 112, 112, 1);
    text-align: center;
    transition: all .3s ease;
    position: relative;

    &::before {
      content: '';
      position: absolute;
      width: 100%;
      transform: scaleX(0);
      border-radius: 5px;
      height: 1.5px;
      top: -1px;
      left: 0;
      background: currentcolor;
      transform-origin: center;
      transition: transform 0.25s ease-out;
    }
  }
}

.blog-sections-main {
  padding: 56px 0;

  .blog-sections-main_filter {

    margin-bottom: 40px;
    display: flex;
    justify-content: flex-end;

    &>div {
      margin-left: 12px;
    }

    input[type="text"] {
      background-color: #E8E8E8;
      color: var(--primary);
      padding-left: 32px;
    }

    .mag-icon {
      color: #484848;
      position: absolute;
      top: 10px;
      left: 10px;

    }

    button {
      padding: 10px 18px;
      border-radius: 8px;
      font-size: 14px;

      i {
        vertical-align: text-bottom;
      }
    }

    .btn-dropdown {
      position: relative;

      .filter-btn {
        &.active {
          i {
            transform: rotate(180deg);
          }
        }
      }
    }

    .dropdown-inner {
      background-color: #F7F7F7;
      top: 60px;
      left: -230px;
      width: 433px;
      box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.39);
      position: absolute;
      z-index: 10;
      border-radius: 12px;


      &>div {
        padding: 32px;

        h4 {
          color: var(--primary) !important;
        }
      }

      .dropdown-inner_sub--header {

        .dropdown-inner_sub--action {
          transition: all .3s ease;
          color: var(--primary);

          &.active {
            transform: rotate(180deg);
          }
        }

        &>div:not(:last-child) {
          border-bottom: 1px solid rgba(184, 184, 184, 1);
          padding-bottom: 16px;
        }

        &>div:last-child {
          display: flex;
          margin-top: 16px;
          justify-content: flex-end;

          a {
            margin-left: 12px;
            display: block;
            padding: 10px 18px;
            border-radius: 8px;
            font-size: 14px;
          }
        }
      }

      .dropdown-inner_sub--body {
        &>div {
          padding-top: 16px;
          display: flex;
          align-items: center;
          flex-wrap: wrap;

          .filter-items {
            display: block;
            margin-right: 16px;
            margin-bottom: 16px;
            padding: 10px 20px;
            border: .5px solid rgba(102, 102, 102, 1);
            width: fit-content;
            color: #484848;

            &.active,
            &:hover {
              border-color: var(--blue);
              color: var(--blue);
              background-color: var(--bgblue);
            }
          }
        }
      }
    }
  }

}

.breadcrumb-custom {
  padding-top: 120px;
}

.blog-main {
  .blog-banner {

    border-radius: 12px;
    overflow: hidden;

    img {
      height: 459px;
      width: 100%;
      object-fit: cover;
    }


  }

  h4 {
    color: inherit !important;
  }

  p,
  li {
    font-size: 16px;
    font-weight: 500;
    color: inherit;
  }

  ul {
    list-style: disc;
    padding-left: 2rem !important;

    li {
      margin-bottom: 16px;
    }
  }

  .blog-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 48px 0;
    gap: 16px;

    &>div {

      width: 32%;
      /* height: 333px; */
      aspect-ratio: 1.5 /1;
      border-radius: 12px;
      overflow: hidden;

      img {
        height: 100%;
        width: 100%;
        object-fit: cover;
      }

    }
  }
}

.chips-btn {
  border: 1px solid var(--blue);
  width: fit-content;
  border-radius: 50px;
  color: var(--blue);
  padding: 6px 10px;
  margin-right: 12px;

  a {
    margin-left: 10px;
  }
}

.how-we-deliver {

  h3,
  h4 {
    color: inherit !important;
  }

  h5,
  span,
  p {
    color: inherit;
  }

  section {
    background-size: cover;
    padding: 56px 0;
  }

  .framework-section {

    h3 {
      margin-bottom: 16px;
    }

    .framework-enabled {
      span {
        font-weight: 500;
        font-size: 18px;
      }

      &>div {
        margin-top: 38px;
      }
    }

    .frameworks-card {
      background-color: #003EB5;
      padding: 16px;
      color: inherit;
      border-radius: 8px;
      margin-bottom: 30px;

      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;

      &>div {
        background-color: var(--bgblue);
        padding: 10px;
        width: fit-content;
        border-radius: 50px;
        aspect-ratio: 1 / 1;

        img {
          height: 30px;
        }
      }

      span {
        font-size: 18px;
        font-weight: 500;
        color: white;
      }
    }

    .framework-sets {

      border: 2px solid rgba(0, 37, 107, 1);
      border-radius: 32px;
      padding: 44px;
      margin-top: 82px;

      h3 {
        font-size: 40px !important;
        font-weight: 700 !important;
        margin: 0;
        position: absolute;
        top: -36px;
        background: white;
        padding: 10px 24px;
        left: -24px;
      }

      p:last-child {
        margin: 0;
      }
    }
  }

  .achieve-count {

    background-color: #E6EEFF;
    padding: 40px 30px;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    width: fit-content;
    margin: 0 auto;


    .count-item {
      width: 161px;
      text-align: center;

      &:not(:last-child) {
        margin-right: 50px;
      }

      span:first-child {
        display: block;
        color: #00308C;
        font-size: 40px;
        font-weight: 600;
      }

      span:last-child {
        color: #1A1A1A;
        font-size: 16px;
        font-weight: 500;
      }
    }

    @media (max-width: 768px) {
      display: block;

      .count-item {
        width: 100%;
        margin-bottom: 50px;
        margin-right: 0px !important;
      }
    }
  }

  .technology-team {
    .technology-team_img {

      height: 100%;

      img {
        height: 100%;
        width: 100%;
        object-fit: cover;
      }
    }

    .technology-team_content {

      position: relative;

      .line {
        left: 26px;
        z-index: -1;
        position: absolute;
        height: calc(100% - 30px);
        border-left: 2px dashed #000;

        @media (max-width: 768px) {
          top: 32px;
          height: calc(100% - 80px);
        }
      }

      .technology-team_content--items {
        display: flex;
        align-items: center;

        &:not(:last-child) {
          margin-bottom: 65px;
        }

        &>div:first-child {
          margin-right: 12px;
          background-color: var(--bgblue);
          padding: 10px;
          width: fit-content;
          border-radius: 50px;
          aspect-ratio: 1 / 1;
          margin-bottom: 12px;

          img {
            height: 30px;
          }
        }

        span {
          color: inherit;
          font-weight: 500;
          font-size: 20px;
        }
      }

    }
  }
}