:root {
  --ddx-black: var(--color-primary);
  --ddx-black-2: #113043;
  --ddx-white: #fff;
  --ddx-white-op-4: var(--color-white) 7e;
  --ddx-gray: var(--color-gray-500);
  --ddx-blue-1: var(--color-blue);
  --ddx-blue-2: #48a0da;
  --ddx-blue-3: #479fdb;
  --ddx-red: #ff0000;
  --ddx-green: #0aaa41;
}

.ddx-intro {
  width: 100%;
  height: 100vh;
  position: relative;
}

.ddx-image {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.ddx-video {
  position: absolute;
  object-fit: cover;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-attachment: fixed;
}

.featured-video {
  height: 100%;
}

.ddxmask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-attachment: fixed;
  background-color: rgba(19, 47, 66, 0.8);
}

.mask-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: 95px;
  gap: 40px;
}

.ddx-into-subTitle {
  color: var(--ddx-white);
  font-family: var(--font-family-default-book);
  font-size: 20px;
  line-height: 30px;
}

.ddx-logo {
  max-width: 330px;
  height: auto;
}

/* button component */
.ddxLetsTalkBtn {
  cursor: pointer;
  width: 180px;
  height: 50px;
  background: transparent;
  border: 1px solid #f7f7f8;
  color: var(--ddx-white);
  font-size: 17px;
  font-family: var(--font-family-default-semibold);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ddxLetsTalkBtn:focus {
  outline: none;
}

.ddxLetsTalkBtn:hover {
  background: var(--ddx-white);
  color: var(--ddx-black);
}

/* custom button component */
.btn-mb-95 {
  margin-bottom: 95px;
}

/* detail container component */
.ddxDetails {
  padding-top: 45px;
  padding-bottom: 95px;
}

.ddxDetail-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.ddxDetail-title {
  font-size: 20px;
  color: var(--ddx-blue-1);
  font-family: var(--font-family-default-semibold);
}

.ddxDetail-subTitle {
  font-size: 26px;
  font-family: var(--font-family-default-medium);
  color: var(--ddx-black);
  text-align: center;
  line-height: 35px;
}

.ddxDetail-context-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
}

.ddxDetail-context-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
  width: 330px;
  height: 260px;
  border: 1px solid var(--ddx-blue-2);
}

.ddxDetail-context-box.hover:hover {
  background-color: var(--ddx-blue-2);
}

.ddxDetail-context-box:hover .ddxDetail-context-title.hover {
  color: var(--ddx-white);
}

.ddxDetail-context-box:hover .ddxDetail-context-subTitle.hover {
  color: var(--ddx-white);
}

.ddxDetail-context-box:hover .ddxDetail-context-arrow.hover .arrow-right-div {
  background-image: url("../images/svg/arrow-right-white.svg");
  margin-left: 25px;
  transition: all 1s;
}

.ddxDetail-context-box .ddxDetail-context-title {
  color: var(--ddx-blue-2);
  font-size: 22px;
  font-family: var(--font-family-default-medium);
  padding: 0 20px;
}

.ddxDetail-context-box .ddxDetail-context-subTitle {
  font-size: 18px;
  color: var(--ddx-black-2);
  padding-left: 25px;
  padding-right: 25px;
  font-family: var(--font-family-default-book);
  text-align: center;
}

.ddxDetail-context-box .ddxDetail-context-arrow .arrow-right-div {
  background-image: url("../images/svg/arrow-right-blue.svg");
  transition: all 1s;
}

button.ddxDetail-context-box {
  cursor: pointer;
  background-color: var(--ddx-white);
}

.ddx-featured {
  position: relative;
  height: 100vh;
}

.featured-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
  gap: 125px;
}

.featured-content .featured-title {
  font-size: 20px;
  color: var(--ddx-white);
  font-family: var(--font-family-default-semibold);
}

.featured-subTitle {
  font-size: 32px;
  color: var(--ddx-white);
  text-align: center;
  line-height: 42px;
  font-family: var(--font-family-default-medium);
}

