@font-face {
  font-family: "SpaceGrotesk";
  src: url("../SpaceGrotesk.ttf");
}
@font-face {
  font-family: "SpaceGroteskBold";
  src: url("../SpaceGroteskBold.ttf");
}
.wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 100px 0 100px;
}
.header .header_right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header .header_right h2 {
  margin: 0;
  color: black;
  font-family: "SpaceGroteskBold";
  font-size: clamp(1.625rem, 1.2525rem + 1.3861vw, 2.5rem);
  font-weight: 500;
}
.header .header_left ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
.header .header_left li {
  list-style-type: none;
  font-size: clamp(1rem, 0.8936rem + 0.396vw, 1.25rem);
  font-weight: 400;
  font-family: "SpaceGrotesk";
}
.header .header_left a {
  text-decoration: none;
  color: #000;
  white-space: nowrap;
}
.header .header_left li:last-child a {
  border-radius: 14px;
  border: 1px solid #191A23;
  padding: 20px 35px;
}

.hamburger-menu {
  display: none;
}
.hamburger-menu #menu__toggle {
  opacity: 0;
}
.hamburger-menu #menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}
.hamburger-menu #menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
}
.hamburger-menu #menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
.hamburger-menu #menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0;
}
.hamburger-menu .menu__btn {
  display: flex;
  align-items: center;
  position: relative;
  width: 24px;
  height: 24px;
  cursor: pointer;
  z-index: 1;
}
.hamburger-menu .menu__btn > span,
.hamburger-menu .menu__btn > span::before,
.hamburger-menu .menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 25px;
  background-color: black;
  transition-duration: 0.25s;
}
.hamburger-menu .menu__btn > span::before {
  content: "";
  top: -8px;
}
.hamburger-menu .menu__btn > span::after {
  content: "";
  top: 8px;
}
.hamburger-menu .menu__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  visibility: hidden;
  top: 0;
  left: -100%;
  width: 100%;
  height: 20%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  background-color: #F3F3F3;
  box-shadow: 1px 0px 6px rgba(0, 0, 0, 0.2);
  transition-duration: 0.25s;
}
.hamburger-menu .menu__box li {
  list-style-type: none;
  font-size: clamp(1rem, 0.8936rem + 0.396vw, 1.25rem);
  font-weight: 400;
  font-family: "SpaceGrotesk";
}
.hamburger-menu .menu__box a {
  text-decoration: none;
  color: #000;
  white-space: nowrap;
}
.hamburger-menu .menu__item {
  display: block;
  padding: 12px 24px;
  color: #333;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition-duration: 0.25s;
}
.hamburger-menu .menu__item:hover {
  background-color: #CFD8DC;
}

.navigating {
  display: flex;
  justify-content: space-between;
  padding: 76px 100px 0 100px;
  gap: 100px;
}
.navigating img {
  max-width: 601px;
  min-width: 360px;
}

