@charset "utf-8";


.popup-wrapper {
    display: none; 
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999999 !important;
}

.popup-container {
    position: absolute;
    top: 50%;left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; 
    max-width: 850px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.popup-container img {
  display: block;
  width: 100% !important; 
  height: auto !important; 
  border: 0;
}

.popup-bottom-bar {
    background: #000;
    color: #fff;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.popup-bottom-bar label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    user-select: none;
}

.popup-bottom-bar button {
    background: transparent;
    border: 1px solid #777;
    color: #fff;
    padding: 3px 12px;
    cursor: pointer;
    font-size: 12px;
    transition: 0.2s;
}

.popup-bottom-bar button:hover {
    background: #333;
    border-color: #fff;
}


/**************************************************************/
/**************************************************************/
/************************ sub 서브페이지 **********************/
/**************************************************************/
/**************************************************************/
.sub_tit{
    display: flex;
    gap: 2rem;
    margin: 3rem 0 1.5rem;
    align-items: center;
}
.sub_tit h3{
    font-size: var(--txt-title2);
    font-weight: 600;
    padding-left: 1.8rem;
   position: relative;
   color: var(--cgray-900);
   line-height: 140%;
}
.sub_tit h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border: 4px solid var(--main-color);
}
.sub_tit span{
    font-size: var(--txt-heading2);
    color: var(--main-color);
    font-weight: 600;
}
.sub_tit p{
  font-size: var(--txt-body1);
  color: var(--cgray-700);
  font-weight: 400;
}

.sub_box,
.sub_box p,
.sub_box li{
  font-size: var(--txt-body1) !important;
}

.quotes{
  color: #fff;
  display: inline-block;
  padding: 0 3rem;
  margin-bottom: 0;
  position: relative;
  font-size: var(--txt-title1);
  font-weight: 700;
  line-height: 1.3;
}
.quotes::before {
  content: "\e244";
  font-family: 'Material Symbols Outlined';
  position: absolute;
  left: 0;
  top: -20px;
  font-size: 40px;
  color: #fff;
  opacity: 0.3;
  transform: scale(-1, -1);
  font-variation-settings:
    'FILL' 1,
    'wght' 300,
    'GRAD' 0,
    'opsz' 24
}
.quotes::after {
  content: "\e244";
  font-family: 'Material Symbols Outlined';
  position: absolute;
  right: 0;
  bottom: -20px;
  font-size: 40px;
  color: #fff;
  opacity: 0.3;
  font-variation-settings:
  'FILL' 1,
  'wght' 300,
  'GRAD' 0,
  'opsz' 24
}

.main_tit{
    margin: 0 0 5rem;
    align-items: center;
    text-align: center;
    justify-items: center;
}
.main_tit h6.eng{
  font-size: var(--txt-body2);
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--sub-color-1);
}
.main_tit h3{
  font-size: var(--txt-title1);
  margin-bottom: 1.5rem;
  line-height: 140%;
}
.main_tit h3.quotes{
  display: block !important;
  color: var(--cgray-900) !important;
}
.main_tit h3.quotes::before,
.main_tit h3.quotes::after{
  color: var(--cgray-200) !important;
  opacity: 1 !important;
}
.main_tit h4{
    font-size: var(--txt-title3);
    line-height: 140%;
    font-weight: 400;
}

.main_tit p{
  font-size: 1.2rem;
  color: var(--cgray-700);
  line-height: 1.5;
  text-wrap-style: balance;
  letter-spacing: 0.2px;
}


p.caption{
  line-height: 150%;
  color: var(--cgray-600);
  font-weight: 300;
}
hr{
  color: var(--cgray-200);
}
ul.squre li{
    font-size: var(--txt-body2);
    padding: 0px 0 0 12px;
    margin: 8px 0px 8px 0;
    position: relative;
    text-align: left;
    line-height: 140%;
}
ul.none li{
  font-size: var(--txt-body2);
    margin: 8px 0px 8px 0;
    position: relative;
    text-align: left;
    line-height: 140%;
}
ul.squre li:before{
  content: '';
  width: 4px;
  height: 4px;
  position: absolute;
  top: 9px;
  left: 0;
  background: var(--cgray-400);
}
ul.squre li span{
    color: var(--main-color);
    font-weight: 500;
}

ul.check li {
    position: relative;
    padding-left: 30px; 
    margin-bottom: 15px;
    display: flex;
    font-size: 1rem;
}
ul.check li:before {
  content: '\e5ca';
    font-family: 'Material Icons';
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}


ul.line li:before{
  content: '';
  width: 6px;
  height: 1px;
  position: absolute;
  top: 9px;
  left: 0;
  background: var(--cgray-500);
}

table {
  width: 100%;
  border-right: 1px var(--cgray-200) solid;
  border-left: 1px var(--cgray-200) solid;
  border-bottom: 1px var(--cgray-200) solid;
  border-collapse: collapse;
  line-height: 1.4em;
  text-align: center;
  position: relative;
}

