/*=========== TABLE OF CONTENTS ===========
1. Reset CSS
2. Common CSS
3. Page CSS
4. Component CSS
5. Fonts CSS
==========================================*/

/*-------------------------------------
  1. Reset CSS
--------------------------------------*/
/* Adjust container styles */






body {
  margin: 0;
  padding: 0;
  font-family: Source Sans Pro;
}

* {
  box-sizing: border-box;
  line-height: normal;
  font-family: inherit;
  margin: unset;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  display: block;
}

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

input {
  background-color: transparent;
  width: 100%;
}

[type="text"],
input:where(:not([type])),
[type="email"],
[type="url"],
[type="password"],
[type="number"],
[type="date"],
[type="datetime-local"],
[type="month"],
[type="search"],
[type="tel"],
[type="time"],
[type="week"],
[multiple],
textarea,
select,
button {
  appearance: none;
  background-color: transparent;
  border-color: unset;
  border-width: 0;
  border-radius: unset;
  padding: unset;
  font-size: unset;
  line-height: unset;
  color: inherit;
}
input:focus-visible,
[multiple]:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
}

/*-------------------------------------
  2. Common CSS
--------------------------------------*/
/*.homepage {*/
/*  background-color: #ffffff;*/
/*  width: 100%;*/
/*}*/
.swiper-container {
  width: 80%; /* Adjust as needed to match the 'why us' section width */
  margin: 0 auto;
  position: relative;
  max-height: 500px; /* Adjust as necessary */
  overflow: hidden;
}


.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.swiper-slide h2 {
  position: absolute;
  bottom: 20px; /* Adjust as necessary */
  left: 50%;
  transform: translateX(-50%);
  color: white; /* Ensure contrast over image */
  background-color: rgba(0, 0, 0, 0.5); /* Optional: add background to the text */
  padding: 10px;
}
.slider-image {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 15px;
}

.slider-title {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 18px;
}

/*.swiper-pagination-bullet {*/
/*  background-color: #fff;*/
/*  opacity: 1;*/
/*  width: 12px;*/
/*  height: 12px;*/
/*  margin: 0 6px;*/
/*}*/