.navigating_left {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.navigating_left h1 {
  margin: 0;
  font-size: 60px;
  font-weight: 500;
  line-height: 76px;
  font-family: "SpaceGroteskBold";
}
.navigating_left p {
  max-width: 498px;
  margin: 0;
  font-size: clamp(1rem, 0.8936rem + 0.396vw, 1.25rem);
  font-weight: 400;
  line-height: 28px;
  font-family: "SpaceGrotesk";
}
.navigating_left a {
  height: 68px;
  border-radius: 14px;
  color: white;
  background: #191A23;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "SpaceGrotesk";
  font-size: 20px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 264px;
}

.navigating_adaptive {
  display: none;
  padding: 40px 60px 0 60px;
}
.navigating_adaptive h1 {
  margin: 0;
  font-size: 43px;
  font-weight: 500;
  line-height: 54px;
  font-family: "SpaceGroteskBold";
}
.navigating_adaptive p {
  max-width: 498px;
  padding-top: 20px;
  margin: 0;
  font-size: clamp(1rem, 0.8936rem + 0.396vw, 1.25rem);
  font-weight: 400;
  line-height: 24px;
  font-family: "SpaceGrotesk";
}
.navigating_adaptive a {
  margin-top: 40px;
  height: 68px;
  border-radius: 14px;
  color: white;
  background: #191A23;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "SpaceGrotesk";
  font-size: 20px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navigating_adaptive img {
  max-width: 950px;
  min-width: 360px;
}

.navigating_logo {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 104px 100px 0 100px;
  align-items: center;
  filter: grayscale(1);
}
.navigating_logo .navigating_logo_top,
.navigating_logo .navigating_logo_bottom {
  display: flex;
  gap: 96px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 140px 0 0 100px;
}
.services h2 {
  margin: 0;
  font-size: clamp(2.25rem, 2.1436rem + 0.396vw, 2.5rem);
  font-weight: 500;
  padding: 0px 7px;
  border-radius: 7px;
  background-color: #B9FF66;
  font-family: "SpaceGroteskBold";
  white-space: nowrap;
  box-sizing: border-box;
}
.services p {
  margin: 0;
  font-size: clamp(1rem, 0.9468rem + 0.198vw, 1.125rem);
  font-weight: 400;
  line-height: 23px;
  font-family: "SpaceGrotesk";
  width: 580px;
}

.services_table {
  padding: 80px 100px 0 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 310px 310px 310px;
  gap: 40px;
}
.services_table .table_left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services_table .table_left .table_top {
  display: flex;
  flex-direction: column;
}
.services_table .table_left .table_bottom {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 15px;
  padding: 0 0 50px 50px;
}
.services_table .table_left .table_bottom a {
  font-size: clamp(1rem, 0.8936rem + 0.396vw, 1.25rem);
  font-weight: 400;
  text-decoration: none;
  color: black;
  font-family: "SpaceGrotesk";
}
.services_table .table_left .table_bottom .illustration_adaptive {
  display: none;
}
.services_table .illustration {
  display: flex;
  align-items: center;
  padding-right: 50px;
}

.table_first {
  border: 1px solid #191A23;
  border-radius: 45px;
  box-shadow: 0px 5px 0px 0px #191A23;
  display: flex;
  justify-content: space-between;
  background: #F3F3F3;
}
.table_first h3 {
  padding: 0px 7px 0px 7px;
  font-size: clamp(26px, 0.4vw, 30px);
  font-weight: 500;
  border-radius: 7px;
  box-sizing: border-box;
  white-space: nowrap;
  font-family: "SpaceGroteskBold";
  margin: 50px 0 0 50px;
  width: clamp(194px, 2.7vw, 221px);
  background-color: #B9FF66;
}
.table_first h4 {
  padding: 0px 7px 0px 7px;
  font-size: clamp(26px, 0.4vw, 30px);
  font-weight: 500;
  border-radius: 7px;
  box-sizing: border-box;
  white-space: nowrap;
  font-family: "SpaceGroteskBold";
  margin: 0 0 0 50px;
  background-color: #B9FF66;
  width: clamp(172px, 2.4vw, 197px);
  box-sizing: border-box;
}

.table_second {
  border: 1px solid #191A23;
  border-radius: 45px;
  box-shadow: 0px 5px 0px 0px #191A23;
  display: flex;
  justify-content: space-between;
  background: #B9FF66;
}
.table_second h3 {
  padding: 0px 7px 0px 7px;
  font-size: clamp(26px, 0.4vw, 30px);
  font-weight: 500;
  border-radius: 7px;
  box-sizing: border-box;
  white-space: nowrap;
  font-family: "SpaceGroteskBold";
  margin: 50px 0 0 50px;
  width: clamp(183px, 2.7vw, 209px);
  background-color: white;
}
.table_second h4 {
  padding: 0px 7px 0px 7px;
  font-size: clamp(26px, 0.4vw, 30px);
  font-weight: 500;
  border-radius: 7px;
  box-sizing: border-box;
  white-space: nowrap;
  font-family: "SpaceGroteskBold";
  margin: 0 0 0 50px;
  background-color: white;
  width: clamp(156px, 2.4vw, 178px);
}

.table_third {
  border: 1px solid #191A23;
  border-radius: 45px;
  box-shadow: 0px 5px 0px 0px #191A23;
  display: flex;
  justify-content: space-between;
  background: #191A23;
}
.table_third h3 {
  padding: 0px 7px 0px 7px;
  font-size: clamp(26px, 0.4vw, 30px);
  font-weight: 500;
  border-radius: 7px;
  box-sizing: border-box;
  white-space: nowrap;
  font-family: "SpaceGroteskBold";
  margin: 50px 0 0 50px;
  width: clamp(173px, 2.7vw, 197px);
  background-color: white;
}
.table_third h4 {
  padding: 0px 7px 0px 7px;
  font-size: clamp(26px, 0.4vw, 30px);
  font-weight: 500;
  border-radius: 7px;
  box-sizing: border-box;
  white-space: nowrap;
  font-family: "SpaceGroteskBold";
  margin: 0 0 0 50px;
  background-color: white;
  width: clamp(142px, 2.4vw, 161px);
}
.table_third a {
  color: white !important;
}

.table_fourth {
  border: 1px solid #191A23;
  border-radius: 45px;
  box-shadow: 0px 5px 0px 0px #191A23;
  display: flex;
  justify-content: space-between;
  background: #F3F3F3;
}
.table_fourth h3 {
  padding: 0px 7px 0px 7px;
  font-size: clamp(26px, 0.4vw, 30px);
  font-weight: 500;
  border-radius: 7px;
  box-sizing: border-box;
  white-space: nowrap;
  font-family: "SpaceGroteskBold";
  margin: 50px 0 0 50px;
  width: clamp(80px, 1vw, 90px);
  background-color: #B9FF66;
}
.table_fourth h4 {
  padding: 0px 7px 0px 7px;
  font-size: clamp(26px, 0.4vw, 30px);
  font-weight: 500;
  border-radius: 7px;
  box-sizing: border-box;
  white-space: nowrap;
  font-family: "SpaceGroteskBold";
  margin: 0 0 0 50px;
  background-color: #B9FF66;
  width: clamp(142px, 1.9vw, 161px);
}

.table_fifth {
  border: 1px solid #191A23;
  border-radius: 45px;
  box-shadow: 0px 5px 0px 0px #191A23;
  display: flex;
  justify-content: space-between;
  background: #B9FF66;
}
.table_fifth h3 {
  padding: 0px 7px 0px 7px;
  font-size: clamp(26px, 0.4vw, 30px);
  font-weight: 500;
  border-radius: 7px;
  box-sizing: border-box;
  white-space: nowrap;
  font-family: "SpaceGroteskBold";
  margin: 50px 0 0 50px;
  width: clamp(117px, 2.7vw, 133px);
  background-color: white;
}
.table_fifth h4 {
  padding: 0px 7px 0px 7px;
  font-size: clamp(26px, 0.4vw, 30px);
  font-weight: 500;
  border-radius: 7px;
  box-sizing: border-box;
  white-space: nowrap;
  font-family: "SpaceGroteskBold";
  margin: 0 0 0 50px;
  background-color: white;
  width: clamp(121px, 2.4vw, 137px);
}

.table_sixth {
  border: 1px solid #191A23;
  border-radius: 45px;
  box-shadow: 0px 5px 0px 0px #191A23;
  display: flex;
  justify-content: space-between;
  background: #191A23;
}
.table_sixth h3 {
  padding: 0px 7px 0px 7px;
  font-size: clamp(26px, 0.4vw, 30px);
  font-weight: 500;
  border-radius: 7px;
  box-sizing: border-box;
  white-space: nowrap;
  font-family: "SpaceGroteskBold";
  margin: 50px 0 0 50px;
  width: clamp(186px, 2.7vw, 213px);
  background-color: #B9FF66;
}
.table_sixth h4 {
  padding: 0px 7px 0px 7px;
  font-size: clamp(26px, 0.4vw, 30px);
  font-weight: 500;
  border-radius: 7px;
  box-sizing: border-box;
  white-space: nowrap;
  font-family: "SpaceGroteskBold";
  margin: 0 0 0 50px;
  background-color: #B9FF66;
  width: clamp(121px, 1.7vw, 138px);
}
.table_sixth a {
  color: white !important;
}

.proposal {
  padding: 0 150px 0 60px;
  max-width: 1240px;
  height: 347px;
  margin: 124px 100px 0 100px;
  border-radius: 45px;
  background: #F3F3F3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
.proposal .proposal_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
}
.proposal .proposal_left h5 {
  margin: 0;
  font-family: "SpaceGroteskBold";
  font-size: clamp(1.625rem, 1.5186rem + 0.396vw, 1.875rem);
  font-weight: 500;
}
.proposal .proposal_left p {
  margin: 0;
  font-size: clamp(1rem, 0.9468rem + 0.198vw, 1.125rem);
  font-weight: 400;
  font-family: "SpaceGrotesk";
  width: 500px;
  line-height: 23px;
}
.proposal .proposal_left a {
  width: 288px;
  height: 68px;
  border-radius: 14px;
  color: white;
  background: #191A23;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "SpaceGrotesk";
  font-size: 20px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
}

.studies {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 164px 0 0 100px;
}
.studies h2 {
  margin: 0;
  font-size: clamp(2.25rem, 2.1436rem + 0.396vw, 2.5rem);
  font-weight: 500;
  padding: 0px 7px;
  border-radius: 7px;
  background-color: #B9FF66;
  font-family: "SpaceGroteskBold";
  white-space: nowrap;
  box-sizing: border-box;
}
.studies p {
  margin: 0;
  font-size: clamp(1rem, 0.9468rem + 0.198vw, 1.125rem);
  font-weight: 400;
  line-height: 23px;
  font-family: "SpaceGrotesk";
  width: 580px;
}

.studies_table {
  overflow: hidden;
  overflow-x: auto;
  margin: 80px 100px 0 100px;
  display: grid;
  grid-template-columns: 410px 1px 412px 1px 410px;
  grid-template-rows: 326px;
  background: #191A23;
  border-radius: 45px;
}
.studies_table .studies_table_left {
  display: inline-block;
  vertical-align: top;
  padding: 70px 64px 93px 60px;
}
.studies_table .studies_table_middle {
  padding: 70px 64px 93px 64px;
  display: inline-block;
  vertical-align: top;
}
.studies_table .studies_table_right {
  display: inline-block;
  vertical-align: top;
  padding: 70px 64px 70px 60px;
}

.studies_table p {
  margin: 0;
  padding-bottom: 20px;
  color: white;
  font-family: "SpaceGrotesk";
  font-size: clamp(1rem, 0.9468rem + 0.198vw, 1.125rem);
  font-weight: 400;
  line-height: 23px;
}
.studies_table a {
  color: #B9FF66;
  font-family: "SpaceGrotesk";
  font-size: clamp(1rem, 0.8936rem + 0.396vw, 1.25rem);
  font-weight: 400;
  text-decoration: none;
}

.line {
  width: 1px;
  height: 186px;
  background: white;
  margin: 70px 0 0 0;
}

.process_top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 140px 0 0 100px;
}
.process_top h2 {
  margin: 0;
  font-size: clamp(2.25rem, 2.1436rem + 0.396vw, 2.5rem);
  font-weight: 500;
  padding: 0px 7px;
  border-radius: 7px;
  background-color: #B9FF66;
  font-family: "SpaceGroteskBold";
  white-space: nowrap;
  box-sizing: border-box;
}
.process_top p {
  margin: 0;
  font-size: clamp(1rem, 0.9468rem + 0.198vw, 1.125rem);
  font-weight: 400;
  line-height: 23px;
  font-family: "SpaceGrotesk";
  width: 292px;
}

.process {
  padding: 80px 103px 0 103px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 279px repeat(5, 159px);
  gap: 30px;
}
.process .process_title_first_adaptive {
  display: none;
  border: 1px solid #191A23;
  background: #F3F3F3;
  border-radius: 45px;
  justify-content: space-between;
  padding: 50px 57px 40px 60px;
  box-shadow: 0px 5px 0px 0px #191A23;
}
.process .process_title_first_adaptive img {
  max-width: 58px;
  aspect-ratio: 1/1;
}
.process .process_title_first {
  border: 1px solid #191A23;
  background: #B9FF66;
  border-radius: 45px;
  box-shadow: 0px 5px 0px 0px #191A23;
}
.process .process_title_first p {
  margin: 0;
  padding: 30px 100px 41px 60px;
  font-size: clamp(1rem, 0.9468rem + 0.198vw, 1.125rem);
  font-weight: 400;
  line-height: 23px;
  font-family: "SpaceGrotesk";
}
.process .process_title {
  border: 1px solid #191A23;
  background: #F3F3F3;
  border-radius: 45px;
  display: flex;
  justify-content: space-between;
  padding: 50px 57px 40px 60px;
  box-shadow: 0px 5px 0px 0px #191A23;
}
.process .process_title img {
  max-width: 58px;
  aspect-ratio: 1/1;
}

.process_title_left {
  display: flex;
  align-items: center;
  gap: 25px;
}
.process_title_left h5 {
  margin: 0;
  font-family: "SpaceGroteskBold";
  font-size: clamp(1.875rem, 1.0767rem + 2.9703vw, 3.75rem);
  font-weight: 500;
}
.process_title_left h6 {
  margin: 0;
  font-family: "SpaceGroteskBold";
  font-size: clamp(1.125rem, 0.8057rem + 1.1881vw, 1.875rem);
  font-weight: 500;
}

.process_title_first_top {
  display: flex;
  justify-content: space-between;
  padding: 50px 0 40px 0;
  border-bottom: 1px solid #000000;
  margin: 0 57px 0 60px;
}

.team_top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 140px 0 0 100px;
}
.team_top h2 {
  margin: 0;
  font-size: clamp(2.25rem, 2.1436rem + 0.396vw, 2.5rem);
  font-weight: 500;
  padding: 0px 7px;
  border-radius: 7px;
  background-color: #B9FF66;
  font-family: "SpaceGroteskBold";
  white-space: nowrap;
  box-sizing: border-box;
}
.team_top p {
  margin: 0;
  font-size: clamp(1rem, 0.9468rem + 0.198vw, 1.125rem);
  font-weight: 400;
  line-height: 23px;
  font-family: "SpaceGrotesk";
  width: 473px;
}