table th {
  background-color: var(--cgray-100);
  font-size: 1.075rem;
  border-right: 1px var(--cgray-200) solid;
  border-bottom: 1px solid var(--cgray-200);
  padding: 14px;
  font-weight: 500;
  vertical-align: middle;
}
table th:last-child{
  border-right: 1px solid var(--cgray-200);
}
table tr {
  border-bottom: 1px var(--cgray-200) solid;
}
table tr:last-child{
  border-bottom: 0;
}
table td {
    padding: 14px;
    border-right: 1px var(--cgray-200) solid;
    vertical-align: middle;
    line-height: 140%;
}
.material-icons-outlined.main_clr{
  font-size: 16px;
  color: var(--main-color-2) !important;
  vertical-align: middle;
  margin-left: 2px;
}


/*----101 회사개요-------*/
.overview_wrap{
  margin-top: 6rem;
}
.overview_wrap .visual_header {
    position: relative;
    width: 100%;
    height: 330px;
}
.overview_wrap .visual_header::before {
    content: "BEFORE SYSTEM";
    color: var(--cgray-100);
    font-size: 72px;
    letter-spacing: -2%;
    line-height: 70%;
    font-weight: 800;
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    z-index: -1;
}

.overview_wrap .visual_header .bg_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overview_wrap .visual_header .slogan_box {
    position: absolute;
    top: -60px;
    right: 0;
    background-color: var(--main-color-2);
    padding: 2.5rem 2rem;
}
.overview_wrap .visual_header .slogan_box .quotes{
  color: #fff;
}
.overview_wrap .info_container {
    display: flex;
    padding: 60px 0;
    gap: 50px;
}

.overview_wrap .info_container .logo_area {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    height: fit-content;
}

.logo_area .logo_img {
    height: auto;
}

.overview_wrap .table_area {
    flex: 2.5;
}

.info_table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid var(--cgray-800);
      border-left: 0;
    border-right: 0;
}

.info_table th, 
.info_table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--cgray-200);
    font-size: var(--txt-body2);
    text-align: left;
    border-right: 0;
}

.info_table th {
    width: 140px;
    color: var(--cgray-900);
    font-weight: 700;
    border-right: 0;
    background: none;
}

.info_table td {
    color: var(--cgray-700);
    line-height: 1.6;
}

.info_table a {
    color: inherit;
    text-decoration: none;
}

/*----102 인사말-------*/
.greeting_wrap .content_flex {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.greeting_wrap .content_flex .photo_area {
    flex: 1;
}

.greeting_wrap .content_flex .photo_area .img_wrap {
    width: 100%;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.greeting_wrap .content_flex .text_area {
    flex: 1.5;
}

.greeting_wrap .content_flex .text_area .greeting_body p {
    font-size: var(--txt-body1);
    color: var(--cgray-700);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.greeting_wrap .content_flex .text_area .greeting_body p:first-child,
.greeting_wrap .content_flex .text_area .greeting_body p:nth-child(2){
  font-size: var(--txt-title2);
  font-weight: 700;
  color: var(--cgray-900);
  margin-bottom: 0;
  line-height: 1.4;
}

.greeting_wrap .content_flex .text_area .greeting_body p:nth-child(2) {
    margin-bottom: 24px !important;
}

.greeting_wrap .content_flex .text_area .greeting_footer {
    margin-top: 50px;
    text-align: right; 
}

.greeting_wrap .content_flex .text_area .greeting_footer .company_name {
    font-size: var(--txt-body1);
    color: var(--gray-900);
    font-weight: 600;
}

.greeting_wrap .content_flex .text_area .greeting_footer .ceo_name {
    font-size: var(--txt-title3);
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 5px;
    letter-spacing: 3px;
}

/*----102 비전/미션-------*/
.vision_wrap .slogan_container {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    background: var(--main-color-2);
    padding: 2rem;
}

.vision_wrap .slogan_container .slogan_label {
    display: block;
    font-size: var(--txt-body2);
    color: var(--sub-color-1);
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.vision_wrap .identity_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vision_wrap .identity_grid .identity_card {
    padding: 60px 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: var(--gray-50);
}


.vision_wrap .identity_grid .identity_card .card_label {
    font-size: var(--txt-body2);
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--main-color-2)
}

.vision_wrap .identity_grid .identity_card .card_label::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: currentColor;
    opacity: 0.5;
}

.vision_wrap .identity_grid .identity_card .card_headline {
    font-size: var(--txt-title3);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.5;
}

.vision_wrap .identity_grid .identity_card .card_description {
    font-size: var(--txt-body1);
    line-height: 1.6;
    color: var(--cgray-600);
    margin-top: auto;
}

/*----104 연혁-------*/


.history_wrap .history_top p{
  color: #fff;
  opacity: 0.5;
  font-size: var(--txt-body1);
  text-wrap-style: balance;
  margin-top: 1rem;
}
.history_wrap .history_cont .header{
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 4rem 0;
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--gray-200);
}
.history_wrap .history_cont .header .period{
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--main-color-2);
  letter-spacing: -0.05em;
  line-height: 1;
  white-space: nowrap;
}
.history_wrap .history_cont .header .desc{
  font-size: var(--txt-body2);
  color: var(--cgray-500);
  font-weight: 400;
  margin-bottom: 6px;
}
.history_wrap .history_cont .header .phase{
  font-size: var(--txt-title3);
  font-weight: 700;
  line-height: 140%;
}
.history_wrap .history_cont .year_block{
    display: grid;
    grid-template-columns: 340px 48px 1fr;
    gap: 0;
    margin-bottom: 3rem;
    align-items: start;
    position: relative;
}