.featuredBtn {
  cursor: pointer;
  color: var(--ddx-white);
  background: transparent;
  border: none;
  font-size: 16px;
  font-family: var(--font-family-default-medium);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.featuredBtn .arrow-right-div {
  background-image: url("../images/svg/arrow-right-white.svg");
}

.featuredBtn:focus {
  outline: none;
}

.ddx-team {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--ddx-blue-3);
}

.ddx-team-title {
  font-size: 20px;
  font-family: var(--font-family-default-semibold);
  color: var(--ddx-white);
  text-align: center;
  margin-top: 45px;
}

.ddx-team-subTitle {
  font-family: var(--font-family-default-medium);
  font-size: 26px;
  text-align: center;
  color: var(--ddx-white);
  padding-top: 45px;
  padding-bottom: 80px;
  line-height: 35px;
}

.ddx-team-slider-container {
  width: 100%;
  overflow: hidden;
  padding-left: 15px;
  position: relative;
}

.ddx-team-slider {
  overflow-y: hidden;
  overflow-x: auto;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  margin-bottom: -50px;
  padding-bottom: 50px;
  padding-right: 30px;
  gap: 20px;
  user-select: none;
  justify-content: center;
  scroll-behavior: smooth;
}

.slider-box {
  cursor: pointer;
  height: 385px;
  min-width: 310px;
  max-width: 310px;
  background-color: var(--ddx-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  padding-top: 20px;
}

.ddx-team-member-profile {
  width: 152px;
  height: 152px;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
}

.ddx-team-member-name {
  font-family: var(--font-family-default-medium);
  font-size: 26px;
  color: var(--ddx-blue-2);
}

.ddx-team-member-title {
  color: var(--ddx-black);
  text-align: center;
  font-family: var(--font-family-default-light);
  font-size: 22px;
  padding-left: 30px;
  padding-right: 30px;
  line-height: 30px;
}

.ddx-team-scroll-button,
.ddx-team-scroll-button-left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background-color: var(--color-blue);
  border-radius: 9999px;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 999;
}

.ddx-team-scroll-button {
  right: 36px;
}

.ddx-team-scroll-button-left {
  transform: rotate(180deg) translateY(50%);
}

.ddx-team-scroll-button-img,
.ddx-team-scroll-button-left-img {
  width: 30% !important;
  height: 30% !important;
  min-width: 0px !important;
  min-height: 0px !important;
}

.ddxContactUs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 350px;
}

.ddxContact-title {
  font-family: var(--font-family-default-semibold);
  font-size: 20px;
  color: var(--ddx-blue-2);
}

.ddxContact-subTitle {
  font-family: var(--font-family-default-medium);
  font-size: 26px;
  color: var(--ddx-black);
  line-height: 30px;
  text-align: center;
}

.ddx-contact-btn {
  border: 1px solid var(--ddx-blue-2);
  color: var(--ddx-blue-3);
}

.ddx-contact-btn:hover {
  background-color: var(--ddx-blue-3);
  color: var(--ddx-white);
}

/* MODAL */
.ddxmodal {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--ddx-blue-3);
  background-image: url("/wp-content/themes/obss/assets/ddx/images/modal-bg.svg");
  background-repeat: no-repeat;
  background-position: 0% 73%;
  color: var(--ddx-white);
  transform: translateX(130vw);
  transition: all 1s;
}

.ddxmodal.show {
  transform: translateX(0);
  transition: all 1s;
}

.ddxmodal-header {
  position: absolute;
  z-index: 1;
  width: 100%;
  background-color: var(--ddx-blue-3);
  display: flex;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  justify-content: space-between;
}

.ddxmodal-body {
  overflow-x: auto;
  height: 100vh;
  padding-top: 60px;
  padding-bottom: 55px;
}

.ddxmodal-lets-talk-body {
  overflow-x: auto;
  height: 100vh;
  padding-top: 65px;
  padding-bottom: 55px;
}

