* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.site_header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgb(235, 239, 242);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo_txt {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* overflow: hidden;  */
  background: rgb(18, 69, 135); 
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.txt h4 {
  font-size: 18px;
  font-weight: 800;
  color: rgb(21, 28, 41);
  line-height: 1.1;
}

.txt h4 span {
  color: rgb(250, 158, 30);
}

.txt h5 {
  font-size: 12px;
  font-weight: 500;
  color: #667085;
  margin-top: 3px;
}

.nav_bar {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav_bar a {
  font-size: 15px;
  font-weight: 600;
  color: #151c29;
  transition: 0.3s ease;
}

.nav_bar a:hover {
  color: #1579e9;
}

.quote_btn {
  background: #1579e9;
  color: #fff;
  padding: 11px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.quote_btn:hover {
  background: #0f5fba;
}

.mobile_quote {
  display: none;
}

.hamburger {
  display: none;
  width: 34px;
  height: 28px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: #151c29;
  border-radius: 5px;
  transition: 0.3s ease;
}

/* Mobile */
@media (max-width: 900px) {
  .desktop_quote {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav_bar {
    position: absolute;
    top: 73px;
    left: 0;
    width: 100%;
    background: rgb(235, 239, 242);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

  .nav_bar.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav_bar a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
  }

  .mobile_quote {
    display: inline-block;
    text-align: center;
    margin-top: 12px;
    border-bottom: none !important;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
  }
}

@media (max-width: 480px) {
  .header_container {
    padding: 12px 16px;
  }

  .logo {
    width: 38px;
    height: 38px;
  }

  .txt h4 {
    font-size: 15px;
  }

  .txt h5 {
    font-size: 10px;
  }

  .nav_bar {
    top: 64px;
  }
}
/* Section Home Pg */
.hero_section {
  min-height: 90vh;
  background: url("img/WhatsApp Image 2026-04-29 at 21.10.46.jpeg") center/cover no-repeat;
}

.hero_overlay {
  min-height: 90vh;
  background: linear-gradient(
    to right,
    rgba(10, 20, 40, 0.85),
    rgba(10, 20, 40, 0.55),
    rgba(10, 20, 40, 0.2)
  );
  display: flex;
  align-items: center;
}

.hero_content {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  color: #fff;
}

/* SMALL TOP LABEL */
.hero_tag {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #cbd5e1;
  margin-bottom: 16px;
}

/* MAIN TITLE — FIXED SIZE */
.hero_content h1 {
  font-size: clamp(32px, 4vw, 48px); 
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

/* SUB TEXT */
.hero_text {
  font-size: 16px;
  max-width: 520px;
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* BUTTONS */
.hero_buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}

.btn_primary {
  background: #1579e9;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.btn_primary:hover {
  background: #0f5fc0;
}

.btn_secondary {
  border: 1px solid #fff;
  padding: 12px 22px;
  border-radius: 8px;
  color: #fff;
  transition: 0.3s;
}

.btn_secondary:hover {
  background: #25d366;
  border-color: #25d366;
}

/* STATS */
.hero_stats {
  display: flex;
  gap: 40px;
}

.hero_stats h3 {
  font-size: 26px;
  color: #667085;
}

.hero_stats p {
  font-size: 13px;
  color: #cbd5e1;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero_section,
  .hero_overlay {
    min-height: 100vh;
  }

  .hero_content {
    padding-top: 60px;
  }

  .hero_buttons {
    flex-direction: column;
  }

  .btn_primary,
  .btn_secondary {
    width: 100%;
    text-align: center;
  }

  .hero_stats {
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
  }

  .hero_stats div {
    flex: 1;
  }

  .hero_stats h3 {
    font-size: 24px;
  }

  .hero_stats p {
    font-size: 12px;
    line-height: 1.3;
  }
}/* what we do section */
.w_t_d_section {
  background: #f8fafc;
  color: rgb(21, 28, 41);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  padding: 90px 0;
}

.w_t_d_div {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
}

.w_t_d_div_txt {
  max-width: 680px;
  margin-bottom: 42px;
}

.wtd_original_text {
  background: #eaf1f8;
  color: rgb(16, 47, 96);
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 12px;
  padding: 6px 14px;
}

.w_t_d_div_txt h2 {
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
}

.w_t_d_div_txt p {
  color: rgb(90, 104, 124);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 14px;
}

.grid_category {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.box_category_grid {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(217, 223, 232, 0.8);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  padding: 28px;
  transition: 0.3s ease;
}

.box_category_grid:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  border-color: rgba(21, 121, 233, 0.35);
}

.svg_img {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgb(16, 47, 96), rgb(19, 92, 174));
  border-radius: 14px;
  margin-bottom: 22px;
}

.box_category_grid h3 {
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}

.box_category_grid p {
  color: rgb(90, 104, 124);
  font-size: 14px;
  line-height: 1.65;
}

.box_category_grid a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgb(16, 47, 96);
  margin-top: 22px;
  font-weight: 700;
  font-size: 14px;
  transition: 0.3s ease;
}

.box_category_grid a svg {
  transition: 0.3s ease;
}

.box_category_grid a:hover {
  color: #1579e9;
}

.box_category_grid a:hover svg {
  transform: translateX(4px);
}

/* Tablet */
@media (max-width: 1100px) {
  .grid_category {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 650px) {
  .w_t_d_section {
    padding: 65px 0;
  }

  .w_t_d_div {
    width: min(100% - 28px, 1200px);
  }

  .w_t_d_div_txt {
    margin-bottom: 30px;
  }

  .grid_category {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .box_category_grid {
    padding: 24px;
  }

  .svg_img {
    width: 48px;
    height: 48px;
  }
}
/* Quality Backed By Trust Section */
.q_b_b_t_section {
  /* background: linear-gradient(180deg, #f9fafb 0%, #eef2f7 100%); */
  padding: 96px 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.grid_container_quality {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.q_b_b_t_container {
  padding: 0;
}

.q_b_b_t_original_text {
  background: #eaf1f8;
  color: rgb(16, 47, 96);
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 14px;
  padding: 6px 14px;
}

.q_b_b_t_div_txt h2 {
  color: #151c29;
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  max-width: 560px;
}

.q_b_b_t_div_txt p {
  font-size: 16px;
  color: rgb(90, 104, 124);
  line-height: 1.7;
  margin-top: 18px;
  max-width: 560px;
}

.list_w_w_d {
  margin-top: 28px;
  list-style: none;
  display: grid;
  gap: 14px;
}

.list_w_w_d li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgb(21, 28, 41);
  font-size: 15px;
  line-height: 1.6;
}

.list_w_w_d li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.w_w_d_a_tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
  padding: 13px 28px;
  color: #fff;
  background: rgb(16, 47, 96);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s ease;
}

.w_w_d_a_tag:hover {
  background: #1579e9;
  transform: translateY(-3px);
}

.w_w_d_a_tag svg {
  transition: 0.3s ease;
}

.w_w_d_a_tag:hover svg {
  transform: translateX(4px);
}

/* RIGHT GRID */
.grid_quality {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.grid_quality_box {
  background: #fff;
  border: 1px solid rgba(217, 223, 232, 0.9);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  color: rgb(21, 28, 41);
  padding: 26px;
  border-radius: 16px;
  transition: 0.3s ease;
}

.grid_quality_box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
  border-color: rgba(249, 158, 31, 0.5);
}

.quality_icon {
  display: grid;
  place-items: center;
  background: rgba(249, 158, 31, 0.15);
  border-radius: 12px;
  margin-bottom: 18px;
  height: 46px;
  width: 46px;
}

.grid_quality_box h3 {
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.35;
  margin-bottom: 8px;
}

.grid_quality_box p {
  color: rgb(90, 104, 124);
  font-size: 14px;
  line-height: 1.65;
}

/* TABLET */
@media (max-width: 1000px) {
  .grid_container_quality {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .q_b_b_t_div_txt h2,
  .q_b_b_t_div_txt p {
    max-width: 720px;
  }
}

/* MOBILE */
@media (max-width: 650px) {
  .q_b_b_t_section {
    padding: 70px 0;
  }

  .grid_container_quality {
    width: min(100% - 28px, 1200px);
    gap: 36px;
  }

  .q_b_b_t_div_txt h2 {
    font-size: 30px;
  }

  .q_b_b_t_div_txt p {
    font-size: 15px;
  }

  .grid_quality {
    grid-template-columns: repeat(2,1fr);
  }

  .grid_quality_box {
    padding: 24px;
  }

  .w_w_d_a_tag {
    width: 100%;
  }
}
/* Recent Project Home Section */
.recent_project {
  background: linear-gradient(180deg, #f9fafb 0%, #eef2f7 100%);
  padding: 90px 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.recent_project_container {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
}

.recent_project_text_heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.recent_project_txt {
  background: #eaf1f8;
  color: rgb(16, 47, 96);
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  line-height: 16px;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}

.recent_project_text_heading h2 {
  color: rgb(21, 28, 41);
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
}

.recent_project_text_heading p {
  color: rgb(90, 104, 124);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 650px;
}

/* PROJECT GRID */
.project_img_present {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
}

.project_img {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border-radius: 18px;
  background: #d9dfe8;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.project_img.big {
  grid-row: span 2;
  min-height: 520px;
}

.project_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.45s ease;
}

.project_img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72),
    rgba(0, 0, 0, 0.18),
    transparent
  );
  z-index: 1;
}

.txt_in_img {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #fff;
  z-index: 2;
}

.txt_in_img p {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.85;
  margin-bottom: 4px;
}

.txt_in_img h4 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.project_img.big .txt_in_img h4 {
  font-size: 24px;
}

.project_img:hover img {
  transform: scale(1.06);
}

/* BUTTON */
.v_a_projects {
  width: fit-content;
  margin: 36px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #171f2b;
  border: 1px solid rgb(217, 223, 232);
  border-radius: 10px;
  padding: 14px 26px;
  font-weight: 700;
  transition: 0.3s ease;
}

.v_a_projects svg {
  transition: 0.3s ease;
}

.v_a_projects:hover {
  background: rgb(16, 47, 96);
  color: #fff;
  border-color: rgb(16, 47, 96);
  transform: translateY(-3px);
}

.v_a_projects:hover svg path {
  stroke: #fff;
}

.v_a_projects:hover svg {
  transform: translateX(4px);
}

/* TABLET */
@media (max-width: 950px) {
  .recent_project {
    padding: 75px 0;
  }

  .project_img_present {
    grid-template-columns: repeat(2, 1fr);
  }

  .project_img.big {
    grid-column: span 2;
    grid-row: auto;
    min-height: 380px;
  }

  .project_img {
    min-height: 260px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .recent_project {
    padding: 65px 0;
  }

  .recent_project_container {
    width: min(100% - 28px, 1200px);
  }

  .recent_project_text_heading {
    margin-bottom: 32px;
  }

  .recent_project_text_heading h2 {
    font-size: 30px;
  }

  .recent_project_text_heading p {
    font-size: 15px;
  }

  /* ✅ 2 BY 2 GRID */
  .project_img_present {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* make big image behave like others */
  .project_img.big {
    grid-column: span 2; /* still full width at top */
    min-height: 260px;
  }

  .project_img {
    min-height: 180px;
  }

  .project_img.big .txt_in_img h4 {
    font-size: 20px;
  }

  .v_a_projects {
    width: 100%;
  }
}
/* Ready To Start Section Styling */
.r_t_s_section {
  background: linear-gradient(135deg, rgb(16, 47, 96), rgb(19, 92, 174));
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.r_t_s_section::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -90px;
  top: -90px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.r_t_s_container {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.r_t_s_txt_container {
  max-width: 680px;
}

.r_t_s_txt_container h2 {
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: #fff;
}

.r_t_s_txt_container p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 560px;
}

.r_t_s_btn_contact_container {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.r_t_s_btn_contact_container a {
  height: 50px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
}

.r_t_s_btn_contact_container a:first-child {
  background: linear-gradient(135deg, rgb(249, 158, 31), rgb(245, 120, 10));
  color: #171f2b;
}

.r_t_s_btn_contact_container a:first-child:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.w_s_us {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.w_s_us svg path {
  fill: #fff;
}

.w_s_us:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  transform: translateY(-3px);
}

/* Tablet */
@media (max-width: 900px) {
  .r_t_s_section {
    padding: 70px 0;
  }

  .r_t_s_container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .r_t_s_txt_container,
  .r_t_s_txt_container p {
    margin-left: auto;
    margin-right: auto;
  }

  .r_t_s_btn_contact_container {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .r_t_s_section {
    padding: 60px 0;
  }

  .r_t_s_container {
    width: min(100% - 28px, 1200px);
    gap: 30px;
  }

  .r_t_s_txt_container h2 {
    font-size: 28px;
  }

  .r_t_s_txt_container p {
    font-size: 15px;
  }

  .r_t_s_btn_contact_container {
    flex-direction: column;
  }

  .r_t_s_btn_contact_container a {
    width: 100%;
  }
}
/* Footer */
.footer {
  background: #142034;
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.footer_container {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 45px;
  padding: 58px 0 42px;
}

.flex_logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.logo_img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #1e3b69;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer_brand h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.footer_brand h3 span {
  color: #f9a21f;
}

.footer_brand .flex_logo p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #cbd5e1;
  margin-top: 4px;
}

.footer_desc {
  max-width: 300px;
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.7;
}

.footer_col h4 {
  color: #f9a21f;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.7px;
}

.footer_col a,
.footer_col p {
  display: block;
  color: #dbe4ef;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer_col a {
  transition: 0.3s ease;
}

.footer_col a:hover {
  color: #f9a21f;
  transform: translateX(4px);
}

.footer_bottom {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.footer_bottom p {
  color: #cbd5e1;
  font-size: 13px;
}

/* Tablet */
@media (max-width: 900px) {
  .footer_container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer_bottom {
    flex-direction: column;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .footer_container {
    width: min(100% - 28px, 1200px);
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 34px;
  }

  .footer_bottom {
    width: min(100% - 28px, 1200px);
  }
}