.history_wrap .history_cont .year_block .photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.history_wrap .history_cont .year_block .timeline_col{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 6px;
    align-self: stretch;
}
.history_wrap .history_cont .year_block .timeline_col::before{
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: var(--gray-200);
}


.history_wrap .history_cont .year_block .timeline_col .tl_dot{
      width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--main-color);
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px var(--main-color);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}
.history_wrap .history_cont .year_block .events_side{
  padding-left: 8px;
}
.history_wrap .history_cont .year_block.flip {
    grid-template-columns: 1fr 48px 340px;
}
.history_wrap .history_cont .year_block.flip .events_side{
    grid-column: 1;
    grid-row: 1;
    padding-left: 0;
    padding-right: 8px;
    text-align: right;
}

.history_wrap .history_cont .year_block .events_side .year{
    font-size: var(--txt-title1);
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: var(--spacing-md);
    line-height: 1;
}
.history_wrap .history_cont .year_block .events_side .event_row{
   display: flex;
    gap: 10px;
    padding: 12px 0;
    margin-bottom: 4px;
    align-items: center;
}
.history_wrap .history_cont .year_block.flip .events_side .event_row {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

.history_wrap .history_cont .year_block .events_side .event_row .month{
    font-size: var(--txt-body2);
    font-weight: 700;
    color: var(--gray-500);
    /* min-width: 22px; */
    flex-shrink: 0;
}
.history_wrap .history_cont .year_block .events_side .event_row .text{
    font-size: var(--txt-body1);
    color: var(--gray-800);
    line-height: 1.6;
}

/*----105 조직도-------*/
.duty_wrap {
  width: 100%;
}
 
.duty_wrap .duty_section {
  width: 100%;
  margin-bottom: 1rem;
}

.duty_wrap .duty_section .duty_section_title {
  font-size: var(--txt-heading2);
  font-weight: 600;
  padding: 12px;
  border-bottom: 1px solid var(--cgray-200);
  background: var(--cgray-100);
}
 
.duty_wrap .duty_section .duty_row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--cgray-200);
  min-height: 44px;
  padding: 12px 0;
}
 
.duty_wrap .duty_section .duty_dept {
  flex: 0 0 200px;
  font-size: var(--txt-body2);
  color: var(--cgray-700);
  padding-left: 16px;
  white-space: nowrap;
}

.duty_wrap .duty_section .duty_tasks {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.duty_wrap .duty_section .duty_tasks .duty_tag {
font-size: var(--txt-label);
    color: var(--cgray-700);
    /* background: var(--cgray-50); */
    /* border: 1px solid var(--cgray-300); */
    /* border-radius: 4px; */
    padding: 4px 8px;
    white-space: nowrap;
}
 
.duty_wrap .duty_section .duty_tasks .duty_tag.gray {
  color: var(--cgray-500);
  /* border-color: var(--cgray-200); */
  /* background: var(--cgray-50); */
}


.org_chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 4rem;
}

.org_chart .level_top .box{
  background: var(--main-color-2);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  align-content: center;
  color: #fff;
  border: 0;
  font-size: var(--txt-heading1);
  font-weight: 700;
}