/* letsTalk Modal Body*/
.ddx-close-btn {
  cursor: pointer;
  background-color: transparent;
  background-image: url("../images/svg/plus-white.svg");
  transform: rotate(45deg);
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 25px;
}

.ddxLetsTalk-title {
  font-family: var(--font-family-default-semibold);
  line-height: 18px;
  font-size: 15px;
  margin-bottom: 0px;
}

.ddxLetsTalk-subTitle {
  font-family: var(--font-family-default-medium);
  font-size: 26px;
  line-height: 40px;
  margin-bottom: 0px;
}

.ddxContact-us-container {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.ddxContact-us-title {
  font-family: var(--font-family-default-medium);
  font-size: 22px;
}

.ddxContact-us-mail,
.ddxContact-us-phone {
  font-family: var(--font-family-default-light);
  font-size: 22px;
  text-decoration: underline;
  text-decoration-color: var(--ddx-white-op-4);
  display: inline-block;
}

.ddxContact-us-mail {
  margin-top: 15px;
  margin-bottom: 35px;
}

.ddxContact-us-map-container {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  gap: 35px;
}

.map-info-container {
  display: flex;
  flex-direction: column;
}

.ddx-map-city-name-container {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.ddx-map-marker {
  width: 17px;
  height: 23px;
  background-image: url("../images/svg/map-marker-alt-white.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.ddx-map-city-name {
  font-family: var(--font-family-default-medium);
  font-size: 22px;
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: var(--ddx-white-op-4);
  color: var(--ddx-white);
}

.ddx-map-city-name:hover {
  text-decoration: underline;
  text-decoration-color: var(--ddx-white-op-4);
  color: var(--ddx-white);
}

.ddx-map-city-address {
  width: 227px;
  font-size: 16px;
  font-family: var(--font-family-default-thin);
  line-height: 25px;
  padding-left: 35px;
}

.ddx-modal-proje-info {
  margin-top: 50px;
  background-color: var(--ddx-white);
  padding-top: 30px;
  padding-bottom: 30px;
}

.ddx-second-step {
  display: none;
}

.ddx-first-step-title {
  font-family: var(--font-family-default-medium);
  font-size: 30px;
  line-height: 40px;
  color: var(--ddx-black-2);
}

.ddx-first-step-subTitle {
  font-family: var(--font-family-default-light);
  color: var(--ddx-black-2);
  font-size: 20px;
  line-height: 30px;
}

.ddx-first-step-lists {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 0px;
}

.ddx-first-step-list-item {
  cursor: pointer;
  font-family: var(--font-family-default-light);
  border: 1px solid var(--ddx-blue-2);
  color: var(--ddx-blue-3);
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ddx-step-plus {
  width: 20px;
  height: 20px;
  background-image: url("../images/svg/plus-blue.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.ddx-first-step-list-item.selected {
  background-color: var(--ddx-blue-2);
  color: var(--ddx-white);
}

.ddx-first-step-list-item.selected .ddx-step-plus {
  transform: rotate(45deg);
  background-image: url("../images/svg/plus-white.svg");
}

.ddx-next-btn-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 25px;
}

.ddx-next-btn {
  right: 5px;
  left: unset;
}

.ddx-prev-btn {
  left: 5px;
  right: unset;
}

.ddx-contact-next-btn {
  cursor: pointer;
  border: 1px solid var(--ddx-blue-2);
  background-color: var(--ddx-white);
  color: var(--ddx-blue-3);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  height: 50px;
  font-family: var(--font-family-default-semibold);
  font-size: 17px;
  line-height: 24px;
}

.ddx-next-step-icon {
  width: 20px;
  height: 20px;
  background-image: url("../images/svg/arrow-right-blue.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.ddx-contact-next-btn span {
  margin-right: 5px;
}

.ddx-contact-next-btn:hover {
  background-color: var(--ddx-blue-3);
  color: var(--ddx-white);
}

.ddx-contact-next-btn:hover .ddx-next-step-icon {
  background-image: url("../images/svg/arrow-right-white.svg");
}

.ddx-contact-next-btn:focus {
  outline: none;
}

.ddx-next-btn:focus {
  outline: none;
}

.ddx-dots {
  position: absolute;
  bottom: 5px;
  left: 45%;
}

/* second step */
.ddx-second-step-title {
  font-size: 30px;
  font-family: var(--font-family-default-medium);
  color: var(--ddx-black-2);
}

.ddx-second-step-subTitle {
  font-family: var(--font-family-default-light);
  font-size: 15px;
  color: var(--ddx-black-2);
  margin-top: 10px;
  margin-bottom: 20px;
}

.ddx-second-step-input {
  font-family: var(--font-family-default-medium);
  margin: 10px 0;
  padding: 5px;
  height: 50px;
  width: 100%;
  border: 1px solid var(--ddx-blue-2);
}

.ddx-second-step-input::placeholder {
  color: var(--ddx-blue-2);
  opacity: 1;
}

.ddx-second-step-projectDescription {
  font-family: var(--font-family-default-medium);
  margin-top: 10px;
  padding: 5px;
  height: 100px;
  width: 100%;
  border: 1px solid var(--ddx-blue-2);
}

.ddx-second-step-projectDescription::placeholder {
  color: var(--ddx-blue-2);
  opacity: 1;
}
.step-inputs-error {
  display: none;
  margin-top: 0px;
  margin-bottom: 5px;
  font-family: var(--font-family-default-medium);
  color: var(--ddx-red);
}
.step-inputs-error.show {
  display: block;
}

.ddx-third-step {
  display: none;
  flex-direction: column;
  align-items: center;
  min-height: 500px;
}

.ddx-third-step-success-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: var(--ddx-green);
  padding: 13px;
  border-radius: 100%;
}

.ddx-third-step-success-icon {
  width: 100%;
  height: 100%;
  background-image: url("../images/svg/check-white.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.ddx-third-step-title {
  font-size: 32px;
  font-family: var(--font-family-default-medium);
  color: var(--ddx-black-2);
  margin: 40px 0;
}

.ddx-third-step-subTitle {
  font-family: var(--font-family-default-light);
  font-size: 24px;
  line-height: 40px;
  color: var(--ddx-black-2);
}

/* letsTalk Modal Body END*/

/* strategy Modal Body START*/

.ddx-strategy-modal-subtitle {
  margin: 0;
  font-size: 25px;
  font-family: var(--font-family-default-medium);
  line-height: 35px;
}

.ddx-strategy-detail-subTitle {
  font-size: 17px;
  font-family: var(--font-family-default-book);
  line-height: 25px;
  color: var(--ddx-black-2);
}

.ddx-capabilities-modal-list {
  margin-top: 20px;
  padding-inline-start: 9px;
}

.ddx-capabilities-modal-list-item {
  font-family: var(--font-family-default-book);
  font-size: 18px;
  color: var(--ddx-black-2);
  padding: 5px 0;
  padding-left: 30px;
}

.ddx-capabilities-modal-list-item::marker {
  content: "\2022";
  color: var(--ddx-blue-3);
  display: inline-block;
  width: 1em;
  font-size: 30px;
}

/* CAROUSEL START */

/* Slideshow container */
.carousel-body {
  padding-bottom: 0;
}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.ddxFeaturedSlides {
  display: none;
}

.ddxFeaturedSlides-container {
  background-color: var(--ddx-white);
  color: var(--ddx-black-2);
  flex-direction: column;
  height: 91vh;
}

.ddxFeaturedSlides .ddx-modal-left-side {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding-left: 40px;
  padding-right: 40px;
}

.ddx-product-title {
  font-size: 30px;
  font-family: var(--font-family-default-semibold);
}

.ddx-product-feature {
  font-family: var(--font-family-default-semibold);
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 5px;
}

.ddx-product-detail {
  font-family: var(--font-family-default-book);
  line-height: 20px;
  padding-bottom: 5px;
  margin-bottom: 5px;
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Next button */
.ddx-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  color: var(--ddx-white);
  background-color: var(--ddx-blue-3);
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 50%;
  user-select: none;
}

.ddx-featured-work-scroll-button-img,
.ddx-featured-work-scroll-button-img-prev {
  width: 16px !important;
  height: 16px !important;
  min-width: 0px !important;
  min-height: 0px !important;
}

.ddx-featured-work-scroll-button-img-prev {
  transform: rotate(180deg);
}

/* The dots/bullets/indicators */
.ddx-dot {
  cursor: pointer;
  height: 20px;
  width: 20px;
  margin: 0 2px;
  background-color: var(--ddx-blue-3);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.ddx-dot.active,
.ddx-dot:hover {
  background-color: var(--ddx-black-2);
}

/* CAROUSEL END */

.padding-right-left-30 {
  padding-left: 15px;
  padding-right: 15px;
}

.padding-right-left-25 {
  padding-left: 25px;
  padding-right: 25px;
}

.obss-ddx-contact-schedule-meeting-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

a.obss-ddx-contact-form-schedule-meeting-button {
  border: 1px solid var(--ddx-blue-2);
  color: var(--ddx-blue-3);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  height: 50px;
  font-family: var(--font-family-default-semibold);
  font-size: 17px;
  line-height: 24px;
}

a.obss-ddx-contact-form-schedule-meeting-button:hover {
  background-color: var(--ddx-blue-3);
  color: var(--ddx-white);
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .padding-right-left-30 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .ddx-team-slider-container {
    padding-left: 30px;
  }
}

@media (max-width: 991px) {
  .ddx-strategy-modal-subtitle {
    margin-top: 35px;
    margin-bottom: 35px;
  }
}

@media (min-width: 992px) {
  .ddx-next-btn span {
    margin-right: 10px;
  }

  .ddx-logo {
    max-width: 500px;
    height: auto;
  }

  .ddx-video {
    height: 100%;
  }

  .mask-content {
    padding-bottom: 150px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .ddx-into-subTitle {
    font-size: 26px;
    line-height: 36px;
    max-width: 540px;
  }

  .ddxDetails {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .ddxDetail-title {
    font-size: 30px;
    line-height: 40px;
  }

  .ddxDetail-subTitle {
    font-size: 50px;
    width: 100%;
    line-height: 55px;
  }

  .ddxDetail-context-container {
    margin-top: 95px;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 10px;
  }

  .featured-content .featured-title {
    font-size: 30px;
    line-height: 40px;
  }

  .featured-subTitle {
    font-size: 55px;
    width: 785px;
    height: 190px;
    text-align: center;
    line-height: 65px;
  }

  .featuredBtn {
    font-size: 22px;
    gap: 10px;
    transition: all 1s;
  }

  .featuredBtn:hover {
    gap: 20px;
    transition: all 1;
  }

  .ddxDetail-context-box .ddxDetail-context-subTitle {
    font-size: 22px;
  }

  .ddx-team-slider-container {
    padding-left: 50px;
  }

  .ddx-team-title {
    font-size: 30px;
    line-height: 40px;
  }

  .ddx-team-subTitle {
    font-size: 50px;
    width: 100%;
    line-height: 55px;
  }

  .ddx-team-slider {
    gap: 25px;
  }

  .slider-box {
    min-width: 350px;
    max-width: 350px;
    gap: 36px;
  }

  .ddxContactUs {
    height: 650px;
    gap: 70px;
    justify-content: center;
  }

  .ddxContact-title {
    font-size: 30px;
    line-height: 40px;
  }

  .ddxContact-subTitle {
    font-size: 50px;
    line-height: 60px;
  }

  .ddxmodal {
    background-position: 0 100%;
  }
  .ddxmodal-header {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 70px;
    padding-right: 70px;
  }
  .ddxmodal-body {
    display: flex;
    justify-content: space-between;
    height: 100%;
    padding-top: 120px;
    padding-left: 70px;
    padding-right: 70px;
  }
  .ddxmodal-lets-talk-body {
    display: flex;
    justify-content: space-between;
    height: 100%;
    padding-top: 120px;
    padding-left: 70px;
    padding-right: 70px;
  }

  .carousel-body {
    height: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  .ddx-modal-left-side {
    display: inline-flex;
    flex-direction: column;
  }

  .ddx-next-btn {
    right: 10px;
    left: unset;
  }

  .ddx-prev-btn {
    left: 10px;
    right: unset;
  }

  .ddx-lets-talk-modal .ddx-modal-right-side {
    width: 530px;
  }

  .ddxLetsTalk-subTitle {
    font-size: 60px;
    line-height: 75px;
    word-break: break-word;
    display: inline-block;
    padding-right: 25px;
  }

  .ddx-modal-proje-info {
    margin-top: 0;
    max-width: 510px;
    height: fit-content;
    max-height: 100%;
    overflow: auto;
  }

  .ddx-modal-proje-info-form {
    width: 510px;
  }

  .ddx-strategy-detail-subTitle {
    font-size: 22px;
    line-height: 32px;
  }

  .ddx-capabilities-modal-list-item {
    font-size: 20px;
  }

  .ddxContact-us-info-container {
    display: inline-flex;
    gap: 25px;
    justify-content: flex-start;
  }

  .ddxContact-us-container {
    gap: 10px;
    margin-top: 30px;
  }

  .ddxContact-us-map-container {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  .ddxContact-us-mail {
    margin-top: 0;
    margin-bottom: 0;
  }

  .capabilities-modal-body {
    justify-content: flex-start;
    align-items: center;
    height: 85vh;
    padding-bottom: 0;
    padding-left: 70px;
    padding-right: 70px;
    gap: 70px;
  }

  .capabilities-modal-body .ddx-modal-left-side,
  .capabilities-modal-body .ddx-modal-right-side {
    flex: 1;
    width: 50%;
  }

  .ddx-strategy-modal-subtitle {
    font-size: 52px;
    line-height: 61px;
    max-width: 610px;
  }
  .slideshow-container {
    max-width: 100%;
    height: 100%;
    margin: unset;
  }
  .ddxFeaturedSlides-container {
    flex-direction: row;
    height: 100%;
    width: 100vw;
  }
  .ddx-next {
    width: 75px;
    height: 75px;
  }
  .ddx-featured-work-scroll-button-img,
  .ddx-featured-work-scroll-button-img-prev {
    width: 22px !important;
    height: 22px !important;
  }
  .ddxFeaturedSlides .ddx-modal-left-side {
    position: absolute;
    background: var(--ddx-white);
    width: 40%;
    padding-top: 0;
    padding-left: 100px;
    padding-right: 0;
    text-align: left;
  }
  .ddxFeaturedSlides .ddx-modal-left-side::after {
    content: "";
    position: absolute;
    top: 0;
    right: -170px;
    background: var(--ddx-white);
    width: 218px;
    height: 100%;
    clip-path: polygon(0 100%, 100% 100%, 22% 0%);
  }
  .ddxFeaturedSlides .ddx-modal-right-side {
    flex: 2;
  }
  .ddx-product-title {
    padding-bottom: 30px;
    font-size: 50px;
    line-height: 60px;
  }
  .ddx-product-feature {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .ddx-product-detail {
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 25px;
    margin-bottom: 15px;
  }

  .ddx-dots {
    bottom: 20px;
    right: 25%;
    left: auto;
  }

  a.obss-ddx-contact-form-schedule-meeting-button {
    font-size: 20px;
    line-height: 32px;
  }

  .ddx-modal-right-side {
    height: 100%;
    display: flex;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .mask-content {
    padding-left: 100px;
    padding-right: 100px;
  }

  .ddxDetail-context-box {
    width: 340px;
    height: 325px;
  }

  .ddx-team-slider-container {
    padding-left: 100px;
  }
}

@media (min-width: 1300px) {
  .ddx-strategy-modal-subtitle {
    font-size: 60px;
    line-height: 75px;
  }
}