.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 331px 354px;
  gap: 40px;
  padding: 80px 100px 0 100px;
}
.team .team_table {
  border: 1px solid #191A23;
  box-shadow: 0px 5px 0px 0px #191A23;
  border-radius: 45px;
  display: flex;
  flex-direction: column;
}
.team .team_table .team_table_top {
  display: flex;
  padding: 40px 0 28px 0;
  margin: 0 35px 0 35px;
  border-bottom: 1px solid black;
}
.team .team_table .team_table_top .team_table_top_middle_right {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}
.team .team_table .team_table_top .team_table_top_middle_right .image_team {
  padding-left: 179px;
}
.team .team_table .team_table_top .team_table_top_middle_right .team_table_top_middle {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 0 20px;
}
.team .team_table .team_table_top .team_table_top_middle_right .team_table_top_middle h2 {
  margin: 0;
  font-family: "SpaceGroteskBold";
  font-size: clamp(1rem, 0.8936rem + 0.396vw, 1.25rem);
  font-weight: 400;
}
.team .team_table .team_table_top .team_table_top_middle_right .team_table_top_middle p {
  margin: 0;
  font-family: "SpaceGrotesk";
  font-size: clamp(1rem, 0.9468rem + 0.198vw, 1.125rem);
  font-weight: 400;
  white-space: nowrap;
}
.team .team_table .team_p {
  margin: 0;
  font-family: "SpaceGrotesk";
  font-size: clamp(1rem, 0.9468rem + 0.198vw, 1.125rem);
  font-weight: 400;
  line-height: 23px;
  padding: 28px 45px 63px 35px;
}