.org_chart .level_top .box.rec {
  width: 120px;
  height: 120px;
background: var(--main-color);
    border-radius: 24px; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.org_chart .dept_col > .box{
  border-radius: 1rem 0 1rem 0;
  border: 0;
  background: var(--cgray-600);
  color: #fff;
  font-size: var(--txt-body1);
}
.org_chart .box {
  border: 1px solid var(--cgray-300);
  padding: 10px 14px;
  font-size: var(--txt-body2);
  white-space: nowrap;
  text-align: center;
  background: #fff;
  border-radius: 4px;
  color: var(--cgray-900);
  width: 100%;
}

.org_chart .box.gray {
  color: var(--cgray-500);
}
.org_chart .v_line {
  width: 1px;
  background: var(--cgray-300);
}
.org_chart .v_line.h30 {
  height: 30px;
}
.org_chart .level_top {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.org_chart .dept_section {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
}
.org_chart .h_line {
  position: absolute;
  top: 0;
  height: 1px;
  background: var(--cgray-300);
}
.org_chart .dept_row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}
.org_chart .dept_col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.org_chart .sub_stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/*----106 지사안내-----*/

.table_default thead tr{
  background: var(--cgray-50);
  border-bottom: 1px solid var(--cgray-300);
}
.table_default th{
  font-size: var(--txt-body2);
  font-weight: 700;
  color: var(--cgray-900);
  padding: 10px 16px;
  text-align: center;
}
.table_default tbody tr{
  border-bottom: 1px dashed var(--cgray-200);
}
.table_default tbody tr:last-child{
  border-bottom: none;
}
.table_default td{
  font-size: var(--txt-body2);
  color: var(--cgray-800);
  padding: 12px 16px;
  vertical-align: middle;
}


/*-----107 찾아오시는길----*/
.location_wrap .ci-head {
  background: var(--cgray-50);
  border: 1px solid var(--cgray-200);
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  padding: 2rem;
  border-top: 0;
}

.location_wrap .ci-head .ci-head__left {
  position: relative;
  padding-right: 2rem;
}

.location_wrap .ci-head .ci-head__left::after {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 1px;
  right: 0;
  border-right: 1px dashed var(--cgray-300);
}

.location_wrap .ci-head .ci-title {
  margin: 0;
  font-size: var(--txt-title2);
  line-height: 1.25;
  font-weight: 400;
}

.location_wrap .ci-head .ci-head__right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.location_wrap .ci-head .ci-head__right .ci-addr {
  font-size: var(--txt-body1);
  font-weight: 400;
}

.location_wrap .ci-head .ci-head__right .ci-tel {
  font-size: var(--txt-body1);
  font-weight: 400;
}

.location_wrap .ci-head .ci-head__right .ci-tel .divider {
  margin-left: 26px;
}


/*---201 사업분야---*/
.sectors_wrap{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 1.5rem;
}

.sectors_wrap .sector_item{
  background: var(--cgray-50);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}
.sectors_wrap .sector_item::after{
  right: 24px;
  bottom: 24px;
  line-height: 1;
  font-size: 60px;
  font-weight: 700;
  color: var(--cgray-200);
  position: absolute;
}
.sectors_wrap .sector_item:nth-child(1)::after{
  content:'01';
}
.sectors_wrap .sector_item:nth-child(2)::after{
  content:'02';
}
.sectors_wrap .sector_item:nth-child(3)::after{
  content:'03';
}
.sectors_wrap .sector_item:nth-child(4)::after{
  content:'04';
}
.sectors_wrap .sector_item .icon{
  width: 56px;
  height: auto;
}
.sectors_wrap .sector_item .icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sectors_wrap .sector_item .txt_wrap{
  margin-top: auto;
  z-index: 2;
}
.sectors_wrap .sector_item .txt_wrap h4{
  font-size: var(--txt-title3);
  color: var(--cgray-900);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.sectors_wrap .sector_item .txt_wrap p{
  font-size: var(--txt-body1);
  line-height: 140%;
  text-wrap-style: balance;
  color: var(--cgray-700);
}


/*---202 주요 고객사---*/
.logo_wrap{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}
.logo_wrap .logo_item{
  text-align: center;
  border: 1px solid var(--cgray-200);
}
.logo_wrap .logo_item a{
  padding: 1rem 0;
  display: block;
}
/*---203 인증 및 자격 ---*/
.certifications_wrap{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.certifications_wrap .cert_item{
  cursor: pointer;
  text-align: center;
  transition: transform 0.3s ease;
}
.certifications_wrap .cert_item:hover img{
  transform: scale(1.05)
}
.certifications_wrap .cert_item .img_box{
  width: 100%;
  aspect-ratio: 8 / 11;
  border: 1px solid var(--cgray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}
.certifications_wrap .cert_item .img_box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.certifications_wrap .cert_item .img_box::after {
  content: '\e56b'; 
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  color: #fff;
  font-size: 3rem;
  opacity: 0;
  z-index: 2;
  transition: all 0.3s ease;
}

.certifications_wrap .cert_item:hover .img_box::before {
    opacity: 1;
}

.certifications_wrap .cert_item:hover .img_box::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.certifications_wrap .cert_item .img_box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
   transition: transform 0.3s ease;
}
.certifications_wrap .cert_item .cert_tit{
  font-size: var(--txt-body1);
  color: var(--cgray-900);
  font-weight: 500;
  line-height: 1.4;
}
 .modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; 
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: zoom-out;
}

.modal_overlay.active {
    display: flex;
}

.modal_content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal_overlay.active .modal_content {
    transform: scale(1);
}

.modal_content img {
    max-width: 100%;
    max-height: 90vh;
    display: block;
    border-radius: 4px;
}

.close_btn {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*-----204 정보보안 ----*/
.strength_card .bg{
  background: var(--cgray-50);
  border: 1px solid var(--cgray-200);
  padding: 1rem;
  margin: 16px 0;
}
.value_wrap{
  background: var(--main-color-2);
  padding: 3rem 2rem 2rem;
  border-radius: 0.5rem;
  position: relative;
  text-align: center;
}
.value_wrap h4{
  position: absolute;
  background: #fff;
  border-radius: 5rem;
  color: var(--main-color-2);
  font-size: var(--txt-body1);
  font-weight: 600;
  box-shadow: var(--box-shadow-normal);
  padding: 6px 20px;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
}
.value_wrap h2{
  color: #fff;
  font-size: var(--txt-title2);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.value_wrap p{
  color: var(--cgray-50);
  font-size: var(--txt-body1);
}


/*---301 통합유지보수---*/
.strength_grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--cgray-900);
}
.strength_grid.col_4{
  grid-template-columns: repeat(4, 1fr);
}
.strength_grid .strength_card{
  background: #fff;
  padding: 3rem 2rem;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.strength_grid .strength_card + .strength_card{
  border-left: 1px solid var(--cgray-200);
}
.strength_grid .strength_card .img_wrap{
  width: 100%;
  height: 240px;
  margin-bottom: 2rem;
  overflow: hidden;
  position: relative;
}

.strength_grid .strength_card .img_wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.strength_grid .strength_card .txt_wrap{
  position: relative;
}
.strength_grid .strength_card .txt_wrap .label{
  font-size: var(--txt-body2);
  color: var(--main-color-2);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.strength_grid .strength_card .txt_wrap .label::before{
  content: '';
  display: inline-block;
  width: 10px;
  height: 2px;
  background: var(--main-color-2);
  margin-right: 8px;
}
.strength_grid .strength_card .txt_wrap .sub{
  font-size: var(--txt-body2);
  color: var(--cgray-800);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.strength_grid .strength_card .txt_wrap .main{
  font-size: var(--txt-title3);
  color: var(--cgray-900);
  line-height: 1.2;
  margin-bottom: 2rem;
}
.strength_grid .strength_card .txt_wrap .desc{
  font-size: var(--txt-body1);
  color: var(--cgray-600);
  line-height: 1.6;
}
.strength_grid .strength_card .num{
  position: absolute;
  top: 0;
  right: 0;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0.07;
  z-index: 10;
}
.strength_grid.security .strength_card .num{
  top: -20px;
}
/*---302 정보통신설비 - 유지보수 및 성능정검이란?---*/
.grey_bg{
  background: var(--cgray-50);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  justify-items: center;
  padding: 1rem 0 4rem;
}
.grey_bg .inner{
  max-width: var(--web-width);
  width: var(--web-width);
}

.compare_wrap{
  display: flex;
  gap: 3rem;
}
.compare_wrap .compare_box{
  background: #fff;
  padding: 1.5rem;
  flex: 1;
}
.compare_wrap .compare_box .tit_box{
  background: var(--main-color);
  padding: 12px;
  text-align: center;
  margin-bottom: 0.75rem;
}
.compare_wrap .compare_box:last-child .tit_box{
  background: var(--main-color-2);
}
.compare_wrap .compare_box .tit_box p{
  color: #fff;
  font-size: var(--txt-body2);
  font-weight: 400;
  margin-bottom: 4px;
}
.compare_wrap .compare_box .tit_box h4{
  color: #fff;
  font-size: var(--txt-title3);
  font-weight: 600;
}
.compare_wrap .compare_box .info_table{
  border-top: none;

}
.compare_wrap .compare_box .info_table th{
  width: 100px;
}

.ict_banner{
  background: url(../images/sub/ict_banner_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 6rem;
  min-height: 140px;
  background-size: cover;
}
.ict_banner h3{
  color: #fff;
  font-size: var(--txt-title3);
  font-weight: 600;
  text-align: left;
  line-height: 130%;
}
.banner_btn{
  padding: 12px 20px;
  background: #fff;
  border-radius: 100px;
  color: var(--main-color-2);
  font-size: var(--txt-body1);
  font-weight: 700;
  align-items: center;
  display: flex;
  gap: 5px;
}

/*----303 전기차 충전시설----*/
.adv_wrap{
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  align-items: start;
}
.adv_wrap .left_area{
  text-align: left;
}
.adv_wrap .left_area .sub_label{
  font-size: var(--txt-body1);
  color: var(--main-color-2);
  font-weight: 600;
}
.adv_wrap .left_area h2{
  font-size: var(--txt-display3);
  font-weight: 700;
  color: var(--cgray-900);
  line-height: 130%;
  margin-top: 0.5rem;
}
.adv_wrap .right_area{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.adv_wrap .right_area .adv_card{
  background: var(--cgray-50);
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 2rem;
}
.adv_wrap .right_area .adv_card .icon_wrap{
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.adv_wrap .right_area .adv_card .icon_wrap img{
  width: auto;
  height: 40px;
}
.adv_wrap .right_area .adv_card .card_body h3{
  font-size: var(--txt-heading1);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.adv_wrap .right_area .adv_card .card_body p{
  font-size: var(--txt-body2);
  color: var(--cgray-700);
  line-height: 1.6;
}

/*-----401 정보통신공사-----*/
.ict_grid{
  display: grid;
  background: var(--cgray-200);
  border: 1px solid var(--cgray-200); 
  gap: 1px; 
}
.ict_grid.col_3{
  grid-template-columns: repeat(3, 1fr);
}
.ict_grid.col_4{
  grid-template-columns: repeat(4, 1fr);
}
.ict_grid .ict_card{
  padding: 2rem;
  background: #fff;
}

.ict_grid .ict_card h4{
  font-size: var(--txt-heading1);
  font-weight: 600;
  color: var(--cgray-900);
  margin: 1rem 0 1rem;
}
.ict_grid .ict_card span{
  color: var(--main-color-2);
  font-size: 40px;
}
.perform_tag_wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.perform_tag{
  padding: 8px 16px;
  background: var(--cgray-50);
  border: 1px solid var(--cgray-200);
  font-size: var(--txt-body1);
  font-weight: 500;
}

/*------501 판매&렌탈------*/
.product_list{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.product_list .product_item{
  display: grid;
  grid-template-columns: 450px 1fr;
  border: 1px solid var(--cgray-200);
  align-items: stretch;
}
.product_list .product_item .prod_img{
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--cgray-200);
}
.product_list .product_item .prod_img img{
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.product_list .product_item .prod_info{
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.product_list .product_item .prod_info .prod_header{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--cgray-900);
  padding-bottom: 1rem;
}
.product_list .product_item .prod_info .prod_header .prod_name h3{
  font-size: var(--txt-title3);
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
  padding-left: 1rem;
}
.product_list .product_item .prod_info .prod_header .prod_name h3::before{
  position: absolute;
  content: '';;
  width: 6px;
  height: 6px;
  background-color: var(--main-color-2);
  left: 0;
  top: 10px;
}
.product_list .product_item .prod_info .prod_header .brand_logo{
  height: 24px;
}
.product_list .product_item .prod_info .spec_table{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--cgray-200);
  border: 1px solid var(--cgray-200);
}
.product_list .product_item .prod_info .spec_table .spec_row{
  background: #fff;
  display: grid;
  grid-template-columns: 150px 1fr;
  font-size: var(--txt-body2);
}
.product_list .product_item .prod_info .spec_table .spec_row:nth-child(odd):last-child {
  grid-column: 1 / span 2;
}

.product_list .product_item .prod_info .spec_table .spec_row:last-child{
  border-bottom: none;
}
.product_list .product_item .prod_info .spec_table .spec_row.full{
  grid-template-columns: 1fr;
}
.product_list .product_item .prod_info .spec_table .spec_row .label{
  background: var(--cgray-100);
  padding: 12px 16px;
  color: var(--cgray-600);
  font-weight: 500;
  text-align: center;
  align-content: center;
}
.product_list .product_item .prod_info .spec_table .spec_row .value{
  padding: 12px 16px;
  color: var(--cgray-800);
  align-content: center;
}
.product_list .product_item .prod_info .prod_caption{
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
}.product_list .product_item .prod_info .prod_caption p{
  color: var(--cgray-500);
  font-size: 15px;
}

.rental_inquiry_btn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--main-color-2); 
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  margin: 0 auto;
  text-decoration: none;
  width: fit-content;
}
.rental_inquiry_btn:hover{
  background-color: var(--cgray-900);
  transform: scale(1.03);
}
.rental_inquiry_btn .text{
  font-size: 1.125rem;
  font-weight: 700;
}

/* 소모품  */
.product_list .product_item.supply {
    grid-template-columns: 1fr;
}

.product_item.consumables .consumable_list {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--cgray-200);
}

.consumable_list .list_header {
    display: grid;
    grid-template-columns: 160px 1.2fr 100px 1fr;
    background: var(--cgray-100);
    border-bottom: 1px solid var(--cgray-200);
    font-size: 14px;
    font-weight: 600;
    color: var(--cgray-600);
    text-align: center;
}
.consumable_list .list_header > div {
    padding: 10px 5px;
}

.consumable_list .list_item {
    display: grid;
    grid-template-columns: 160px 1.2fr 100px 1fr;
    align-items: center;
    border-bottom: 1px solid var(--cgray-100);
    transition: background 0.2s;
}



.consumable_list .list_item:last-child { border-bottom: none; }
.consumable_list .list_item:hover { background: #fcfcfc; }

.consumable_list .list_item > div {
    padding: 12px 10px;
    text-align: center;
    font-size: var(--txt-body2);
    color: var(--cgray-800);
}

.consumable_list .c_img img {
    height: auto;
    width: 150px;
    object-fit: cover;
}
.product_list .product_item.supply.col_4 .c_img img{
  width: 200px;
  height: 150px;
}
.product_item.supply.col_4 .consumable_list .list_header,
.product_item.supply.col_4 .consumable_list .list_item{
  grid-template-columns: 210px 1.2fr;
}


.consumable_list .c_name {
    font-weight: 500;
}
.consumable_list .c_logo img {
    height: 18px; 
    width: auto;
    object-fit: contain;
}
.consumable_list .c_price {
    display: block;
    font-weight: 600;
}


/*----채용문의--------*/
.process_wrap{
  display: flex;
  width: fit-content;
  justify-content: center;
  justify-self: center;
}
.process_wrap .process_item{
  width: 200px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--main-color);
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-left: -1rem;
  border-radius: 50%;
}
.process_wrap .process_item:last-child{
  margin-left: 8rem;
  background: var(--main-color);
  color: #fff;
  outline: 12px solid rgba(57, 191, 239, 0.3);
}

.process_wrap .process_item .icon{
  height: 48px;
  width: auto;
}
.process_wrap .process_item .icon img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.process_wrap .process_item h5{
  font-size: var(--txt-body1);
  font-weight: 600;
}

.process_wrap .process_item:nth-child(3){
  position:relative;
}
.process_wrap .process_item:nth-child(3)::after{
  position: absolute;
  content:'';
  width: 40px;
  height: 1px;
  background: var(--main-color);
  right: -40px;
}
.process_wrap .process_item:nth-child(3)::before{
  position: absolute;
  content:'';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--main-color);
  right: -40px;
}

.info_wrap{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(460px, 1fr));
  gap: 1.5rem;
}
.info_wrap .info_box{
  padding: 2rem;
  border: 1px solid var(--cgray-200);
  flex: 1;
}
.info_wrap .info_box .sub_tit{
  margin-top: 0;
}
.info_wrap .info_box ul li{
  border-bottom: 1px dashed var(--cgray-200);
  padding: 0px 0 12px 12px;
  margin: 12px 0 12px 0;
}

.recruit_footer {
background: linear-gradient(180deg,rgba(23, 140, 240, 0.7) 0%, rgba(23, 140, 240, 0.7) 100% ),
  url(../images/sub/recruit_banner_bg.png);
  
  background-repeat: no-repeat;
  background-position: center center;
  color: #fff;
  padding: 3rem 0;
  text-align: center;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  margin-bottom: -4rem;
}
.recruit_footer .container{
  max-width: var(--web-width);
  justify-self: center;
}
.recruit_footer h2 { font-size: var(--txt-title1); margin-bottom: 16px; }
.recruit_footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--txt-heading2);
    margin-bottom: 2rem;
}

.contact_wrap {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.contact_item { display: flex; align-items: center; gap: 10px; font-size: var(--txt-body1); }
.contact_item .material-icons-outlined { color: #fff; font-size: 32px;}
.contact_item a { color: #fff; text-decoration: none; font-weight: 600; }
.contact_item span{
  font-size: var(--txt-title2);
  font-weight: 700;
}


/*---견적서 요청---*/
.sign_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6); 
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.sign_overlay.active {
    display: flex;
}

html.modal-open, body.modal-open {
    overflow: hidden;
    height: 100%;
}

.sign_overlay .sign_overlay_inner {
    position: relative;
}

.sign_overlay .pwd_box {
    background: #fff;
    padding: 25px; 
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
    position: relative;
}

.sign_overlay .pwd_box h4 {
    font-size: var(--txt-heading1);
    margin: 0 0 10px 0;
    font-weight: 600;
    color: #333;
}

.sign_overlay .pwd_box p {
    font-size: var(--txt-body2);
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    word-break: keep-all;
}

.sign_overlay .pwd_box .txt_box {
    width: 100%;
    height: 48px; 
    border: 1px solid #ddd;
    border-radius: 8px; 
    padding: 0 15px;
    margin-bottom: 15px;
    box-sizing: border-box;
    font-size: 15px;
    transition: border-color 0.2s;
}

.sign_overlay .pwd_box .txt_box:focus {
    border-color: var(--main-color);
    outline: none;
}

.sign_overlay .pwd_box .btn_confirm_m {
    width: 100%;
    height: 50px;
    background: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 8px; 
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.sign_overlay .pwd_box .btn_confirm_m:hover {
    opacity: 0.9;
}

.sign_overlay .sign_close {
    position: absolute;
    top: 15px; 
    right: 15px;
    width: 30px;
    height: 30px;
    background: none; 
    border: none;
    color: #999;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    display: block;
    line-height: 1;
    z-index: 10;
}

.sign_overlay .sign_close:hover {
    color: #333;
}

/*---견적요청 - 설비 팝업---*/
#search_pop {
    width: 1000px;
    /* height: 917px; */
    padding: 25px 20px 0;
    background: #fff;
    border: 1px solid #ddd;
    margin: 0 auto;
    overflow-y: auto;
    position: fixed;
    top: 0;
    margin-top: 2%;
    left: 0;
    right: 0;
    z-index: 99999999999999;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.3); 
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.3);
}
#search_pop .tit {
    overflow: hidden;
    font-size: 1.375rem;
    font-weight: 600;
    text-align: center;
}
#search_pop .tit span {
    float: right;
    cursor: pointer;
    font-size: 1.125rem;
}
#search_pop .t_search {
    display: flex;
}
#search_pop .t_search_wrap {
    width: 100%;
    background: #f1f1f1;
    padding: 20px;
    margin: 1rem 0;
}
#search_pop .t_search_wrap .top_wrap {
    display: flex;
    gap: 0.5rem;
}
#search_pop .t_search_wrap .top_wrap .view_sel {
    width: 25%;
}
#search_pop .t_search_wrap .top_wrap .view_sel select {
    width: 100%;
}
#search_pop .t_search_wrap .search_wrap {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
#search_pop .t_search_wrap .search_wrap .search_group {
    width: 100%;
}
#search_pop .t_search_wrap .search_wrap .search_group input#schText {
    width: calc(100% - 40px);
}
#search_pop .t_search_wrap .t_search input.sell_form {
    padding: 0px 15px;
    width: calc(100% - 29px);
    height: 40px;
    border: 1px solid #ccc;
    border-right: none;
    color: #999;
    box-sizing: border-box;
}
#search_pop .t_search span.img {
    width: auto;
    height: 40px;
    border: 1px solid #ccc;
    border-left: none;
    box-sizing: border-box;
    float: right;
    text-align: center;
    padding-top: 8px;
    background: #fff;
    padding-right: 10px;
}
#search_pop .t_search_wrap p {
    margin-bottom: 8px;
    color: #555;
    font-size: 0.925rem;
}
#search_pop .btn_search {
    float: left;
    width: 34px;
    height: 34px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    display: inline-block;
    cursor: pointer;
    padding: 4px 0 0 7px;
    box-sizing: border-box;
    margin-top: 17px;
}
#search_pop .btn_search:hover {
    background-color: #000;
}
#search_pop .product_list {
  gap: 20px;
  max-height: 670px;
    overflow-y: scroll;
    border: 1px solid var(--cgray-300);
}
#search_pop .product_list .product {
}
#search_pop .product_list .product .txt h6 {
    font-size: 0.825rem;
    margin-bottom: 0.125rem;
    word-break: break-all;
}
#search_pop .product_list .product .txt h7 {
    max-height: 18px;
    font-size: 0.825rem;
}
#search_pop .product_list .product .txt h7 span {
    font-size: 0.825rem;
}
#search_pop .product_list .product .txt h8 {
    max-height: 18px;
    font-size: 0.825rem;
}
#search_pop .product_list .product .txt h8 span {
    font-size: 0.825rem;
}
#search_pop .product_list .product .img img {
    max-width: 70%;
    max-height: 70%;
}
#search_pop .product_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 30px 0;
}
#search_pop .product_btn .btn_normal_b{
    background: #757575;
    color: #fff;
    border: none;
}
#search_pop .product_btn input.btn {height: 38px; font-size: 1rem;}
.product_list_check{
    padding: 0.5rem;
}
#good_list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