/*.swiper-pagination-bullet-active {*/
/*  background-color: #007BFF;*/
/*}*/
.swiper-slide img {
  width: 100%; /* Ensure images fit within the slider */
  height: auto; /* Maintain image aspect ratio */
}
.main-text__subtitle {
    font-size: 1.2em;
    line-height: 1.8em;
    margin-bottom: 20px;
}
.main-text {
  padding-top: 30px; /* Add space between slider and main text */
}
.about {
  background-color: #ffffff;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header Adjustment */
.header-1 {
  padding-top: 30px; /* Increased padding further to avoid overlap */
  padding-bottom: 30px;
  display: flex;
  align-self: stretch;
  justify-content: center;
  align-items: center;
  position: relative; /* Keep the header above other content */
  z-index: 3; /* Ensure the header stays above the hero section */
}

.header {
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.header__row {
  padding-left: 44px;
  padding-right: 44px;
  display: flex;
  justify-content: center;
  @media only screen and (max-width: 1050px) {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.header__row--logo {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  @media only screen and (max-width: 550px) {
    flex-direction: column;
  }
}

.header__row--menu {
  align-self: end;
  display: flex;
  @media only screen and (max-width: 550px) {
    align-self: auto;
  }
}

.header__menu {
  gap: 66px;
  display: flex;
  align-items: start;
}

.header__menu-item {
  gap: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__menu-link {
  color: #e05d5d !important;
  font-weight: 700 !important;
}

.header__menu-indicator {
  height: 6px;
  background-color: #e05d5d;
  width: 6px;
  border-radius: 3px;
}

.header__menu-link--about {
  color: #000000 !important;
  font-weight: 700 !important;
}

/* Hero Section Adjustment */
.row_four-1 {
  margin-top: 60px; /* Increased margin to add space between hero and header */
  margin-bottom: 60px;
  align-self: stretch;
  display: flex;
  justify-content: center;
  position: relative; /* Ensure proper stacking context */
  z-index: 1; /* Make sure it stays below the header */
}

.section {
  display: flex;
  justify-content: center;
  @media only screen and (max-width: 1050px) {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.whatwedo__title {
  color: #000000 !important;
}

.section__headline-span-1 {
  color: #000000;
}

.section__headline-span {
  color: #e05d5d;
}

.about__container {
  margin-top: 150px; /* Adjusted margin for better spacing */
  @media only screen and (max-width: 1050px) {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.user-profile__image {
  height: 460px;
  object-fit: cover; /* Ensure the image scales properly */
  width: 100%;
  border-radius: 10px;
  @media only screen and (max-width: 1050px) {
    height: auto;
  }
}

.user-profile__info {
  gap: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.user-profile__name {
  color: #3a3a3a !important;
}

.user-profile__title {
  color: #00000068 !important;
}

.footer {
  padding-left: 46px;
  padding-right: 46px;
  border-top-right-radius: 50px;
  display: flex;
  background-color: #E0E0E0 !important;
  width: 90%;
  justify-content: flex-end;
  align-items: end;
  @media only screen and (max-width: 1050px) {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.footer__top-section {
  margin-top: 66px;
  width: 92%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    width: 100%;
  }
}

.footer__top-section__left-column {
  width: 46%;
  display: flex;
  flex-direction: column;
  align-items: start;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.footer__logo-column {
  gap: 10px;
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: end;
}

.footer__logo-row {
  align-self: stretch;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.header__logo {
  height: 100px;
  width: 200px;
  object-fit: contain;
  position: relative;

}

.footer__text {
  letter-spacing: 4px;
  align-self: end;
}

.footer__divider {
  height: 2px;
  margin-right: 34px;
  background-color: #f5ab67;
  width: 10%;
  @media only screen and (max-width: 1050px) {
    margin-right: 0px;
  }
}

.footer__links-column {
  margin-top: 38px !important;
  gap: 28px;
  align-self: end;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.footer__bottom-section {
  margin-top: 26px;
  align-self: end;
  width: 42%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  @media only screen and (max-width: 1050px) {
    align-self: auto;
    width: 100%;
  }

  @media only screen and (max-width: 550px) {
    flex-direction: column;
  }
}

.footer__bottom-section__right-column {
  gap: 36px;
  display: flex;
  width: 28%;
  flex-direction: column;
  @media only screen and (max-width: 550px) {
    width: 100%;
  }
}

.footer__socials-column {
  gap: 10px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.footer__socials-title {
  letter-spacing: 4px;
}

.footer__socials-divider {
  height: 2px;
  background-color: #f5ab67;
  width: 32%;
}

.footer__socials-links {
  gap: 28px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.footer__link {
  letter-spacing: 0.9px;
}

.footer__image {
  height: 310px;
  margin-top: 92px;
  align-self: end;
  width: 54%;
  object-fit: contain;
  @media only screen and (max-width: 550px) {
    align-self: auto;
    width: 100%;
  }
}

/*-------------------------------------
  3. Page CSS
--------------------------------------*/
.columnheaderlog {
  gap: 54px;
  display: flex;
  flex-direction: column;
  @media only screen and (max-width: 550px) {
    gap: 27px;
  }
}

.works__description {
  background-color: #ccffd7;
  width: 100%;
  border-radius: 90px;
}

.works__content-1 {
  margin-top: 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.works__content__row {
  margin-left: 8px;
  margin-right: 8px;
  align-self: stretch;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.works__content__image {
  height: 114px;
  align-self: center;
  width: 114px;
  border-radius: 10px;
}

.works__content__view {
  height: 14px;
  margin-top: 12px;
  margin-right: 222px;
  background-color: #f5ab67;
  width: 14px;
  border-radius: 6px;
}

.works__content__row--secondary {
  margin-top: 24px;
  margin-left: 118px;
  margin-right: 118px;
  align-self: stretch;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.works__content__view--secondary {
  height: 14px;
  align-self: end;
  background-color: #2dc3f2;
  width: 14px;
  border-radius: 6px;
}

.works__content__heading {
  color: #000000 !important;
  margin-right: 290px;
}

.works__content__text {
  margin-top: 74px;
  text-align: center;
  width: 68%;
  line-height: 40px;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.works__gallery {
  margin-top: 6px;
  margin-left: 34px;
  align-self: stretch;
  display: flex;
  align-items: start;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
  }

  @media only screen and (max-width: 550px) {
    flex-direction: column;
  }
}

.works__gallery__image {
  height: 114px;
  margin-top: 30px;
  width: 114px;
  @media only screen and (max-width: 550px) {
    width: 100%;
  }
}

.works__gallery__row {
  gap: 32px;
  align-self: center;
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: start;
  @media only screen and (max-width: 550px) {
    align-self: stretch;
  }
}

.works__gallery__image--accent {
  height: 196px;
  margin-top: 6px;
  align-self: end;
  width: 196px;
  border-radius: 14px;
}

.works__gallery__view {
  height: 14px;
  background-color: #3d349d;
  width: 14px;
  border-radius: 6px;
}

.row_four {
  margin-top: 54px;
  display: flex;
  justify-content: center;
}

.column-1 {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.works__content {
  margin-top: 110px;
  margin-right: 56px;
  gap: 44px;
  display: flex;
  width: 90%;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-right: 0px;
  }
}

.section__content {
  padding-top: 86px;
  padding-bottom: 86px;
  background-color: #ccfaf5;
  width: 100%;
  border-radius: 34px;
  @media only screen and (max-width: 1050px) {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.section__content-1 {
  background-color: #fffccc;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 52px;
  border-radius: 90px;
  background-size: cover; /* Ensure the background scales properly */
  background-position: center; /* Center the background image */
  @media only screen and (max-width: 1050px) {
    padding: 20px;
  }
}

.works__header {
  gap: 59px;
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  @media only screen and (max-width: 1050px) {
    gap: 20px;
  }
}

.contact-section__content {
  height: 646px;
  background-color: #e5eeff;
  width: 100%;
  position: relative;
  padding: 122px 50px;
  border-radius: 90px;
  @media only screen and (max-width: 1050px) {
    padding: 20px;
  }
}

.section__content-row {
  display: flex;
  justify-content: center;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
  }
}

.section__content-row-1 {
  margin-top: 18px;
  width: 86%;
  display: flex;
  justify-content: center;
  align-items: start;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    width: 100%;
  }
}

.works__title {
  color: #000000 !important;
  align-self: center;
}

.contact-section__image {
  height: 380px;
  flex: 1;
  position: absolute;
  left: 0px;
  bottom: 0px;
  right: 0px;
  top: 0px;
  margin: auto;
}

.section__text-column {
  gap: 32px;
  z-index: 1;
  display: flex;
  width: 48%;
  position: relative;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.section__content-column {
  gap: 60px;
  display: flex;
  width: 8%;
  flex-direction: column;
  align-items: start;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }

  @media only screen and (max-width: 550px) {
    gap: 30px;
  }
}

.section__headline {
  color: #000000 !important;
  line-height: 80px;
}

.section__image-1 {
  height: auto; /* Increase height */
  width: 100%; /* Ensure full width */
  object-fit: cover;
  border-radius: 10px;
  @media only screen and (max-width: 1050px) {
    height: auto;
  }
}

.section__subheadline {
  color: #00000060 !important;
  line-height: 35px;
}

.section__overlay {
  height: 14px;
  margin-left: 22px;
  background-color: #c63973;
  width: 14px;
  border-radius: 6px;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
  }
}

.section__buttons {
  gap: 25px;
  display: flex;
}

.section__button--contact {
  color: #ffffff !important;
  padding-left: 34px;
  padding-right: 34px;
  font-size: 16px;
  font-weight: 700;
  background-color: #000000 !important;
  height: 66px;
  min-width: 200px;
  border-radius: 5px !important;
  @media only screen and (max-width: 550px) {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.section__button--about {
  color: #000000 !important;
  padding-left: 31px;
  padding-right: 31px;
  font-size: 16px;
  font-weight: 700;
  height: 66px;
  min-width: 200px;
  border-radius: 5px !important;
  border: 3px solid #000000 !important;
  @media only screen and (max-width: 550px) {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.section__image {
  height: 472px;
  width: 44%;
  object-fit: contain;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.section__side-column {
  gap: 72px;
  align-self: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: end;
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
    gap: 54px;
  }

  @media only screen and (max-width: 550px) {
    gap: 36px;
  }
}

.section__stack {
  height: 360px;
  align-self: stretch;
  position: relative;
}

.section__stack-column {
  gap: 52px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: end;
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  margin: auto;
  @media only screen and (max-width: 550px) {
    gap: 26px;
  }
}

.section__highlight {
  height: 14px;
  margin-right: 134px;
  background-color: #f5ab67;
  width: 14px;
  border-radius: 6px;
  @media only screen and (max-width: 1050px) {
    margin-right: 0px;
  }
}

.section__highlight-image {
  height: 88px;
  width: 88px;
  object-fit: cover;
  border-radius: 44px;
}

.section__text-column-1 {
  gap: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 1px;
  right: 0px;
  left: 0px;
  margin: auto;
}

.section__heading {
  color: #000000 !important;
  margin-left: 132px;
  text-align: center;
  line-height: 60px;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
  }
}

.section__description {
  text-align: center;
  line-height: 40px;
}

.section__side-image {
  height: 88px;
  margin-right: 92px;
  width: 88px;
  object-fit: cover;
  border-radius: 44px;
  @media only screen and (max-width: 1050px) {
    margin-right: 0px;
  }
}

.works__subtitle {
  margin-top: 10px;
}

.contact-section__form-container {
  padding-left: 56px;
  padding-right: 56px;
  gap: 76px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 0px;
  bottom: 0px;
  right: 0px;
  top: 0px;
  height: max-content;
  margin: auto;
  @media only screen and (max-width: 1050px) {
    gap: 57px;
    padding-left: 20px;
    padding-right: 20px;
  }

  @media only screen and (max-width: 550px) {
    gap: 38px;
  }
}

.contact-section__description {
  text-align: center;
  align-self: stretch;
  line-height: 40px;
}

.works__projects {
  gap: 104px;
  display: flex;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    gap: 78px;
  }

  @media only screen and (max-width: 550px) {
    gap: 52px;
  }
}

.works__project-stack {
  height: auto; /* Set to auto to allow dynamic height */
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.project-stack__item {
  background-color: #ffb039;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 44px 56px;
  border-radius: 30px;
  margin: 20px auto;
  width: 100%;
  max-width: 1200px; /* Adjust maximum width as needed */
}

.project-stack__title {
  font-family: Nunito !important;
  font-weight: 800 !important;
  margin-bottom: 20px; /* Adds space below the title */
}

.project-stack__divider {
  height: 2px;
  margin-bottom: 28px;
  background-color: #ffffff;
  width: 6%;
}

.project-stack__detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px; /* Adjust the gap between text and image */
  margin-top: 20px;
}

.project-stack__description {
  z-index: 1;
  width: 50%; /* Use 50% width to align side by side */
  position: relative;
  line-height: 1.6;
  font-size: 16px;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.project-stack__image {
  max-width: 45%; /* Control max width for image */
  height: auto; /* Ensure the image maintains aspect ratio */
  object-fit: contain;
  margin-left: 20px; /* Space between text and image */
  @media only screen and (max-width: 1050px) {
    width: 100%;
    margin-left: 0px;
  }
}


.works__project-stack--floops {
  height: 580px;
  position: relative;
}

.project-stack--floops__item {
  background-color: #20398d;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  position: absolute;
  left: -9px;
  bottom: 0px;
  top: 0px;
  margin-top: auto;
  margin-bottom: auto;
  height: max-content;
  padding: 62px 56px 62px 110px;
  border-radius: 30px;
  @media only screen and (max-width: 1050px) {
    padding: 20px;
  }
}

.project-stack--floops__title {
  color: transparent !important;
  background: linear-gradient(90deg, #ffb039, #ffb03900);
  background-clip: text;
}

.project-stack--floops__subtitle {
  margin-top: 190px;
  width: 28%;
  line-height: 43px;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.project-stack--floops__divider {
  height: 2px;
  margin-top: 68px;
  margin-bottom: 16px;
  background-color: #ffffff;
  width: 6%;
}

.project-stack--floops__image {
  height: 456px;
  width: 56%;
  object-fit: contain;
  position: absolute;
  right: 0px;
  top: 7%;
  margin: auto;
}

.project-row__stack {
  height: 580px;
  background-color: #ff3c53;
  position: relative;
  align-content: center;
  border-radius: 30px;
  @media only screen and (max-width: 1050px) {
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.project-row__item {
  margin-left: 108px;
  margin-right: 108px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.project-row__logo {
  height: 38px;
  width: 18%;
  object-fit: contain;
}

.project-row__description {
  margin-top: 172px;
  width: 30%;
  line-height: 43px;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.project-row__divider {
  height: 2px;
  margin-top: 68px;
  background-color: #ffffff;
  width: 6%;
}

.project-row__screenshots {
  height: 580px;
  flex: 1;
  position: absolute;
  align-content: center;
  left: 0px;
  bottom: 0px;
  right: 0px;
  top: 0px;
  margin: auto;
  @media only screen and (max-width: 1050px) {
    height: auto;
  }
}

.project-row__screenshot {
  height: 580px;
  width: 30%;
  object-fit: contain;
  margin-left: auto;
  border-radius: 30px;
}

.project-row__screenshot--alternate {
  height: 580px;
  flex: 1;
  object-fit: cover;
  position: absolute;
  left: 0px;
  bottom: 0px;
  right: 0px;
  top: 0px;
  margin: auto;
  border-radius: 30px;
}

.column {
  margin-top: 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-section {
  gap: 34px;
  display: flex;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.about__grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  padding-top: 20px;
  @media only screen and (max-width: 1050px) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  @media only screen and (max-width: 550px) {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.row_four-2 {
  margin-top: 110px;
  display: flex;
}

.contact-section__row {
  gap: 40px;
  display: flex;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
  }
}

.team-section__header {
  margin-left: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
  }
}

.contact-section__form {
  flex: 1;
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
  }
}

.contact-section__form-row {
  gap: 22px;
  background-color: #ffffff;
  box-shadow: 0 40px 200px 0 #00000014;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 72px 56px 72px 90px;
  border-radius: 20px;
  @media only screen and (max-width: 1050px) {
    padding: 20px;
  }
}

.contact-section__form-column {
  margin-left: 22px;
  width: 94%;
  display: flex;
  flex-direction: column;
  align-items: start;
  @media only screen and (max-width: 1050px) {
    width: 100%;
    margin-left: 0px;
  }
}

.contact-section__divider {
  height: 1px;
  margin-top: 12px;
  background-color: #eaeaea;
  align-self: stretch;
  width: 100%;
}

.contact-section__input-group {
  margin-top: 22px;
  margin-bottom: 15px;
  gap: 30px;
  display: flex;
  align-self: stretch;
  flex-direction: column;
}

.contact-section__input-row {
  gap: 30px;
  display: flex;
  @media only screen and (max-width: 550px) {
    flex-direction: column;
  }
}

.contact-section__textarea {
  color: #b6b6b6;
  font-size: 16px;
  font-weight: 700;
  background-color: #f6f6f6 !important;
  height: 174px;
  padding: 20px 34px 34px 18px;
  border-radius: 5px !important;
  @media only screen and (max-width: 550px) {
    padding-bottom: 20px;
    padding-right: 20px;
  }
}

.contact-section__button {
  color: #ffffff !important;
  margin-bottom: 30px;
  margin-left: 22px;
  padding-left: 34px;
  padding-right: 34px;
  font-size: 20px;
  gap: 12px;
  background-color: #27a953 !important;
  box-shadow: 10px 20px 50px 0 #27a95363 !important;
  height: 50px;
  min-width: 182px;
  border-radius: 24px !important;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
  }

  @media only screen and (max-width: 550px) {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.save {
  height: 18px;
  margin-top: 4px;
  margin-bottom: 2px;
  width: 18px;
}

.team-section__link {
  color: #e05d5d !important;
}

.team-section__list {
  max-width: 100%;
  gap: 30px;
  display: flex;
}

.contact-section__info {
  margin-bottom: 12px;
  width: 32%;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.contact-section__info-column {
  gap: 30px;
  display: flex;
  background-color: #ffffff;
  box-shadow: 0 40px 200px 0 #00000014;
  flex-direction: column;
  padding: 72px 48px;
  border-radius: 20px;
  @media only screen and (max-width: 1050px) {
    padding: 20px;
  }
}

.contact-section__contact-info {
  margin-right: 8px;
  gap: 32px;
  display: flex;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    margin-right: 0px;
  }
}

.contact-section__contact-info-column {
  gap: 24px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.contact-section__contact-details {
  gap: 28px;
  display: flex;
  flex-direction: column;
}

.contact-section__contact-row--address {
  gap: 24px;
  display: flex;
  justify-content: center;
  align-items: start;
}

.contact-section__contact-text--address {
  color: #b1b1b1 !important;
  align-self: center;
  width: 82%;
  line-height: 111px;
}

.contact-section__social-media {
  gap: 40px;
  display: flex;
  flex-direction: column;
}

.contact-section__social-media-column {
  margin-right: 8px;
  gap: 24px;
  display: flex;
  flex-direction: column;
  align-items: start;
  @media only screen and (max-width: 1050px) {
    margin-right: 0px;
  }
}

.contact-section__social-row {
  gap: 20px;
  display: flex;
  justify-content: flex-end;
}

.column_one {
  margin-top: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.column_three {
  margin-top: 96px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.row_five-2 {
  margin-top: 108px;
  align-self: stretch;
  display: flex;
}

.whatwedo {
  gap: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.about__column {
  gap: 62px;
  display: flex;
  flex-direction: column;
  align-items: start;
  @media only screen and (max-width: 1050px) {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.about__title {
  color: #000000 !important;
  margin-left: 10px;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
  }
}

.whatwedo__list {
  background-color: #ffecec;
  align-self: stretch;
  display: flex;
  justify-content: center;
  padding: 112px 56px;
  border-radius: 90px;
  @media only screen and (max-width: 1050px) {
    padding: 20px;
  }
}

.about__gallery {
  gap: 30px;
  display: flex;
  flex: 1;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
  }
}

.whatwedo__list-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
    gap: 30px;
}

/* Media query for tablet screens */
@media (max-width: 1024px) {
    .whatwedo__list-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
}

/* Media query for mobile screens */
@media (max-width: 768px) {
    .whatwedo__list-container {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}

/* Ensure grid layout with 3 items per row on larger screens */
/*.whatwedo__list-container {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(3, 1fr); !* 3 items per row *!*/
/*    gap: 20px; !* Add spacing between items *!*/
/*}*/

/*!* Adjust for smaller screens (mobile) *!*/
/*@media only screen and (max-width: 768px) {*/
/*    .whatwedo__list-container {*/
/*        grid-template-columns: repeat(1, 1fr); !* 1 item per row on mobile *!*/
/*    }*/
/*}*/

/* Style individual points */
.userprofile1 {
    background-color: #F9F1F1;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.userprofile1__image {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.whatwedo__title {
    font-weight: bold;
    font-size: 1.5em;
    color: #333;
}

.userprofile1__description {
    font-size: 1em;
    color: #666;
}

.about__gallery__image--top {
  height: 204px;
  margin-left: 8px;
  object-fit: cover;
  border-radius: 10px;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
  }
}

.userprofile1-1 {
  margin-top: 34px;
  margin-bottom: 34px;
  gap: 36px;
  display: flex;
  background-color: #ffffff;
  box-shadow: 0 50px 50px 0 #0000000c;
  width: auto;
  cursor: pointer;
  flex-direction: column;
  padding: 34px 24px;
  border-radius: 30px;
  &:hover {
    box-shadow: 0 50px 50px 0 #0000000c;
  }

  @media only screen and (max-width: 1050px) {
    width: 100%;
    margin-bottom: 0px;
    margin-top: 0px;
  }

  @media only screen and (max-width: 550px) {
    padding: 20px;
  }
}

.about__gallery__image--bottom {
  height: 378px;
  margin-left: 8px;
  border-radius: 50%;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
  }
}

.about__gallery__image--top-1 {
  height: 378px;
  border-radius: 50%;
}

.about__gallery__image--bottom-1 {
  height: 204px;
  object-fit: cover;
}

.about__gallery__column--last {
  gap: 28px;
  display: flex;
  width: 100%;
  flex-direction: column;
}

.about__gallery__image--bottom-2 {
  height: 206px;
  object-fit: cover;
}

.column_two {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.row_five-1 {
  margin-top: 120px;
  align-self: stretch;
  display: flex;
}

.columncontrast {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  @media only screen and (max-width: 1050px) {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.columncontrast__icon-button {
  height: 68px;
  padding-left: 26px;
  padding-right: 26px;
  background-color: #e05d5d !important;
  width: 68px;
  border-radius: 34px !important;
  border: 9px solid #ffffff;
  @media only screen and (max-width: 550px) {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.row_five {
  height: 524px;
  padding-top: 48px;
  padding-bottom: 48px;
  background-image: url('/healthcare/static/images/img_group_107.png');
  background-size: cover;
  background-repeat: no-repeat;
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.testimonials {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  @media only screen and (max-width: 1050px) {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.testimonials__column {
  gap: 62px;
  display: flex;
  width: 100%;
  flex-direction: column;
  @media only screen and (max-width: 550px) {
    gap: 31px;
  }
}

.testimonials__header {
  margin-left: 8px;
  display: flex;
  justify-content: center;
  align-items: start;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
  }
}

.testimonials__controls {
  gap: 10px;
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.testimonials__slider {
  max-width: 100%;
  margin-left: 15px;
  gap: 30px;
  display: flex;
  margin-right: 15px;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    margin-left: 0px;
    margin-right: 0px;
  }
}

.testimonials__author-info-1 {
  margin-bottom: 12px;
  margin-left: 6px;
  margin-right: 6px;
  gap: 24px;
  display: flex;
  justify-content: center;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.row_six {
  margin-top: 70px;
  display: flex;
}
.row_three {
  display: flex;
  justify-content: center;
}
/* Ensure Name and Email are aligned in the same row */
.flex-row {
  display: flex;
  gap: 20px; /* Adjust spacing between fields */
  justify-content: space-between;
}



/* Service select dropdown styling */
select.ui.input.fill.gray_100 {
  appearance: none; /* Removes default arrow */
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  padding-right: 30px; /* Add space for the arrow */
}
.contact-section__input--name {
  color: #b6b6b6 !important;
  padding-left: 18px;
  padding-right: 34px;
  background-color: #f6f6f6 !important;
  width: 100%;
  height: 82px;
  border-radius: 5px !important;


}

.contact-section__contact-row {
  gap: 25px;
  display: flex;
  align-items: center;
}

.contact-section__contact-icon--email {
  height: 24px;
  width: 24px;
}

.contact-section__contact-text--email {
  color: #b1b1b1 !important;
}

.contact-section__title-1 {
  color: #6c6c6c !important;
}

.contact-section__contact-divider {
  height: 1px;
  background-color: #eaeaea;
  align-self: stretch;
  width: 100%;
}

.contact-section__social-icon--first {
  height: 46px;
  width: 46px;
  object-fit: cover;
}

.user-profile {
  margin-bottom: 4px;
  gap: 38px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
}

.user-profile-3 {
  margin-bottom: 4px;
  gap: 38px;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.userprofile1 {
  margin-top: 34px;
  margin-bottom: 34px;
  gap: 36px;
  display: flex;
  width: 22%;
  cursor: pointer;
  flex-direction: column;
  &:hover {
    box-shadow: 0 50px 50px 0 #0000000c;
  }

  @media only screen and (max-width: 1050px) {
    width: 100%;
    margin-bottom: 0px;
    margin-top: 0px;
  }
}

.userprofile1__image {
  height: 46px;
  width: 46px;
}

.description-column {
  gap: 12px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.userprofile1__description {
  width: 100%;
  line-height: 30px;
}

.about__gallery__column--first {
  gap: 30px;
  display: flex;
  width: 100%;
  flex-direction: column;
}

.about__gallery__image--top-2 {
  height: 174px;
  object-fit: cover;
  border-radius: 10px;
}

.testimonials__control--prev {
  background-color: #e05d5d !important;
  width: 70px;
  height: 38px;
  padding: 10px;
}

.dhi-group {
  padding-left: 15px;
  padding-right: 15px;
}

.testimonials__slide {
  gap: 20px;
  background-color: #ffffff;
  box-shadow: 0 30px 90px 0 #00000019;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 10px;
  @media only screen and (max-width: 550px) {
    padding: 20px;
  }
}

.testimonials__quote {
  line-height: 30px;
}

.testimonials__author-info {
  margin-bottom: 12px;
  margin-left: 6px;
  margin-right: 6px;
  gap: 26px;
  display: flex;
  justify-content: center;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.testimonials__author-image {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 12px;
}

.testimonials__author-details {
  gap: 4px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: start;
}

.testimonials__author-name {
  color: #000000 !important;
  font-weight: 600 !important;
}

/*-------------------------------------
  4. Component CSS
--------------------------------------*/
/*------Textarea CSS------*/
.ui.textarea.round {
  border-radius: 5px;
}

.ui.textarea.size-xs {
  height: 174px;
  font-size: 16px;
  padding: 18px;
}

.ui.textarea.tarfillgray100.gray_100 {
  background-color: #f6f6f6;
}

/*------Button CSS------*/
.ui.button.circle {
  border-radius: 50%;
}

.ui.button.round {
  border-radius: 5px;
}

.ui.button.square {
  border-radius: 0px;
}

.ui.button.size-lg {
  height: 68px;
  padding-left: 26px;
  padding-right: 26px;
}

.ui.button.size-sm {
  height: 50px;
  padding-left: 34px;
  padding-right: 34px;
  font-size: 20px;
}

.ui.button.size-md {
  height: 66px;
  padding-left: 34px;
  padding-right: 34px;
  font-size: 16px;
}

.ui.button.size-xs {
  height: 38px;
  padding-left: 10px;
  padding-right: 10px;
}

.ui.button.fill.black_900 {
  background-color: #000000;
  color: #ffffff;
}

.ui.button.outline.black_900 {
  color: #000000;
  border: 3px solid #000000;
}

.ui.button.fill.red_400_01 {
  background-color: #e05d5d;
}

.ui.button.fill.green_600 {
  background-color: #27a953;
  box-shadow: 10px 20px 50px 0 #27a95363;
  color: #ffffff;
}

.ui.button {
  text-align: center;
  display: flex;
  cursor: pointer;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/*------Input CSS------*/
.ui.input.round {
  border-radius: 5px;
}

.ui.input.size-xs {
  height: 82px;
  padding-left: 18px;
  padding-right: 34px;
  font-size: 16px;
}

.ui.input.fill.gray_100 {
  background-color: #f6f6f6;
  color: #b6b6b6;
}

.ui.input {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: text;
  color: #b6b6b6;
  font-size: 16px;
  font-weight: 700;
  background-color: #f6f6f6;
  border-radius: 5px;
}

/*------Text CSS------*/
.ui.text.size-textxs {
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
}

.ui.text.size-texts {
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
}

.ui.text.size-textmd {
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
}
.ui.text.size-textmd1 {
  font-size: 40px;
  font-weight: 400;
  font-style: normal;
}

.ui.text.size-textlg {
  font-size: 25px;
  font-weight: 400;
  @media only screen and (max-width: 1050px) {
    font-size: 23px;
  }

  @media only screen and (max-width: 550px) {
    font-size: 21px;
  }
}

.ui.text {
  color: #595959;
  font-family: Source Sans Pro;
}

/*------Heading CSS------*/
.ui.heading.size-headingxs {
  font-size: 15px;
  font-weight: 700;
  font-style: bold;
}

.ui.heading.size-headings {
  font-size: 17px;
  font-weight: 600;
  font-style: bold;
}

.ui.heading.size-headingmd {
  font-size: 18px;
  font-weight: 600;
  font-style: bold;
}

.ui.heading.size-headinglg {
  font-size: 20px;
  font-weight: 700;
  font-style: bold;
}

.ui.heading.size-headingxl {
  font-size: 25px;
  font-weight: 700;
  font-style: bold;
  @media only screen and (max-width: 1050px) {
    font-size: 23px;
  }

  @media only screen and (max-width: 550px) {
    font-size: 21px;
  }
}

.ui.heading.size-heading2xl {
  font-size: 30px;
  font-weight: 700;
  @media only screen and (max-width: 1050px) {
    font-size: 28px;
  }

  @media only screen and (max-width: 550px) {
    font-size: 26px;
  }
}

.ui.heading.size-heading3xl {
  font-size: 35px;
  font-weight: 700;
  font-style: bold;
  @media only screen and (max-width: 1050px) {
    font-size: 33px;
  }

  @media only screen and (max-width: 550px) {
    font-size: 31px;
  }
}

.ui.heading.size-heading4xl {
  font-size: 40px;
  font-weight: 700;
  font-style: bold;
  padding-bottom: 20px;
  @media only screen and (max-width: 1050px) {
    font-size: 38px;
  }

  @media only screen and (max-width: 550px) {
    font-size: 36px;
  }
}

.ui.heading.size-heading5xl {
  font-size: 50px;
  font-weight: 700;
  font-style: bold;
  @media only screen and (max-width: 1050px) {
    font-size: 46px;
  }

  @media only screen and (max-width: 550px) {
    font-size: 40px;
  }
}

.ui.heading.size-heading6xl {
  font-size: 75px;
  font-weight: 700;
  font-style: bold;
  @media only screen and (max-width: 1050px) {
    font-size: 48px;
  }
}

.ui.heading {
  color: #ffffff;
  font-family: Source Sans Pro;
}

/*------Container CSS------*/
.container-xs {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  margin-top: 60px;
}

/*-------------------------------------
  5. Fonts CSS
--------------------------------------*/
@font-face {
  font-display: swap;
  font-style: normal;
  src: url('/healthcare/static/fonts/NunitoExtraBold.ttf');
  font-family: "Nunito";
  font-weight: 800;
}