.team_bottom {
  display: flex;
  justify-content: flex-end;
  padding: 40px 100px 0 0;
}
.team_bottom .team_button {
  width: 269px;
  height: 68px;
  border-radius: 14px;
  color: white;
  background: #191A23;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "SpaceGrotesk";
  font-size: 20px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonials_title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 100px 0 0 100px;
}
.testimonials_title h2 {
  margin: 0;
  font-size: clamp(2.25rem, 2.1436rem + 0.396vw, 2.5rem);
  font-weight: 500;
  padding: 0px 7px;
  border-radius: 7px;
  background-color: #B9FF66;
  font-family: "SpaceGroteskBold";
  white-space: nowrap;
  box-sizing: border-box;
}
.testimonials_title p {
  margin: 0;
  font-size: clamp(1rem, 0.9468rem + 0.198vw, 1.125rem);
  font-weight: 400;
  line-height: 23px;
  font-family: "SpaceGrotesk";
  width: 473px;
}

.testimonials {
  max-width: 1240px;
  height: 625px;
  margin: 80px 100px 0 100px;
  border-radius: 45px;
  background: #191A23;
  overflow: hidden;
}

.testimonials_top {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 50px;
}

.testimonials_bumble {
  margin-top: 84px;
  position: relative;
  border: 1px solid #B9FF66;
  border-radius: 45px;
  padding: 48px 52px;
}
.testimonials_bumble p {
  margin: 0;
  font-family: "SpaceGrotesk";
  color: white;
  font-size: clamp(1rem, 0.9468rem + 0.198vw, 1.125rem);
  font-weight: 400;
  line-height: 23px;
  width: 502px;
}