/* 각 행을 한 줄에 2개씩 배치 (33.33%) */
#good_list tr {
    display: flex;
    align-items: center;
    width: 33.33%;
    box-sizing: border-box;
    border-bottom: 1px solid var(--cgray-200);
    padding: 10px;
}

#good_list td {
    display: block;
    padding: 0;
    border: none;
}

#good_list td:first-child {
    width: 40px;
    flex-shrink: 0;
}

#good_list td:last-child {
    flex-grow: 1;
    font-size: 1.075rem;
    color: #333;
    padding-left: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product_list .new_product tr td .input_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product_list .new_product tr td .input_wrap input[type="checkbox"]{
    display: none;
}
.product_list .new_product tr td .input_wrap input[type="checkbox"] + label{
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
}

.equipment_100{
    width: 100%;
}

.table_research input[type="radio"] {
    visibility: visible;
    position: relative;
}
.table_research textarea {
    width: 100%;
    min-height: 10rem;
}

/* 답변 작성 컨테이너 */
.reply_container {
    border: 1px solid var(--cgray-200);
    background: var(--cgray-50);
    padding: 2rem;
    /* border-radius: 8px; */
    margin-top: 40px;
}

.reply_container .reply_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #333;
    margin-bottom: 20px;
}

.reply_container .reply_header h4 {
    font-size: var(--txt-heading2);
    font-weight: 700;
    color: #333;
}

.reply_container textarea{
    width: 100%;
    min-height: 100px;
}

.reply_container .reply_content_text {
    font-size:var(--txt-body2);
    line-height: 1.8;
    color: #444;
    min-height: 100px;
    padding: 10px 0;
}


/*----------------------------------------1920--------------------------------*/

@media screen and (max-width:1920px) {
  #search_pop .product_list{
    max-height: 580px;
  }
  
}


/*----------------------------------------1400--------------------------------*/

@media screen and (max-width:1400px) {
  .sub_container .wrapper .max, .no_visual .sub_container .wrapper .max, .no_visual .sub_container .wrapper .max {
    padding: 2rem 20px 4rem;
    min-height: auto;
    }
  .grey_bg .inner {
    width: 100%;
    padding: 0 20px;
  }
}