.testimonials_bumble:after,
.testimonials_bumble:before {
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  border-top: 28px solid #191A23;
  bottom: -27px;
  content: "";
  left: 85px;
  margin-left: -28px;
  position: absolute;
}

.testimonials_bumble:before {
  border-left: 29px solid transparent;
  border-right: 29px solid transparent;
  border-top: 29px solid;
  border-top-color: inherit;
  bottom: -29px;
  margin-left: -29px;
}

.testimonials_middle {
  display: flex;
  flex-direction: column;
}

.testimonials_name {
  padding: 48px 0 0 80px;
}
.testimonials_name h2 {
  margin: 0;
  font-family: "SpaceGrotesk";
  font-size: clamp(1rem, 0.8936rem + 0.396vw, 1.25rem);
  font-weight: 400;
  color: #B9FF66;
}
.testimonials_name p {
  margin: 0;
  font-family: "SpaceGrotesk";
  font-size: clamp(1rem, 0.9468rem + 0.198vw, 1.125rem);
  font-weight: 400;
  color: white;
}

.testimonials_bottom {
  padding-top: 124px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
}
.testimonials_bottom .testimonials_icon {
  margin: 0 72px 0 72px;
  display: flex;
  flex-direction: row;
  gap: 19px;
}

.contact_title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 140px 0 0 100px;
}
.contact_title h2 {
  margin: 0;
  font-size: clamp(2.25rem, 2.1436rem + 0.396vw, 2.5rem);
  font-weight: 500;
  padding: 0px 7px;
  border-radius: 7px;
  background-color: #B9FF66;
  font-family: "SpaceGroteskBold";
  white-space: nowrap;
  box-sizing: border-box;
}
.contact_title p {
  margin: 0;
  font-size: clamp(1rem, 0.9468rem + 0.198vw, 1.125rem);
  font-weight: 400;
  line-height: 23px;
  font-family: "SpaceGrotesk";
  width: 323px;
}

.contact {
  background: #F3F3F3;
  border-radius: 45px;
  margin: 80px 100px 0 100px;
  height: 773px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.contact .contact_left {
  padding: 60px 0 0 100px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 556px;
}
.contact .contact_left .radio-group {
  display: flex;
  align-items: center;
  gap: 35px;
  padding-bottom: 40px;
}
.contact .contact_left .radio-group input[type=radio] {
  appearance: none;
  width: 28px;
  height: 28px;
  border: 1px solid black;
  border-radius: 50%;
  cursor: pointer;
  background-color: white;
  position: relative;
}
.contact .contact_left .radio-group input[type=radio]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background-color: #B9FF66;
  border-radius: 50%;
}
.contact .contact_left .radio-group label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "SpaceGrotesk";
  font-size: clamp(1rem, 0.9468rem + 0.198vw, 1.125rem);
  font-weight: 400;
  white-space: nowrap;
}
.contact .contact_left label {
  font-family: "SpaceGrotesk";
  font-size: clamp(0.875rem, 0.8218rem + 0.198vw, 1rem);
  font-weight: 400;
  padding-bottom: 5px;
}
.contact .contact_left input[type=text],
.contact .contact_left input[type=email] {
  height: 59px;
  border-radius: 14px;
  padding-left: 30px;
  font-family: "SpaceGrotesk";
  font-size: clamp(1rem, 0.9468rem + 0.198vw, 1.125rem);
  font-weight: 400;
  margin-bottom: 25px;
  box-sizing: border-box;
}
.contact .contact_left textarea {
  resize: none;
  height: 190px;
  border-radius: 14px;
  padding: 18px 0 0 30px;
  font-family: "SpaceGrotesk";
  font-size: clamp(1rem, 0.9468rem + 0.198vw, 1.125rem);
  font-weight: 400;
  margin-bottom: 40px;
  box-sizing: border-box;
}
.contact .contact_left button {
  height: 68px;
  border-radius: 14px;
  color: white;
  background: #191A23;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "SpaceGrotesk";
  font-size: 20px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact img {
  padding: 62px 0;
}

.button_adaptive {
  display: none;
}
.button_adaptive button {
  height: 68px;
  border-radius: 14px;
  color: white;
  background: #191A23;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "SpaceGrotesk";
  font-size: 20px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer {
  padding: 56px 60px 0 60px;
  margin: 140px 100px 0 100px;
  height: auto;
  border-radius: 45px 45px 0 0;
  background: #191A23;
}

.footer_top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer_top .footer_top_left {
  display: flex;
  gap: 10px;
}
.footer_top .footer_top_left h2 {
  margin: 0;
  color: white;
  font-family: "SpaceGroteskBold";
  font-size: 32px;
  font-weight: 500;
}
.footer_top .footer_top_middle ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.footer_top .footer_top_middle ul li {
  list-style-type: none;
}
.footer_top .footer_top_middle ul li a {
  font-family: "SpaceGrotesk";
  font-size: clamp(1rem, 0.9468rem + 0.198vw, 1.125rem);
  font-weight: 400;
  color: white;
}
.footer_top .footer_top_right {
  display: flex;
  gap: 20px;
}

.footer_middle {
  padding: 66px 0 50px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid white;
}
.footer_middle .footer_middle_left {
  display: flex;
  flex-direction: column;
}
.footer_middle .footer_middle_left h4 {
  width: 126px;
  margin: 0 0 27px 0;
  font-size: clamp(1rem, 0.8936rem + 0.396vw, 1.25rem);
  font-weight: 400;
  padding: 0px 7px;
  border-radius: 7px;
  background-color: #B9FF66;
  font-family: "SpaceGroteskBold";
  white-space: nowrap;
  box-sizing: border-box;
}
.footer_middle .footer_middle_left p {
  margin: 0;
  font-family: "SpaceGrotesk";
  font-size: clamp(1rem, 0.9468rem + 0.198vw, 1.125rem);
  font-weight: 400;
  line-height: 23px;
  padding-bottom: 20px;
  color: white;
}
.footer_middle .footer_middle_right {
  background: #292A32;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  gap: 20px;
  width: auto;
  box-sizing: border-box;
  border-radius: 14px;
}
.footer_middle .footer_middle_right input {
  width: 285px;
  border: 1px solid #FFFFFF;
  border-radius: 14px;
  background: #292A32;
  padding: 22px 0 22px 35px;
  box-sizing: border-box;
  color: white;
  font-family: "SpaceGrotesk";
  font-size: clamp(1rem, 0.9468rem + 0.198vw, 1.125rem);
  font-weight: 400;
}
.footer_middle .footer_middle_right input::placeholder {
  color: white;
}
.footer_middle .footer_middle_right button {
  background: #B9FF66;
  width: 285px;
  border-radius: 14px;
  padding: 20px 35px;
  box-sizing: border-box;
  font-family: "SpaceGrotesk";
  font-size: clamp(1rem, 0.8936rem + 0.396vw, 1.25rem);
  font-weight: 400;
}
.footer_middle .footer_middle_bottom {
  display: none;
}

.footer_bottom {
  padding: 50px 0 50px 0;
  display: flex;
  gap: 40px;
}
.footer_bottom p {
  margin: 0;
  font-family: "SpaceGrotesk";
  font-size: clamp(1rem, 0.9468rem + 0.198vw, 1.125rem);
  font-weight: 400;
  color: white;
}
.footer_bottom a {
  font-family: "SpaceGrotesk";
  font-size: clamp(1rem, 0.9468rem + 0.198vw, 1.125rem);
  font-weight: 400;
  color: white;
}

@media (max-width: 1347px) {
  .navigating_logo {
    justify-content: center;
  }
  .navigating_logo .navigating_logo_top,
  .navigating_logo .navigating_logo_bottom {
    gap: clamp(1px, 19vw, 378px);
  }
}
@media (max-width: 1240px) {
  .services_table {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
    gap: 30px;
  }
  .team {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact {
    justify-content: center;
  }
  .contact .contact_left {
    padding: 60px 30px 0 30px;
  }
  .contact img {
    display: none;
  }
  .header_left {
    display: none;
  }
  .hamburger-menu {
    display: flex;
  }
  .footer_middle .footer_middle_right {
    flex-direction: column;
  }
  .footer_middle .footer_middle_right .footer_button {
    width: 330px;
  }
}
@media (max-width: 970px) {
  .header {
    padding: 40px 60px 0 60px;
  }
  .navigating {
    display: none;
  }
  .navigating_adaptive {
    display: flex;
    flex-direction: column;
  }
  .navigating_bottom {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .proposal {
    padding: 50px;
    justify-content: center;
  }
  .proposal img {
    display: none;
  }
  .studies_table {
    grid-template-columns: repeat(3, 350px);
    grid-template-rows: 252px;
    gap: 20px;
    background: none;
    border-radius: 0;
    margin: 80px 0 0 100px;
  }
  .studies_table .line {
    display: none;
  }
  .studies_table .studies_table_left {
    border-radius: 45px;
    background: #191A23;
    padding: 42px 50px;
  }
  .studies_table .studies_table_middle {
    background: #191A23;
    padding: 42px 50px;
    border-radius: 45px;
  }
  .studies_table .studies_table_right {
    border-radius: 45px;
    background: #191A23;
    padding: 42px 50px;
  }
  .studies_table p {
    font-size: 16px;
    font-weight: 400;
  }
  .process {
    grid-template-rows: repeat(6, 159px);
  }
  .process .process_title_first {
    display: none;
  }
  .process .process_title_first_adaptive {
    display: flex;
  }
  .team {
    grid-template-columns: 1fr;
  }
  .team .team_table:nth-child(5) {
    display: none;
  }
  .team .team_table:nth-child(6) {
    display: none;
  }
  .team_bottom {
    padding: 40px 20px 0 20px;
    justify-content: center;
  }
  .team_bottom .team_button {
    width: 100%;
  }
  .services,
  .studies,
  .process_top,
  .team_top,
  .testimonials_title,
  .contact_title {
    padding: 60px 0 0 0;
    flex-direction: column;
    gap: 30px;
  }
  .services p,
  .studies p,
  .process_top p,
  .team_top p,
  .testimonials_title p,
  .contact_title p {
    text-align: center;
    width: 390px;
  }
}
@media (max-width: 850px) {
  .footer_middle {
    flex-direction: column;
  }
}
@media (max-width: 796px) {
  .footer {
    padding: 50px 20px 0 20px;
  }
  .footer_top {
    flex-direction: column;
  }
  .footer_top .footer_top_middle ul {
    padding: 37px 0 0 0;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .footer_top .footer_top_middle ul a {
    text-decoration: none;
  }
  .footer_top .footer_top_right {
    display: none;
  }
  .footer_middle {
    padding: 37px 0 0 0;
  }
  .footer_middle .footer_middle_left {
    padding-bottom: 22px;
    align-items: center;
  }
  .footer_middle .footer_middle_left p {
    text-align: center;
    padding-bottom: 15px;
  }
  .footer_middle .footer_middle_left h4 {
    margin: 0 0 37px 0;
    width: 110px;
  }
  .footer_middle .footer_middle_right {
    padding: 30px 30px;
  }
  .footer_middle .footer_middle_bottom {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 37px 0;
  }
  .footer_bottom {
    padding: 37px 0 30px 0;
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }
  .footer_bottom a {
    text-decoration: none;
  }
}
@media (max-width: 625px) {
  .header {
    padding: 30px 20px 0 20px;
  }
  .header_right img {
    max-width: 24px;
    max-height: 24px;
  }
  .navigating_adaptive {
    padding: 40px 20px 0 20px;
  }
  .navigating_logo {
    padding: 60px 0 0 0;
    overflow: hidden;
  }
  .navigating_logo .navigating_logo_top {
    gap: 38px;
    margin-left: 90px;
  }
  .navigating_logo .navigating_logo_bottom {
    gap: 38px;
    margin-left: -92px;
  }
  .navigating_logo .navigating_logo_bottom img:nth-child(2) {
    order: -1;
  }
  .services_table {
    grid-template-columns: 390px;
    padding: 40px 20px 0 20px;
  }
  .services_table .table_first,
  .services_table .table_second,
  .services_table .table_third,
  .services_table .table_fourth,
  .services_table .table_fifth,
  .services_table .table_sixth {
    display: block;
  }
  .services_table .table_first .illustration,
  .services_table .table_second .illustration,
  .services_table .table_third .illustration,
  .services_table .table_fourth .illustration,
  .services_table .table_fifth .illustration,
  .services_table .table_sixth .illustration {
    display: none;
  }
  .services_table .table_first .table_left .table_bottom,
  .services_table .table_second .table_left .table_bottom,
  .services_table .table_third .table_left .table_bottom,
  .services_table .table_fourth .table_left .table_bottom,
  .services_table .table_fifth .table_left .table_bottom,
  .services_table .table_sixth .table_left .table_bottom {
    align-items: flex-end;
    justify-content: space-between;
    padding: 27px 50px 50px 50px;
  }
  .services_table .table_first .table_left .table_bottom a,
  .services_table .table_second .table_left .table_bottom a,
  .services_table .table_third .table_left .table_bottom a,
  .services_table .table_fourth .table_left .table_bottom a,
  .services_table .table_fifth .table_left .table_bottom a,
  .services_table .table_sixth .table_left .table_bottom a {
    display: none;
  }
  .services_table .table_first .table_left .table_bottom .illustration_adaptive,
  .services_table .table_second .table_left .table_bottom .illustration_adaptive,
  .services_table .table_third .table_left .table_bottom .illustration_adaptive,
  .services_table .table_fourth .table_left .table_bottom .illustration_adaptive,
  .services_table .table_fifth .table_left .table_bottom .illustration_adaptive,
  .services_table .table_sixth .table_left .table_bottom .illustration_adaptive {
    display: flex;
    max-width: 165px;
    height: 118px;
  }
  .services_table .table_sixth h3, .services_table .table_sixth h4 {
    background: white;
  }
  .proposal {
    margin: 70px 20px 0 20px;
  }
  .proposal .proposal_left p {
    width: 290px;
  }
  .studies_table {
    margin: 40px 0 0 20px;
  }
  .process_top span {
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    background-color: #B9FF66;
    border-radius: 7px;
    white-space: wrap;
    padding: 0 7px;
  }
  .process_top h2 {
    width: 250px;
    text-align: center;
    background-color: white;
  }
  .process {
    padding: 30px 20px 0 20px;
    grid-template-rows: repeat(6, 98px);
  }
  .process .process_title_first_adaptive,
  .process .process_title {
    padding: 30px;
  }
  .team {
    padding: 40px 20px 0 20px;
  }
  .testimonials {
    margin: 40px 20px 0 20px;
    height: auto;
  }
  .testimonials .testimonials_bumble {
    margin-top: 30px;
    padding: 30px;
  }
  .testimonials .testimonials_bumble p {
    margin: 0;
    font-family: "SpaceGrotesk";
    color: white;
    font-size: clamp(1rem, 0.9468rem + 0.198vw, 1.125rem);
    font-weight: 400;
    line-height: 23px;
    width: 270px;
  }
  .testimonials .testimonials_bottom {
    padding: 60px 0;
  }
  .contact {
    height: auto;
    margin: 40px 20px 0 20px;
  }
  .contact .contact_left button {
    display: none;
  }
  .contact .contact_left textarea {
    margin-bottom: 50px;
  }
  .contact .contact_left label {
    padding-bottom: 10px;
  }
  .button_adaptive {
    display: flex;
    margin: 30px 20px 0 20px;
  }
  .button_adaptive button {
    width: 100%;
  }
  .footer {
    margin: 90px 0 0 0;
    border-radius: 0;
  }
}
@media (max-width: 400px) {
  .services_table {
    grid-template-columns: 1fr;
  }
  .team .team_table .team_table_top {
    margin: 0 20px 0 20px;
  }
  .team .team_table .team_p {
    padding: 28px 20px 63px 20px;
  }
}/*# sourceMappingURL=style.css.map */