@charset "UTF-8";
body {
  overflow-x: hidden;
}

/* ------------------- 공통 -------------------- */
.sec_tit h2 {
  font-size: clamp(36px, 2.60vw, 50px);
  font-weight: 700;
  color: #222;
  line-height: 1.3;
}
.sec_tit h2 span {
  font-size: clamp(65px, 5.21vw, 100px);
  color: var(--color-point);
  margin-right: 15px;
}
.sec_tit p {
  font-size: clamp(20px, 1.25vw, 24px);
  color: #444;
  line-height: 1.5;
}

.more_btn {
  width: clamp(180px, 12.34vw, 237px);
  border: 1px solid #222;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 500;
  border-radius: 200px;
  padding: clamp(15px, 1.04vw, 20px) 0;
  transition: 0.5s;
}
.more_btn::after {
  content: "";
  width: 17px;
  height: 17px;
  background-image: url(../img/lawyer_arrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  margin-left: 20px;
  transition: 0.5s;
}
.more_btn:hover {
  background: transparent;
  box-shadow: inset 237px 0 0 0 var(--color-point);
  border: 1px solid transparent;
  color: #fff;
}
.more_btn:hover::after {
  filter: invert(1);
}

.m_more_btn {
  display: none;
}

/* ------------------- 섹션1 -------------------- */
#sec1 {
  height: 100vh;
  position: relative;
}
#sec1 .main_visual_swiper {
  height: 100%;
  position: relative;
}
.main_visual_swiper .swiper-container {
  height: 100%;
  overflow: hidden;
}
.main_visual_swiper .swiper-wrapper {
  height: 100%;
}
.main_visual_swiper .swiper-slide {
  position: relative;
}
.main_visual_swiper .swiper-slide .slide_img {
	overflow: hidden;
  height: 100%;
}
.main_visual_swiper .swiper-slide .slide_img img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  transition: transform 5s;
}
.main_visual_swiper .swiper-slide .slide_img:after {
	content:"";
	display:block; 
	position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.main_visual_swiper .swiper-slide-active .slide_img img {
  transform: scale(1);
}
#sec1 .slide_txt {
  z-index : 1; 
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#sec1 .slide_txt .tit {
	position: relative;
	height: clamp(115px, 8.85vw, 170px);
}
#sec1 .slide_txt .tit h2 {
  font-size: clamp(47px, 3.65vw, 70px);
  color: #fff;
  font-weight: 700;
  position: absolute;
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
  transition: 0.5s;
}
#sec1 .slide_txt .progress {
	position: relative;
	margin: clamp(35px, 2.60vw, 50px) 0 clamp(30px, 2.08vw, 40px);
	width: 100%;
	background: none;
	display: block;
	height: 2px;
	overflow: visible;
}
#sec1 .slide_txt .progress .progress_bar {
	width: 100%;
	height: 2px;
	background-color: rgba(255, 255, 255, 0.2);
	position: absolute;
	top: 50%;
	left: 0;
	z-index: -1;
}
#sec1 .slide_txt .progress .fill_bar {
	width: 0%;
	height: 2px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 99;
}
#sec1 .slide_txt .txt {
	position: relative;
	width: calc(100% - clamp(100px, 6.77vw, 130px));
	height: clamp(30px, 2.08vw, 40px);
}
#sec1 .slide_txt .txt p {
  font-size: clamp(20px, 1.25vw, 24px);
  color: #fff;
  font-weight: 200;
  line-height: 1.5;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
#sec1 .swiper-control .swiper-navigation {
	margin-right: clamp(20px, 2.08vw, 40px);
}
#sec1 .swiper-control .swiper-button-next, #sec1 .swiper-control .swiper-button-prev {
	position: unset;
	width: clamp(30px, 2.08vw, 40px);
	height: clamp(30px, 2.08vw, 40px);
	background-color: #fff;
	border-radius: 50%;
	margin-top: 0;
}
#sec1 .swiper-control .swiper-button-prev {
	margin-right: 10px;
}
#sec1 .swiper-control .swiper-button-next::after, #sec1 .swiper-control .swiper-button-prev::after {
	content: "";
	width: clamp(12px, 0.83vw, 16px);
	height: clamp(10px, 0.73vw, 14px);
	background-image: url(../img/new_arrow.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: block;
}
#sec1 .swiper-control .swiper-button-prev::after {
	transform: rotate(180deg);
}
#sec1 .slide_txt .tit h2.active, #sec1 .slide_txt .txt p.active {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
	transition-duration: 0.65s
}
#sec1 .slide_txt .txt p.active {
	transition-delay: 0.2s;
}

#sec1 .swiper_area {
  position: absolute;
  bottom: clamp(50px, 2.6vw, 50px);
  left: 50%;
  max-width: 1640px;
  width: 96%;
  transform: translateX(-50%);
  z-index: 10;
  display: none;
}
#sec1 .swiper_area .swiper-container {
  max-width: 1600px;
  width: 98%;
  margin: 0 auto;
  overflow: hidden;
}
#sec1 .swiper_area .swiper-slide a {
  /* background-color: #fff; */
  background-color: rgba(255,255,255,0.76);
  position: relative;
  padding: clamp(15px, 1.04vw, 20px) clamp(20px, 1.56vw, 30px);
  border-radius: 10px;
  min-height:146px; 
  overflow: hidden;
}
#sec1 .swiper_area .swiper-slide a::after {
  content: "";
  width: 55%;
  height: 100%;
  background-color: var(--color-point);
	opacity:0.4;
  display: block;
  position: absolute;
  right: -1px;
  top: 0;
  z-index: 0;
  clip-path: polygon(50% 0%, 100% 0, 100% 100%, 0% 100%);
}
#sec1 .swiper_area .swiper-slide a .txt_wrapper {
  position: relative;
  z-index: 10;
}
#sec1 .swiper_area .swiper-slide a .txt_wrapper dl dt {
  font-size: clamp(13px, 0.78vw, 15px);
}
#sec1 .swiper_area .swiper-slide a .txt_wrapper dl dt span {
  font-size: clamp(20px, 1.15vw, 22px);
}
#sec1 .swiper_area .swiper-slide a .txt_wrapper dl dd {
  font-size: clamp(12px, 0.73vw, 14px);
  color: #444;
  line-height: 1.5;
}
#sec1 .swiper_area .swiper-slide a .txt_wrapper dl dd li {
  max-width: 80%; 
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#sec1 .swiper_area .swiper-slide a .img_wrapper {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}
#sec1 .swiper_area .swiper-slide a .img_wrapper img {
  height: 100%;
}
#sec1 .swiper_area .swiper-button-prev {
  width: clamp(40px, 2.08vw, 40px);
  height: clamp(40px, 2.08vw, 40px);
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
#sec1 .swiper_area .swiper-button-prev::after {
  content: "";
  width: 6px;
  height: 12px;
  background-image: url(../img/right_arrow_w.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  transform: rotate(180deg);
}
#sec1 .swiper_area .swiper-button-next {
  width: clamp(40px, 2.08vw, 40px);
  height: clamp(40px, 2.08vw, 40px);
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
#sec1 .swiper_area .swiper-button-next::after {
  content: "";
  width: 6px;
  height: 12px;
  background-image: url(../img/right_arrow_w.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
#sec1 .swiper_area .active {
  opacity: 1;
  visibility: visible;
}

/* ------------------- 섹션2 -------------------- */
#sec2 {
  background-image: url(../img/sec2_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#sec2 .sec2_cont ul {
	height: clamp(380px, 24.48vw, 470px);
}
#sec2 .sec2_cont li {
	width: calc((100% - clamp(60px, 5.21vw, 100px)) / 5);
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
}
#sec2 .sec2_cont li::after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	transition: .4s;
}
#sec2 .sec2_cont li a {
	position: relative;
	padding: clamp(25px, 2.08vw, 40px);
	z-index: 10;
	height: 100%;
}
#sec2 .sec2_cont li a .item_wrapper {
	flex-direction: column;
	transform: translateY(clamp(42px, 3.13vw, 60px));
	height: 100%;
	transition: .4s;
}
#sec2 .sec2_cont li a h3 {
	font-size: clamp(20px, 1.46vw, 28px);
	color: #fff;
	font-weight: 700;
	transition: .4s;
}
#sec2 .sec2_cont li a p {
	font-size: clamp(12px, 0.83vw, 16px);
	color: #fff;
	word-break: break-all;
	line-height: 1.5;
	transition: .4s;
}
#sec2 .sec2_cont li a span {
	width: clamp(26px, 2.08vw, 40px);
	height: clamp(26px, 2.08vw, 40px);
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.2);
	margin-top: clamp(12px, 1.04vw, 20px);
	position: relative;
	opacity: 0;
	visibility: hidden;
	transition: .4s;
}
#sec2 .sec2_cont li a span::after {
	content: "";
	width: clamp(6px, 0.52vw, 10px);
	height: clamp(6px, 0.52vw, 10px);
	background-image: url(../img/sitemap_arrow_w.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#sec2 .sec2_cont li:hover::after {
	background-color: rgba(65, 60, 127, 0.88);
}
#sec2 .sec2_cont li:hover a .item_wrapper {
	transform: translateY(0);
}
#sec2 .sec2_cont li:hover a h3 {
	font-size: clamp(22px, 1.67vw, 32px);
}
#sec2 .sec2_cont li:hover a p {
	font-weight: 500;
}
#sec2 .sec2_cont li:hover a span {
	opacity: 1;
	visibility: visible;
}
#sec2 .sec2_cont .item1 {
	background-image: url(../img/sec2_img1.jpg);
	border-bottom-left-radius: 80px;
}
#sec2 .sec2_cont .item2 {
	background-image: url(../img/sec2_img2.jpg);
	transition-delay: 0.1s;
}
#sec2 .sec2_cont .item3 {
	background-image: url(../img/sec2_img3.jpg);
	transition-delay: 0.2s;
}
#sec2 .sec2_cont .item4 {
	background-image: url(../img/sec2_img4.jpg);
	transition-delay: 0.3s;
}
#sec2 .sec2_cont .item5 {
	background-image: url(../img/sec2_img5.jpg);
	border-top-right-radius: 80px;
	transition-delay: 0.4s;
}

/* ------------------- 섹션3 -------------------- */
#sec3 .sec3_cont {
	position: relative;
	background-image: url(../img/sec3_cont_bg2.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
#sec3 .sec3_cont::after {
	content: "";
	width: 100%;
	height: clamp(300px, 23.44vw, 450px);
	background-image: url(../img/sec3_cont_bg1.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
#sec3 .sec3_cont .left {
	width: clamp(320px, 25.00vw, 480px);
	position: relative;
	z-index: 10;
}
#sec3 .sec3_cont .left .m_left_txt {
	display: none;
}
#sec3 .sec3_cont .left_lawyer_swiper {
	height: 100%;
}
#sec3 .sec3_cont .left_lawyer_swiper .swiper-container {
	height: 100%;
}
#sec3 .sec3_cont .left_lawyer_swiper .swiper-slide a {
	position: relative;
	width: 100%;
	display: block;
	height: 100%;
}
#sec3 .sec3_cont .left_lawyer_swiper .swiper-slide a .slide_img {
	height: 100%;
}
#sec3 .sec3_cont .left_lawyer_swiper .swiper-slide a .slide_img img {
	height: 100%;
	object-fit: cover;
}
#sec3 .sec3_cont .left_lawyer_swiper .swiper-slide a .slide_txt {
	width: clamp(250px, 19.79vw, 380px);
	padding: clamp(25px, 2.34vw, 45px) clamp(30px, 3.13vw, 60px);
	background-color: rgba(65, 60, 127, 0.8);
	position: absolute;
	right: calc(clamp(50px, 5.21vw, 100px) * -1);
	bottom: 0;
}
#sec3 .sec3_cont .left_lawyer_swiper .swiper-slide a .slide_txt dl h3 {
	font-size: clamp(16px, 1.04vw, 20px);
	color: #fff;
	font-weight: 700;
}
#sec3 .sec3_cont .left_lawyer_swiper .swiper-slide a .slide_txt dl h3 span {
	font-size: clamp(22px, 1.56vw, 30px);
	margin-right: 4px;
}
#sec3 .sec3_cont .left_lawyer_swiper .swiper-slide a .slide_txt dl dt {
	font-size: clamp(14px, 0.94vw, 18px);
	color: #fff;
	font-weight: 500;
	line-height: 1.5;
}
#sec3 .sec3_cont .left_lawyer_swiper .swiper-slide a .slide_txt dl dt li {
	display: -webkit-box;
	word-break: break-all;
	overflow: hidden;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
#sec3 .sec3_cont .left_lawyer_swiper .swiper-slide a .slide_txt dl dd {
	font-size: clamp(13px, 0.83vw, 16px);
	color: #fff;
	display: -webkit-box;
	word-break: break-all;
	overflow: hidden;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
#sec3 .sec3_cont .right {
	/*width: calc(100% - clamp(415px, 37.50vw, 720px));*/
	width: calc(100% - clamp(375px, 37.50vw, 720px));
	position: relative;
	z-index: 10;
}
#sec3 .sec3_cont .right .right_txt, #sec3 .sec3_cont .left .m_left_txt {
	padding-bottom: clamp(65px, 5.47vw, 105px);
}
#sec3 .sec3_cont .right .right_txt h3, #sec3 .sec3_cont .left .m_left_txt h3 {
	font-size: clamp(22px, 1.88vw, 36px);
	font-weight: 700;
	color: #fff;
	line-height: 1.5;
}
#sec3 .sec3_cont .right .right_txt h3::after, #sec3 .sec3_cont .left .m_left_txt h3::after {
	content: "";
	width: 30px;
	height: 1px;
	background-color: #fff;
	display: block;
	margin: clamp(20px, 1.56vw, 30px) 0;
}
#sec3 .sec3_cont .right .right_txt p, #sec3 .sec3_cont .left .m_left_txt p {
	font-size: clamp(14px, 1.04vw, 20px);
	color: #fff;
	line-height: 1.5;
}
#sec3 .sec3_cont .right .right_txt a, #sec3 .sec3_cont .left .m_left_txt a {
	width: clamp(120px, 8.33vw, 160px);
	height: clamp(45px, 3.13vw, 60px);
	border: 1px solid #666;
	font-size: clamp(16px, 1.04vw, 20px);
	color: #fff;
	font-weight: 700;
	margin-top: clamp(25px, 2.08vw, 40px);
	transition: .4s;
}
#sec3 .sec3_cont .right .right_txt a::after, #sec3 .sec3_cont .left .m_left_txt a::after {
	content: "";
	width: 10px;
	height: 10px;
	background-image: url(../img/sitemap_arrow_w.svg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: block;
	margin-left: clamp(10px, 0.52vw, 10px);
}
#sec3 .sec3_cont .right .right_txt a:hover, #sec3 .sec3_cont .left .m_left_txt a:hover {
	background-color: #666;
}
#sec3 .sec3_cont .right .right_lawyer_swiper {
	position: relative;
}
#sec3 .sec3_cont .right .right_lawyer_swiper .swiper-container {
	/*width: calc(100% - clamp(120px, 8.33vw, 160px));*/
	width: calc(100% - clamp(50px, 8.33vw, 160px));
	overflow: hidden;
	margin: 0 auto;
}
#sec3 .sec3_cont .right .right_lawyer_swiper .swiper-slide {
	cursor: pointer;
}
#sec3 .sec3_cont .right .right_lawyer_swiper .swiper-slide .slide_img {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background-color: #fff;
	overflow: hidden;
}
#sec3 .sec3_cont .right .right_lawyer_swiper .swiper-slide .slide_img img {
	transform: scale(1.1) translateY(10px);
}
#sec3 .sec3_cont .right .right_lawyer_swiper .swiper-slide .slide_txt p {
	font-size: clamp(13px, 0.94vw, 18px);
	color: #000;
}
#sec3 .sec3_cont .right .right_lawyer_swiper .swiper-slide-active .slide_img {
	background-color: var(--color-point);
} 
#sec3 .sec3_cont .right .right_lawyer_swiper .swiper-navigation {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
#sec3 .sec3_cont .right .right_lawyer_swiper .swiper-navigation div {
	width: 10px;
	height: 18px;
	background-image: url(../img/right_arrow_9.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	margin-top: 0;
	top: 0;
	position: relative;
}
#sec3 .sec3_cont .right .right_lawyer_swiper .swiper-navigation div::after {
	display: none;
}
#sec3 .sec3_cont .right .right_lawyer_swiper .swiper-navigation .swiper-button-prev {
	left: 0;
	transform: rotate(180deg);
}
#sec3 .sec3_cont .right .right_lawyer_swiper .swiper-navigation .swiper-button-next {
	right: 0;
}

#sec3 .right_lawyer_swiper .slick-slide {
  margin-right: 20px;
}
#sec3 .right_lawyer_swiper .slick-list {
  margin-right: -20px; 
}
#sec3 .right_lawyer_swiper .slick-current .slide_img  {
	background-color: var(--color-point) !important;
	transition:.3s;
}


/* ------------------- 섹션4 -------------------- */
#sec4 .sec4_cont .left {
	width: clamp(460px, 32.29vw, 620px);
	overflow: hidden;
	padding-right: clamp(34px, 3.13vw, 60px);
	border-right: 1px solid #D9D9D9;
}
#sec4 .sec4_cont .left .news_swiper .swiper-slide a .slide_img {
	height: clamp(300px, 21.88vw, 420px);
	border: 1px solid #ddd;
}
#sec4 .sec4_cont .left .news_swiper .swiper-slide a .slide_img img {
	height: 100%;
	object-fit: cover;
}
#sec4 .sec4_cont .left .news_swiper .swiper-slide a .slide_txt span {
	font-size: clamp(13px, 0.83vw, 16px);
	font-weight: 500;
	color: var(--color-point);
	border: 1px solid var(--color-point);
	padding: 6px clamp(7px, 0.63vw, 12px);
	transition: .4s;
}
#sec4 .sec4_cont .left .news_swiper .swiper-slide a .slide_txt h3 {
	font-size: clamp(24px, 1.56vw, 30px);
	font-weight: 700;
	display: -webkit-box;
	overflow: hidden;
	word-break: break-all;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
#sec4 .sec4_cont .left .news_swiper .swiper-slide:hover a .slide_txt span {
	background-color: var(--color-point);
	color: #fff;
}
#sec4 .sec4_cont .right {
	padding-left: clamp(34px, 3.13vw, 60px);
	width: calc(100% - clamp(460px, 32.29vw, 620px));
}
#sec4 .sec4_cont .right ul li:not(:last-child) {
	margin-bottom: clamp(20px, 1.56vw, 30px);
}
#sec4 .sec4_cont .right .txt_wrapper {
	width: calc(100% - clamp(210px, 14.06vw, 270px));
}
#sec4 .sec4_cont .right .txt_wrapper dl span {
	font-size: clamp(13px, 0.83vw, 16px);
	font-weight: 500;
	color: var(--color-point);
	border: 1px solid var(--color-point);
	padding: 6px clamp(7px, 0.63vw, 12px);
	transition: .4s;
}
#sec4 .sec4_cont .right .txt_wrapper dl dt {
	font-size: clamp(19px, 1.15vw, 22px);
	font-weight: 700;
	display: -webkit-box;
	overflow: hidden;
	word-break: break-all;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
#sec4 .sec4_cont .right .txt_wrapper dl dd {
	font-size: clamp(15px, 0.94vw, 18px);
	display: -webkit-box;
	overflow: hidden;
	word-break: break-all;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-height: 1.5;
}
#sec4 .sec4_cont .right .img_wrapper {
	width: clamp(175px, 12.50vw, 240px);
	height: clamp(120px, 8.33vw, 160px);
}
#sec4 .sec4_cont .right .img_wrapper img {
	height: 100%;
	object-fit: cover;
}
#sec4 .sec4_cont .right ul li:hover .txt_wrapper dl span {
	background-color: var(--color-point);
	color: #fff;
}

/* ------------------- 섹션5 -------------------- */
#sec5 {
	background-image: url(../img/sec5_bg.jpg);
	backgroun-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}
#sec5 .sec_tit h2, #sec5 .sec_tit p {
	color: #fff;
}
#sec5 .sec5_cont .youtube_swiper .swiper-slide {
	transform: scale(0.9);
}
#sec5 .sec5_cont .youtube_swiper .swiper-slide a .slide_img {
	position: relative;
}
#sec5 .sec5_cont .youtube_swiper .swiper-slide a .slide_img::after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
#sec5 .sec5_cont .youtube_swiper .swiper-slide a .slide_img img {
	height: 100%;
	object-fit: cover;
}
#sec5 .sec5_cont .youtube_swiper .swiper-slide a .slide_txt {
	display: none;
}
#sec5 .sec5_cont .youtube_swiper .swiper-slide a .slide_txt p {
	font-size: clamp(17px, 1.04vw, 20px);
	color: #ddd;
}
#sec5 .sec5_cont .youtube_swiper .swiper-slide a .slide_txt p span {
	color: var(--color-point);
	font-weight: 700;
	margin-right: 7px;
}
#sec5 .sec5_cont .youtube_swiper .swiper-slide a .slide_txt b {
	font-size: clamp(19px, 1.25vw, 24px);
	font-weight: 700;
	color: #fff;
}
#sec5 .sec5_cont .youtube_swiper .swiper-slide-active {
	transform: scale(1);
}
#sec5 .sec5_cont .youtube_swiper .swiper-slide-active a .slide_img::after {
	display: none;
}
#sec5 .sec5_cont .youtube_swiper .swiper-slide-active a .slide_txt {
	display: block;
}

/* ------------------- 섹션6 -------------------- */
#sec6 .sec_tit {
	width: clamp(360px, 26.04vw, 500px);
}
#sec6 .sec6_cont {
	width: calc(100% - clamp(385px, 34.11vw, 655px));
	background-color: #fff;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
	transition-delay: 0.2s;
}
#sec6 .sec6_cont .cont_img {
	width: clamp(160px, 11.46vw, 220px);
	position: relative;
	height: 100%;
}
#sec6 .sec6_cont .cont_img::after {
	content: "";
	width: clamp(110px, 7.29vw, 140px);
	height: clamp(24px, 1.56vw, 30px);
	background-image: url(../img/header_logo_w.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: block;
	position: absolute;
	top: clamp(30px, 1.56vw, 30px);
	left: clamp(30px, 1.56vw, 30px);
}
#sec6 .sec6_cont .cont_img img {
	height: 100%;
	object-fit: cover;
}
#sec6 .sec6_cont #mainInhForm {
	padding: clamp(25px, 2.08vw, 40px) clamp(30px, 2.60vw, 50px);
	width: calc(100% - clamp(160px, 11.46vw, 220px));
}
#sec6 .sec6_cont #mainInhForm .step, #sec6 .sec6_cont #mainInhForm .result {
	display: none;
}
#sec6 .sec6_cont #mainInhForm .on {
	display: block;
}
#sec6 .sec6_cont #mainInhForm .step .step_num, #sec6 .sec6_cont #mainInhForm .result .result_num {
	font-size: clamp(19px, 1.15vw, 22px);
	font-weight: 700;
	color: var(--color-point);
}
#sec6 .sec6_cont #mainInhForm .step .step_num span, #sec6 .sec6_cont #mainInhForm .result .result_num span {
	font-size: clamp(15px, 0.94vw, 18px);
	font-weight: 700;
	color: #fff;
	width: clamp(24px, 1.67vw, 32px);
	height: clamp(24px, 1.67vw, 32px);
	background-color: var(--color-point);
	border-radius: 50%;
	margin-right: 10px;
}
#sec6 .sec6_cont #mainInhForm .step .step_wrapper, #sec6 .sec6_cont #mainInhForm .result .result_wrapper {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	height: clamp(424px, 29.06vw, 558px);
}
#sec6 .sec6_cont #mainInhForm .result .result_wrapper {
	height: auto;
}
#sec6 .sec6_cont #mainInhForm .step .step_tit, #sec6 .sec6_cont #mainInhForm .result .result_tit {
	font-size: clamp(20px, 1.46vw, 28px);
	font-weight: 700;
	line-height: 1.5;
}
#sec6 .sec6_cont #mainInhForm .step .input_wrapper:not(:last-child), #sec6 .sec6_cont #mainInhForm .step .radio_area {
	margin-bottom: clamp(20px, 1.56vw, 30px);
}
#sec6 .sec6_cont #mainInhForm .step .input_wrapper label, #sec6 .sec6_cont #mainInhForm .step .radio_area p {
	font-size: clamp(16px, 1.04vw, 20px);
	font-weight: 600;
	line-height: 1.3;
}
#sec6 .sec6_cont #mainInhForm .step .input_wrapper div {
	width: clamp(190px, 16.67vw, 320px);
	border: 1px solid #ddd;
	position: relative;
	background-color: rgba(65, 60, 127, 0.1);
}
#sec6 .sec6_cont #mainInhForm .step .input_wrapper .active {
	border-color: var(--color-point);
}
#sec6 .sec6_cont #mainInhForm .step .input_wrapper input {
	width: 100%;
	border: none;
	font-size: clamp(16px, 1.04vw, 20px);
	padding: clamp(10px, 0.78vw, 15px) clamp(25px, 2.34vw, 45px) clamp(10px, 0.78vw, 15px) clamp(10px, 1.04vw, 20px);
}
#sec6 .sec6_cont #mainInhForm .step .input_wrapper .active input {
	background-color: rgba(65, 60, 127, 0.1);
}
#sec6 .sec6_cont #mainInhForm .step .input_wrapper div span {
	position: absolute;
	top: 50%;
	right: clamp(10px, 1.04vw, 20px);
	transform: translateY(-50%);
	font-size: clamp(16px, 1.04vw, 20px);
	color: #666;
}
#sec6 .sec6_cont #mainInhForm .step .radio_wrapper input[type="radio"] + span {
	width: clamp(18px, 1.25vw, 24px);
	height: clamp(18px, 1.25vw, 24px);
	border-radius: 50%;
	border: 1px solid #ddd;
	background-image: url(../img/check_icon_g.svg);
	background-repeat: no-repeat;
	background-size: clamp(10px, 0.68vw, 13px) clamp(8.5px, 0.60vw, 11.5px);
	background-position: center;
	margin-right: clamp(6px, 0.52vw, 10px);
}
#sec6 .sec6_cont #mainInhForm .step .radio_wrapper input[type="radio"]:checked + span {
	background-color: var(--color-point);
	background-image: url(../img/check_icon.svg);
	border-color: var(--color-point);
}
#sec6 .sec6_cont #mainInhForm .step .radio_wrapper label {
	font-size: clamp(16px, 1.04vw, 20px);
	color: #444;
}
#sec6 .sec6_cont #mainInhForm .step .radio_wrapper label:not(:last-child) {
	margin-right: clamp(20px, 2.08vw, 40px);
}
#sec6 .sec6_cont #mainInhForm .button_wrapper button, #sec6 .sec6_cont #mainInhForm .button_wrapper a {
	font-size: clamp(14px, 1.04vw, 20px);
	font-weight: 700;
	width: calc((100% - clamp(20px, 1.56vw, 30px)) / 2);
	line-height: clamp(40px, 2.76vw, 53px);
}
#sec6 .sec6_cont #mainInhForm .button_wrapper .first_next_btn {
	width: 100%;
	background-color: var(--color-point);
	color: #fff;
}
#sec6 .sec6_cont #mainInhForm .button_wrapper .prev_btn {
	border: 1px solid #aaa;
	color: #aaa;
}
#sec6 .sec6_cont #mainInhForm .button_wrapper .next_btn {
	background-color: var(--color-point);
	color: #fff;
}
#sec6 .sec6_cont #mainInhForm .result .result_wrapper .result_val {
	cursor: default;
}
#sec6 .sec6_cont #mainInhForm .result .result_wrapper .result_val:not(:last-child) {
	margin-bottom: clamp(20px, 1.56vw, 30px);
}
#sec6 .sec6_cont #mainInhForm .result .result_wrapper .first span {
	font-size: clamp(16px, 1.04vw, 20px);
}
#sec6 .sec6_cont #mainInhForm .result .result_wrapper .first span:first-child {
	font-weight: 600;
}
#sec6 .sec6_cont #mainInhForm .result .result_wrapper .first span:last-child {
	font-weight: 500;
	color: #444;
}
#sec6 .sec6_cont #mainInhForm .result .result_wrapper .first span:last-child::after {
	content: "";
	width: clamp(9px, 0.63vw, 12px);
	height: clamp(5px, 0.42vw, 8px);
	background-image: url(../img/down_arrow_c.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: block;
	margin-left: clamp(5px, 0.52vw, 10px);
	transition: 0.4s;
}
#sec6 .sec6_cont #mainInhForm .result .result_wrapper .first .n_aft::after {
	display: none !important;
}
#sec6 .sec6_cont #mainInhForm .result .result_wrapper .second {
	width: calc(100% - clamp(16px, 1.15vw, 22px));
	margin-top: clamp(10px, 0.52vw, 10px);
	display: none;
}
#sec6 .sec6_cont #mainInhForm .result .result_wrapper .second span {
	font-size: clamp(14px, 0.94vw, 18px);
	color: #666;
}
#sec6 .sec6_cont #mainInhForm .result .result_wrapper .open .first span:last-child::after {
	background-image: url(../img/down_arrow_9.svg);
	transform: rotate(180deg);
}
#sec6 .sec6_cont #mainInhForm .result .result_txt p {
	font-size: clamp(13px, 0.94vw, 18px);
	color: #444;
	line-height: 1.5;
}
#sec6 .sec6_cont #mainInhForm .result .result_txt p span {
	color: var(--color-point);
	font-weight: 700;
}
#sec6 .mm_br {
	display: none;
}

/* ------------------- 섹션7 -------------------- */
#sec7 {
	background-image: url(../img/sec7_bg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
#sec7 .container {
	position: relative;
}
#sec7 .sec7_cont .brochure_lawyer {
	width: clamp(310px, 21.88vw, 420px);
	position: absolute;
	bottom: 0;
	right: calc(clamp(200px, 15.63vw, 300px) * -1);
	transition-delay: 0.3s;
}
#sec7 .sec7_cont .brochure_lawyer img {
	height: 100%;
	object-fit: cover;
}
#sec7 .sec7_cont .brochure_lawyer .txt {
	position: absolute;
	bottom: clamp(25px, 2.08vw, 40px);
	left: clamp(80px, 4.17vw, 80px);
}
#sec7 .sec7_cont .brochure_lawyer .txt h3 {
	font-size: clamp(17px, 1.04vw, 20px);
	font-weight: 700;
	color: #fff;
}
#sec7 .sec7_cont .brochure_lawyer .txt h3 span {
	font-size: clamp(24px, 1.56vw, 30px);
	margin-right: 5px;
}
#sec7 .sec7_cont .brochure_lawyer .txt p {
	font-size: clamp(15px, 0.94vw, 18px);
	color: #fff;
	margin-top: 10px;
}
#sec7 .sec7_cont .brochure_area {
	background-color: var(--color-point);
	padding: clamp(45px, 3.65vw, 70px);
}
#sec7 .sec7_cont .brochure_area p {
	font-size: clamp(24px, 1.56vw, 30px);
	color: #fff;
	line-height: 1.5;
	transition-delay: 0.1s;
}
#sec7 .sec7_cont .brochure_area p span {
	font-weight: 700;
	position: relative;
}
#sec7 .sec7_cont .brochure_area p span::after {
	content: "";
	width: 0;
	height: clamp(8px, 0.63vw, 12px);
	background-color: rgba(255, 255, 255, 0.2);
	display: block;
	position: absolute;
	left: 0;
	bottom: -3px;
	animation: w_100 0.4s;
	animation-fill-mode: forwards;
	animation-delay: 1s;
}
#sec7 .sec7_cont .brochure_area .brochure_link {
	width: clamp(200px, 12.50vw, 240px);
	height: clamp(45px, 3.13vw, 60px);
	font-size: clamp(15px, 0.94vw, 18px);
	color: var(--color-point);
	font-weight: 700;
	padding: 0 clamp(20px, 1.56vw, 30px);
	background-color: #fff;
	transition-delay: 0.2s;
}
#sec7 .sec7_cont .brochure_area .brochure_link::after {
	content: "";
	width: 12px;
	height: 14px;
	background-image: url(../img/download_icon_p.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: block;
}

@keyframes w_100 {
	0% {
		width: 0;
	}
	
	100% {
		width: 100%;
	}
}

/* ------------------- 섹션 request -------------------- */
#sec_request {
  background-image: url(../img/sec9_bg.jpg);
  background-size: cover;
  padding: 130px 140px;
  transition: all 0.8s ease;
}
#sec_request .left .sec_tit h2 {
  color: #fff;
}
#sec_request .left .sec_tit p {
  color: #fff;
  font-weight: 300;
  line-height: 1.5;
}
#sec_request .left .step > div {
  flex-direction: column;
  position: relative;
}
#sec_request .left .step > div:not(:last-child) {
  margin-right: clamp(90px, 8.33vw, 160px);
}
#sec_request .left .step > div > span {
  width: clamp(80px, 5.21vw, 100px);
  height: clamp(80px, 5.21vw, 100px);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 rgba(54, 106, 181, 0.2);
}
#sec_request .left .step > div > span::before {
  content: "";
  width: clamp(60px, 4.17vw, 80px);
  height: 1px;
  background-color: rgba(217, 217, 217, 0.2);
  position: absolute;
  top: 50%;
  right: calc(clamp(163px, 11.46vw, 220px) / 2 * -1);
  transform: translateY(-50%);
  display: block;
}
#sec_request .left .step > div p {
  font-size: clamp(16px, 0.94vw, 18px);
  color: rgba(255, 255, 255, 0.5);
}
#sec_request .left .step .step_txt {
  font-weight: 600;
  color: #fff;
  font-size: clamp(14px, 0.73vw, 14px);
  background-color: var(--color-point);
  padding: clamp(8px, 0.68vw, 13px) clamp(17px, 1.3vw, 25px);
  border-radius: 10px;
  line-height: 1.5;
  width: clamp(280px, 14.58vw, 280px);
  position: absolute;
  top: -70%;
  left: 20%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
#sec_request .left .step .step_txt span {
  position: relative;
  display: block;
}
#sec_request .left .step .step_txt span::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid var(--color-point);
  position: absolute;
  bottom: -28px;
  left: 0;
}
#sec_request .left .step .step1 > span::after {
  content: "";
  width: 27px;
  height: 26px;
  background-image: url(../img/step_icon1.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
#sec_request .left .step .step2 > span::after {
  content: "";
  width: 23px;
  height: 30px;
  background-image: url(../img/step_icon2.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
#sec_request .left .step .step3 > span::after {
  content: "";
  width: 30px;
  height: 25px;
  background-image: url(../img/step_icon3.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
#sec_request .left .step .step3 > span::before {
  display: none;
}
#sec_request .left .step .active > span {
  background-color: rgba(65, 60, 127, 0.5);
  animation: pulse 2s infinite;
}
#sec_request .left .step .active p {
  color: #fff;
}
#sec_request .left .step .active .step_txt {
  opacity: 1;
  visibility: visible;
}
#sec_request .left .step .step1.active > span::after {
  background-image: url(../img/step_icon1_w.svg);
}
#sec_request .left .step .step2.active > span::after {
  background-image: url(../img/step_icon2_w.svg);
}
#sec_request .left .step .step3.active > span::after {
  background-image: url(../img/step_icon3_w.svg);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(65, 60, 127, 0.5);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(65, 60, 127, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(65, 60, 127, 0);
  }
}
#sec_request .right {
  width: 37.3%;
}
#sec_request .right #index_form {
  width: 100%;
}
#sec_request .right #index_form .input_wrapper {
  position: relative;
  margin-bottom: 20px;
}
#sec_request .right #index_form .input_wrapper:nth-child(3)::before {
  width: clamp(12px, 0.83vw, 16px);
  height: clamp(12px, 0.83vw, 16px);
  background-image: url(../img/form_icon1.svg);
}
#sec_request .right #index_form .input_wrapper:nth-child(4)::before {
  width: clamp(14px, 0.94vw, 18px);
  height: clamp(14px, 0.94vw, 18px);
  background-image: url(../img/form_icon2.svg);
}
#sec_request .right #index_form .input_wrapper::before {
  content: "";
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  left: clamp(15px, 1.56vw, 30px);
  top: 50%;
  transform: translateY(-50%);
}
#sec_request .right #index_form .input_wrapper input {
  width: 100%;
  font-size: clamp(16px, 1.04vw, 20px);
  padding: clamp(16px, 1.25vw, 24px) 0 clamp(16px, 1.25vw, 24px) clamp(40px, 3.13vw, 60px);
  border: none;
}
#sec_request .right #index_form .input_wrapper input::placeholder {
  color: #999;
}
#sec_request .right #index_form .select_wrapper {
  width: 100%;
}
#sec_request .right #index_form .select_wrapper select {
  width: 100%;
  font-size: clamp(16px, 1.04vw, 20px);
  background: #fff url(../img/form_arrow.svg) right 20px center no-repeat;
  padding: clamp(16px, 1.25vw, 24px) clamp(20px, 1.56vw, 30px);
  border: none;
  color: #000;
  appearance: none;
  position: relative;
}
#sec_request .right #index_form .agree_wrapper {
  margin-top: 30px;
  margin-bottom: 40px;
}
#sec_request .right #index_form .agree_wrapper input[type=checkbox] + span {
  width: 24px;
  height: 24px;
  background: none;
  margin-right: 10px;
  background-color: #fff;
}
#sec_request .right #index_form .agree_wrapper input[type=checkbox]:checked + span {
  background-image: url(../img/check_icon_b.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 18px 15px;
}
#sec_request .right #index_form .agree_wrapper label {
  color: #fff;
  font-weight: 300;
  margin-right: 10px;
  font-size: clamp(18px, 0.94vw, 18px);
}
#sec_request .right #index_form .agree_wrapper button {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(16px, 0.83vw, 16px);
  background-color: transparent;
  border: none;
}
#sec_request .right #index_form .quickCounsel_btn {
  width: 100%;
  background-color: var(--color-point);
  color: #fff;
  font-size: clamp(20px, 1.04vw, 20px);
  font-weight: 700;
  padding: 23px 0;
}

/* ------------------- 섹션 location -------------------- */
#sec_location .left {
  width: 40.6%;
  height: 1100px;
}
#sec_location .left .m_location_map {
  display: none;
}
#sec_location .left .location_list li {
  width: calc((100% - 110px) / 6);
  font-size: clamp(12px, 0.94vw, 18px);
  color: #666;
  padding-bottom: 11px;
  border-bottom: 1px solid #cccccc;
  margin-right: 22px;
  margin-top: 15px;
  cursor: pointer;
}
#sec_location .left .location_list li:nth-child(6n), #sec_location .left .location_list li:last-child {
  margin-right: 0;
}
#sec_location .left .location_list .on {
  color: var(--color-point);
  border-color: var(--color-point);
  font-weight: 700;
}
#sec_location .left .location_detail {
  border-top: 1px solid #222;
}
#sec_location .left .location_detail li {
  border-bottom: 1px solid #ccc;
  display: none;
}
#sec_location .left .location_detail li a {
  padding: 30px 20px;
}
#sec_location .left .location_detail li a > span {
  font-size: clamp(12px, 0.73vw, 14px);
  color: #fff;
  font-weight: 600;
  background-color: #222;
  height: fit-content;
  padding: 5px 20px;
  border-radius: 200px;
}
#sec_location .left .location_detail li a .location_info {
  margin-left: 20px;
}
#sec_location .left .location_detail li a .tit {
  font-size: clamp(18px, 1.04vw, 20px);
  font-weight: 700;
  margin-bottom: 7px;
}
#sec_location .left .location_detail li a .txt {
  font-size: clamp(14px, 0.83vw, 16px);
  color: #444;
  margin-bottom: 15px;
}
#sec_location .left .location_detail li a .num {
  font-size: clamp(15px, 0.89vw, 17px);
}
#sec_location .left .location_detail li a .num span {
  padding-right: 10px;
}
#sec_location .left .location_detail li a .num span:first-child {
  position: relative;
}
#sec_location .left .location_detail li a .num span:first-child::after {
  content: "";
  width: 1px;
  height: 14px;
  background-color: #d9d9d9;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: block;
}
#sec_location .left .location_detail li a .num span:last-child {
  padding-right: 0;
  padding-left: 10px;
}
#sec_location .left .location_detail li.on {
  display: block;
}
#sec_location .right {
  position: relative;
  width: clamp(650px, 41.98vw, 806px);
  height: clamp(1000px, 72.08vw, 1384px);
}
#sec_location .right #map .mover {
  cursor: pointer;
  transition: fill 0.3s;
}
#sec_location .right #map .mover.on {
  fill: var(--color-point);
}
#sec_location .right #map .mover.hover {
  fill: var(--color-point);
}
#sec_location .right .svg_txt {
  position: absolute;
  font-size: clamp(16px, 0.94vw, 18px);
  color: #999;
  cursor: pointer;
}
#sec_location .right .svg_txt span {
  position: relative;
  top: -15px;
  left: -50%;
  cursor: pointer;
  color: #999;
  transition: all 0.2s;
}
#sec_location .right .gg_north {
  left: 29%;
  top: 16%;
}
#sec_location .right .icbc {
  left: 16.7%;
  top: 22%;
}
#sec_location .right .seoul {
  left: 26%;
  top: 23%;
}
#sec_location .right .gg_south {
  left: 33%;
  top: 29%;
}
#sec_location .right .gw {
  left: 62%;
  top: 18%;
  cursor: default;
  pointer-events: none;
}
#sec_location .right .cb {
  left: 48%;
  top: 37%;
}
#sec_location .right .djcn {
  left: 23%;
  top: 45%;
}
#sec_location .right .dggb {
  left: 74%;
  top: 48%;
}
#sec_location .right .jb {
  left: 31%;
  top: 60%;
}
#sec_location .right .bu {
  left: 68%;
  top: 68%;
}
#sec_location .right .gjjn {
  left: 24%;
  top: 75%;
}
#sec_location .right .jj {
  left: 12%;
  top: 96.5%;
}
#sec_location .right .svg_txt.on span {
  color: #fff;
  font-weight: 600;
}
#sec_location .right .svg_txt.hover span {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 1500px) {
	#sec1 .swiper_area .swiper-slide a {
	  min-height:126px; 
	}
  #sec_request .left .step .step_txt {
    display: none;
  }
}
@media (max-width: 1400px) {
  #sec7 .sec7_cont .brochure_lawyer {
	  position: relative;
	  right: auto;
	  margin: 0 auto;
	  width: 350px;
  }
  #sec_location .right .seoul {
    left: 28%;
  }
  #sec_location .right .icbc {
    left: 20%;
  }
}

@media (max-width: 1300px) {
	#sec2 .sec2_cont ul {
		height: auto;
		flex-wrap: wrap;
		justify-content: center;
	}
	#sec2 .sec2_cont li {
		width: calc((100% - clamp(40px, 4.62vw, 60px)) / 3);
		height: 320px;
		margin-bottom: clamp(20px, 2.31vw, 30px);
	}
	#sec2 .sec2_cont li:not(:nth-child(3n)):not(:last-child) {
		margin-right: clamp(20px, 2.31vw, 30px);
	}
	#sec2 .sec2_cont li a .item_wrapper {
		transform: translateY(clamp(49px, 3.77vw, 49px))
	}
	#sec2 .sec2_cont li a h3 {
		font-size: clamp(22px, 1.92vw, 25px);
	}
	#sec2 .sec2_cont li a p {
		font-size: clamp(13px, 1.15vw, 15px);
	}
	#sec2 .sec2_cont li a span {
		width: clamp(27px, 2.69vw, 35px);
		height: clamp(27px, 2.69vw, 35px);
	}
	#sec2 .sec2_cont li a span::after {
		width: clamp(7px, 0.77vw, 10px);
		height: clamp(7px, 0.77vw, 10px);
	}
	#sec2 .sec2_cont li:hover a h3 {
		font-size: clamp(24px, 2.15vw, 28px);
	}
	#sec2 .sec2_cont .item1 {
		border-bottom-left-radius: 0;
		border-top-left-radius: 80px;
	}
	#sec2 .sec2_cont .item5 {
		border-top-right-radius: 0;
		border-bottom-right-radius: 80px;
	}
}

@media (max-width: 1150px) {
  #sec_location .right .seoul {
    left: 27%;
    top: 23.5%;
  }
  #sec_location .right .icbc {
    left: 19%;
  }
}

@media (max-width: 1100px) {
  #sec4 .sec4_cont {
		flex-direction: column;
		align-items: center;
	}
	#sec4 .sec4_cont .left {
		width: 90%;
		padding-right: 0;
		border-right: none;
		padding-bottom: 40px;
		border-bottom: 1px solid #ddd;
	}
	#sec4 .sec4_cont .left .news_swiper .swiper-slide a .slide_img {
		height: clamp(340px, 45.45vw, 500px);
	}
	#sec4 .sec4_cont .left .news_swiper .swiper-slide a .slide_txt span {
		font-size: clamp(13px, 1.36vw, 15px);
		padding: 6px 10px;
	}
	#sec4 .sec4_cont .left .news_swiper .swiper-slide a .slide_txt h3 {
		font-size: clamp(22px, 2.45vw, 27px);
	}
	#sec4 .sec4_cont .right {
		padding-top: 40px;
		padding-left: 0;
		width: 90%;
	}
	#sec4 .sec4_cont .right .txt_wrapper {
		width: calc(100% - clamp(200px, 21.82vw, 240px));
	}
	#sec4 .sec4_cont .right .txt_wrapper dl span {
		font-size: clamp(13px, 1.36vw, 15px);
		padding: 6px 10px;
	}
	#sec4 .sec4_cont .right .txt_wrapper dl dt {
		font-size: clamp(17px, 1.91vw, 21px);
	}
	#sec4 .sec4_cont .right .txt_wrapper dl dd {
		font-size: clamp(15px, 1.55vw, 17px);
	}
	#sec4 .sec4_cont .right .img_wrapper {
		width: clamp(180px, 20.00vw, 220px);
		height: clamp(120px, 13.64vw, 150px);
	}
  #sec_request {
    flex-direction: column;
    align-items: center;
  }
  #sec_request .left .sec_tit {
    padding-bottom: 0;
    text-align: center;
  }
  #sec_request .left .step {
    margin-top: clamp(70px, 9.09vw, 100px);
  }
  #sec_request .left .step > div > span {
    width: clamp(100px, 10.91vw, 120px);
    height: clamp(100px, 10.91vw, 120px);
  }
  #sec_request .left .step > div > span::before {
    right: -75px;
  }
  #sec_request .right {
    width: 90%;
    margin-top: clamp(60px, 7.27vw, 80px);
  }
  #sec_location .left {
    width: 100%;
    height: auto;
  }
  #sec_location .left .sec_tit {
    margin-bottom: clamp(60px, 5.45vw, 60px);
  }
  #sec_location .left .m_location_map {
    display: flex;
    width: clamp(560px, 63.64vw, 700px);
    height: auto;
    margin: 0 auto;
    position: relative;
  }
  #sec_location .left .m_location_map #m_map .m_mover {
    cursor: pointer;
    transition: fill 0.3s;
  }
  #sec_location .left .m_location_map #m_map .m_mover.on {
    fill: var(--color-point);
  }
  #sec_location .left .m_location_map #m_map .m_mover.hover {
    fill: var(--color-point);
  }
  #sec_location .left .m_location_map .m_svg_txt {
    position: absolute;
    font-size: clamp(16px, 1.82vw, 20px);
    color: #999;
    cursor: pointer;
  }
  #sec_location .left .m_location_map .m_svg_txt span {
    position: relative;
    top: -15px;
    left: -50%;
    color: #999;
    transform: all 0.2s;
  }
  #sec_location .left .m_location_map .gg_north {
    left: 29%;
    top: 16%;
  }
  #sec_location .left .m_location_map .icbc {
    left: 17%;
    top: 22%;
  }
  #sec_location .left .m_location_map .seoul {
    left: 25.5%;
    top: 23%;
  }
  #sec_location .left .m_location_map .gg_south {
    left: 33%;
    top: 29%;
  }
  #sec_location .left .m_location_map .gw {
    left: 62%;
    top: 18%;
    cursor: default;
    pointer-events: none;
  }
  #sec_location .left .m_location_map .cb {
    left: 48%;
    top: 37%;
  }
  #sec_location .left .m_location_map .djcn {
    left: 23%;
    top: 45%;
  }
  #sec_location .left .m_location_map .dggb {
    left: 74%;
    top: 48%;
  }
  #sec_location .left .m_location_map .jb {
    left: 31%;
    top: 60%;
  }
  #sec_location .left .m_location_map .bu {
    left: 68%;
    top: 68%;
  }
  #sec_location .left .m_location_map .gjjn {
    left: 24%;
    top: 75%;
  }
  #sec_location .left .m_location_map .jj {
    left: 12%;
    top: 96%;
  }
  #sec_location .left .m_location_map .m_svg_txt.on span {
    color: #fff;
    font-weight: 600;
  }
  #sec_location .left .m_location_map .m_svg_txt.hover span {
    color: #fff;
    font-weight: 600;
  }
  #sec_location .left .location_list li {
    margin-right: clamp(15px, 2.27vw, 25px);
    width: calc((100% - clamp(60px, 9.09vw, 100px)) / 5);
    font-size: clamp(20px, 2vw, 22px);
  }
  #sec_location .left .location_list li:nth-child(6n) {
    margin-right: clamp(15px, 2.27vw, 25px);
  }
  #sec_location .left .location_list li:nth-child(5n) {
    margin-right: 0;
  }
  #sec_location .left .location_detail li a {
    padding: clamp(25px, 3.64vw, 40px) clamp(20px, 2.73vw, 30px);
  }
  #sec_location .left .location_detail li a > span {
    font-size: clamp(18px, 1.82vw, 20px);
    padding: clamp(7px, 0.91vw, 10px) clamp(15px, 2.27vw, 25px);
  }
  #sec_location .left .location_detail li a .tit {
    font-size: clamp(24px, 2.36vw, 26px);
    margin-bottom: 15px;
  }
  #sec_location .left .location_detail li a .txt {
    font-size: clamp(18px, 1.82vw, 20px);
    margin-bottom: 15px;
  }
  #sec_location .left .location_detail li a .num {
    font-size: clamp(16px, 1.64vw, 18px);
  }
  #sec_location .left .more_btn {
    margin: 0 auto;
  }
  #sec_location .right {
    display: none;
  }
}

@media (max-width: 1000px) {
	#sec6 {
		flex-direction: column;
		align-items: center;
	}
	#sec6 .sec_tit {
		text-align: center;
		width: 100%;
		margin-bottom: 40px;
	}
	#sec6 .sec6_cont {
		width: 90%;
	}
}

@media (max-width: 900px) {
	#sec2 .sec2_cont li {
		width: 90%;
		height: clamp(280px, 35.56vw, 320px);
		margin-right: 0 !important;
	}
	#sec2 .sec2_cont li:not(:last-child) {
		margin-bottom: 30px;
	}
	#sec2 .sec2_cont li:last-child {
		margin-bottom: 0;
	}
	#sec2 .sec2_cont li a {
		padding: 40px;
	}
	#sec2 .sec2_cont li a .item_wrapper {
		transform: translateY(52px);
	}
	#sec2 .sec2_cont li a h3 {
		font-size: 30px;
	}
	#sec2 .sec2_cont li a p {
		font-size: 20px;
	}
	#sec2 .sec2_cont li a span {
		width: 40px;
		height: 40px;
	}
	#sec2 .sec2_cont li a span::after {
		width: 10px;
		height: 10px;
	}
	#sec2 .sec2_cont li:hover a h3 {
		font-size: 33px;
	}
}

@media (max-width: 750px) {
  .sec_tit h2 {
    font-size: clamp(25px, 7.07vw, 53px);
  }
  .sec_tit h2 span {
    font-size: clamp(55px, 13.33vw, 100px);
  }
  .sec_tit p {
    font-size: clamp(16px, 3.73vw, 28px);
  }
  .m_more_btn {
    display: flex;
    width: clamp(210px, 42.67vw, 320px);
    border: 2px solid #222;
    font-size: clamp(18px, 4vw, 30px);
    font-weight: 500;
    border-radius: 200px;
    transition: 0.5s;
    padding: clamp(17px, 3.33vw, 25px) 0;
  }
  .m_more_btn::after {
    content: "";
    width: clamp(12px, 2.4vw, 18px);
    height: clamp(12px, 2.4vw, 18px);
    background-image: url(../img/lawyer_arrow.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    margin-left: clamp(10px, 2.67vw, 20px);
    transition: 0.5s;
  }
  .m_more_btn:hover {
    background: transparent;
    box-shadow: inset 320px 0 0 0 var(--color-point);
    border: 2px solid transparent;
    color: #fff;
  }
  .m_more_btn:hover::after {
    filter: invert(1);
  }
  #sec1 .slide_txt {
	top: 45%;
  }
  #sec1 .slide_txt .tit {
	height: clamp(73px, 21.33vw, 160px);
  }
  #sec1 .slide_txt .tit h2 {
	font-size: clamp(27px, 8.00vw, 60px);
	line-height: 1.3;
  }
  #sec1 .slide_txt .progress {
	margin: clamp(25px, 6.67vw, 50px) 0; 
  }
  #sec1 .swiper-control {
	flex-direction: column;
	align-items: flex-start;
  }
  #sec1 .swiper-control .swiper-navigation {
	order: 2;
	margin-right: 0;
	margin-top: clamp(25px, 6.67vw, 50px);
  }
  #sec1 .swiper-control .swiper-button-next, #sec1 .swiper-control .swiper-button-prev {
	width: clamp(40px, 10.67vw, 80px);
	height: clamp(40px, 10.67vw, 80px);
  }
  #sec1 .swiper-control .swiper-button-prev {
	margin-right: clamp(10px, 2.67vw, 20px);
  }
  #sec1 .swiper-control .swiper-button-next::after, #sec1 .swiper-control .swiper-button-prev::after {
	width: clamp(15px, 4.00vw, 30px);
	height: clamp(12px, 3.20vw, 24px);
  }
  #sec1 .slide_txt .txt {
	order: 1;
	width: 100%;
	height: clamp(45px, 12.00vw, 90px);
  }
  #sec1 .slide_txt .txt p {
	font-size: clamp(15px, 4.00vw, 30px);
  }
  #sec1 .swiper_area {
    left: 5%;
    bottom: clamp(60px, 10.67vw, 100px);
    max-width: 100%;
    width: 100%;
    transform: none;
	display: block;
  }
  #sec1 .swiper_area .swiper-container {
    width: 100%;
  }
  #sec1 .swiper_area .swiper-slide a {
    padding: clamp(10px, 2.67vw, 20px) clamp(20px, 5.33vw, 40px);
		/*min-height:110px;*/
		min-height:clamp(110px, 26.67vw, 200px);
  }
  #sec1 .swiper_area .swiper-slide a .txt_wrapper dl dt {
    font-size: clamp(14px, 3.47vw, 26px);
  }
  #sec1 .swiper_area .swiper-slide a .txt_wrapper dl dt span {
    font-size: clamp(20px, 4.8vw, 28px);
  }
  #sec1 .swiper_area .swiper-slide a .txt_wrapper dl dd {
    font-size: clamp(12px, 3.2vw, 24px);
  }
  #sec1 .swiper_area .swiper-slide a .img_wrapper {
    height: clamp(115px, 28vw, 210px);
    top: auto;
    bottom: -18px;
    /* right: calc(clamp(20px, 5.33vw, 40px) * -1); */
  }
  #sec1 .swiper_area .swiper-slide a .img_wrapper img {
    height: 100%;
		width: auto;
		object-fit: contain;
  }
  #sec1 .swiper_area .swiper-button-next,
  #sec1 .swiper_area .swiper-button-prev {
    display: none;
  }
  
  #sec2 .sec2_cont li {
	  width: 100%;
	  height: clamp(225px, 60.00vw, 450px);
  }
  #sec2 .sec2_cont li:not(:last-child) {
	  margin-bottom: clamp(15px, 4.00vw, 30px);
  }
  #sec2 .sec2_cont li a {
	  padding: clamp(25px, 6.67vw, 50px);
  }
  #sec2 .sec2_cont li a .item_wrapper {
	  justify-content: center;
	  transform: translateY(clamp(30px, 8.00vw, 60px));
  }
  #sec2 .sec2_cont li a h3 {
	  font-size: clamp(22px, 5.07vw, 38px);
  }
  #sec2 .sec2_cont li a p {
	  font-size: clamp(14px, 4.00vw, 30px);
  }
  #sec2 .sec2_cont li:hover a h3 {
	  font-size: clamp(22px, 5.07vw, 38px);
  }
  #sec2 .sec2_cont li a span {
	  width: clamp(40px, 10.67vw, 80px);
	  height: clamp(40px, 10.67vw, 80px);
	  margin-top: clamp(20px, 5.33vw, 40px);
  }
  #sec2 .sec2_cont li a span::after {
	  width: clamp(12px, 3.20vw, 24px);
	  height: clamp(11px, 2.93vw, 22px);
  }
  
  
  #sec3 .sec3_cont::after {
	  height: clamp(575px, 153.33vw, 1150px);
  }
  #sec3 .sec3_cont .cont_wrapper {
	  flex-direction: column;
	  align-items: center;
  }
  #sec3 .sec3_cont .left {
	  width: 100%;
  }
  #sec3 .sec3_cont .left .m_left_txt {
	  display: block;
	  position: relative;
	  z-index: 10;
	  padding-bottom: clamp(30px, 8.00vw, 60px);
  }
  #sec3 .sec3_cont .left .m_left_txt h3 {
	  font-size: clamp(21px, 5.07vw, 38px);
  }
  #sec3 .sec3_cont .left .m_left_txt h3::after {
	  display: none;
  }
  #sec3 .sec3_cont .left .m_left_txt p {
	  font-size: clamp(16px, 4.00vw, 30px);
  }
  #sec3 .sec3_cont .left .m_left_txt a {
	  width: clamp(140px, 37.33vw, 280px);
	  height: clamp(53px, 16.00vw, 120px);
	  font-size: clamp(16px, 4.00vw, 30px);
	  margin-top: clamp(30px, 8.00vw, 60px);
  }
  #sec3 .sec3_cont .left .m_left_txt a::after {
	  width: clamp(8px, 2.13vw, 16px);
	  height: clamp(8px, 2.13vw, 16px);
	  margin-left: clamp(8px, 2.13vw, 16px);
  }
  #sec3 .sec3_cont .left_lawyer_swiper {
	  width: clamp(240px, 64.00vw, 480px);
	  height: clamp(293px, 78.00vw, 585px);
	  margin:0 auto;
  }
  #sec3 .sec3_cont .left_lawyer_swiper .swiper-slide a .slide_txt {
	  width: clamp(250px, 66.67vw, 500px);
	  right: auto;
	  left: clamp(27px, 8.27vw, 62px);
	  bottom: calc(clamp(70px, 18.67vw, 140px) * -1);
	  padding: clamp(25px, 6.67vw, 50px);
  }
  #sec3 .sec3_cont .left_lawyer_swiper .swiper-slide a .slide_txt dl h3 {
	  font-size: clamp(14px, 3.73vw, 28px);
  }
  #sec3 .sec3_cont .left_lawyer_swiper .swiper-slide a .slide_txt dl h3 span {
	  font-size: clamp(26px, 5.87vw, 44px);
	  margin-right: clamp(5px, 1.33vw, 10px);
  }
  #sec3 .sec3_cont .left_lawyer_swiper .swiper-slide a .slide_txt dl dt {
	  font-size: clamp(14px, 3.73vw, 28px);
  }
  #sec3 .sec3_cont .left_lawyer_swiper .swiper-slide a .slide_txt dl dd {
	  font-size: clamp(12px, 3.20vw, 24px);
  }
  #sec3 .sec3_cont .right {
	  width: 100%;
  }
  #sec3 .sec3_cont .right .right_txt {
	  display: none;
  }
  #sec3 .sec3_cont .right .right_lawyer_swiper .swiper-slide .slide_txt p {
	  font-size: clamp(13px, 3.47vw, 26px);
  }
  #sec3 .sec3_cont .right .right_lawyer_swiper .swiper-navigation div {
	  width: clamp(9px, 2.40vw, 18px);
	  height: clamp(16px, 4.27vw, 32px);
	  height: clamp(16px, 4.27vw, 32px);
  }
  
  #sec4 .sec4_cont .left {
	  width: 100%;
	  padding-bottom: clamp(30px, 8.00vw, 60px);
  }
  #sec4 .sec4_cont .left .news_swiper .swiper-slide a .slide_img {
	  height: clamp(211px, 64.00vw, 480px);
  }
  #sec4 .sec4_cont .left .news_swiper .swiper-slide a .slide_txt span {
	  font-size: clamp(13px, 3.47vw, 26px);
	  padding: clamp(4px, 0.93vw, 7px) clamp(7px, 1.87vw, 14px);
  }
  #sec4 .sec4_cont .left .news_swiper .swiper-slide a .slide_txt h3 {
	  font-size: clamp(20px, 4.80vw, 36px);
  }
  #sec4 .sec4_cont .right {
	  width: 100%;
	  padding-top: clamp(30px, 8.00vw, 60px);
  }
  #sec4 .sec4_cont .right ul li:not(:last-child) {
	  margin-bottom: clamp(30px, 8.00vw, 60px);
  }
  #sec4 .sec4_cont .right ul li a {
	  align-items: flex-end;
  }
  #sec4 .sec4_cont .right .txt_wrapper {
	  width: calc(100% - clamp(115px, 30.67vw, 230px));
  }
  #sec4 .sec4_cont .right .txt_wrapper dl span {
	  font-size: clamp(11px, 2.80vw, 21px);
	  padding: clamp(4px, 0.93vw, 7px) clamp(6px, 1.60vw, 12px);
  }
  #sec4 .sec4_cont .right .txt_wrapper dl dt {
	  font-size: clamp(16px, 4.00vw, 30px);
	  line-height: 1.3;
  }
  #sec4 .sec4_cont .right .txt_wrapper dl dd {
	  font-size: clamp(13px, 3.47vw, 26px);
  }
  #sec4 .sec4_cont .right .img_wrapper {
	  width: clamp(100px, 26.67vw, 200px);
	  height: clamp(70px, 18.67vw, 140px);
  }
  
  #sec5 .sec5_cont .youtube_swiper .swiper-slide a .slide_txt p {
	  font-size: clamp(14px, 3.47vw, 26px);
  }
  #sec5 .sec5_cont .youtube_swiper .swiper-slide a .slide_txt b {
	  font-size: clamp(18px, 4.53vw, 34px);
  }
  
  #sec6 .sec_tit {
	  padding-top: 0;
	  margin-bottom: 0;
  }
  #sec6 .sec6_cont {
	  flex-direction: column;
	  width: 100%;
  }
  #sec6 .sec6_cont .cont_img {
	  width: 100%;
	  height: clamp(60px, 16.00vw, 120px);
  }
  #sec6 .sec6_cont .cont_img::after {
	  width: clamp(128px, 34.00vw, 255px);
	  height: clamp(28px, 7.47vw, 56px);
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%, -50%);
  }
  #sec6 .sec6_cont #mainInhForm {
	  width: 100%;
	  padding: clamp(30px, 8.00vw, 60px) clamp(25px, 6.67vw, 50px) clamp(25px, 6.67vw, 50px);
  }
  #sec6 .sec6_cont #mainInhForm .step .step_num, #sec6 .sec6_cont #mainInhForm .result .result_num {
	  font-size: clamp(16px, 4.00vw, 30px);
  }
  #sec6 .sec6_cont #mainInhForm .step .step_num span, #sec6 .sec6_cont #mainInhForm .result .result_num span {
	  width: clamp(18px, 4.80vw, 36px);
	  height: clamp(18px, 4.80vw, 36px);
	  font-size: clamp(12px, 3.20vw, 24px);
	  margin-right: clamp(10px, 2.67vw, 20px);
  }
  #sec6 .sec6_cont #mainInhForm .step .step_tit, #sec6 .sec6_cont #mainInhForm .result .result_tit {
	  font-size: clamp(15px, 4.80vw, 36px);
  }
  #sec6 .sec6_cont #mainInhForm .step .step_wrapper {
	  height: clamp(350px, 120.00vw, 900px);
  }
  #sec6 .sec6_cont #mainInhForm .result .result_wrapper {
	  height: auto;
  }
  #sec6 .sec6_cont #mainInhForm .step .input_wrapper label, #sec6 .sec6_cont #mainInhForm .step .radio_area p {
	  font-size: clamp(14px, 4.00vw, 30px);
  }
  #sec6 .sec6_cont #mainInhForm .step .radio_area p {
	  padding-bottom: 0;
  }
  #sec6 .sec6_cont #mainInhForm .step .input_wrapper:not(:last-child) {
	  margin-bottom: clamp(15px, 4.00vw, 30px);
  }
  #sec6 .sec6_cont #mainInhForm .step .input_wrapper div {
	  width: clamp(140px, 42.67vw, 320px);
  }
  #sec6 .sec6_cont #mainInhForm .step2 .input_wrapper div {
	  width: clamp(110px, 34.67vw, 260px);
  }
  #sec6 .sec6_cont #mainInhForm .step .input_wrapper input {
	  font-size: clamp(14px, 4.00vw, 30px);
	  padding: clamp(12px, 4.27vw, 32px) clamp(33px, 8.67vw, 65px) clamp(12px, 4.27vw, 32px) clamp(15px, 4.00vw, 30px);
  }
  #sec6 .sec6_cont #mainInhForm .step .input_wrapper div span {
	  font-size: clamp(14px, 4.00vw, 30px);
	  right: clamp(15px, 4.00vw, 30px);
  }
  #sec6 .sec6_cont #mainInhForm .step .radio_area {
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  margin-bottom: clamp(30px, 8.00vw, 60px);
  }
  #sec6 .sec6_cont #mainInhForm .step .radio_wrapper input[type="radio"] + span {
	  width: clamp(20px, 5.33vw, 40px);
	  height: clamp(20px, 5.33vw, 40px);
	  background-size: clamp(10px, 2.67vw, 20px) clamp(9px, 2.40vw, 18px);
	  margin-right: clamp(7px, 1.87vw, 14px);
  }
  #sec6 .sec6_cont #mainInhForm .step .radio_wrapper label {
	  font-size: clamp(14px, 4.00vw, 30px);
  }
  #sec6 .sec6_cont #mainInhForm .step .radio_wrapper label:not(:last-child) {
	  margin-right: clamp(20px, 5.33vw, 40px);
  }
  #sec6 .sec6_cont #mainInhForm .result .result_wrapper .result_val:not(:last-child) {
	  margin-bottom: clamp(30px, 8.00vw, 60px);
  }
  #sec6 .sec6_cont #mainInhForm .result .result_wrapper .first span {
	  font-size: clamp(14px, 4.00vw, 30px);
  }
  #sec6 .sec6_cont #mainInhForm .result .result_wrapper .first span:last-child::after {
	  width: clamp(8px, 2.13vw, 16px);
	  height: clamp(5px, 1.33vw, 10px);
	  margin-left: clamp(7px, 1.87vw, 14px);
  }
  #sec6 .sec6_cont #mainInhForm .result .result_wrapper .second {
	  width: calc(100% - clamp(15px, 4.00vw, 30px));
	  margin-top: clamp(8px, 2.13vw, 16px);
  }
  #sec6 .sec6_cont #mainInhForm .result .result_wrapper .second span {
	  font-size: clamp(12px, 3.47vw, 26px);
  }
  #sec6 .sec6_cont #mainInhForm .result .result_txt p {
	  font-size: clamp(12px, 3.47vw, 26px);
	  word-break: break-all;
  }
  #sec6 .sec6_cont #mainInhForm .button_wrapper button, #sec6 .sec6_cont #mainInhForm .button_wrapper a {
	  width: calc((100% - clamp(10px, 2.67vw, 20px)) / 2)
  }
  #sec6 .sec6_cont #mainInhForm .button_wrapper button {
	  line-height: clamp(50px, 16.00vw, 120px);
	  font-size: clamp(14px, 4.00vw, 30px);
  }
  #sec6 .sec6_cont #mainInhForm .button_wrapper a {
		font-size: clamp(14px, 4.00vw, 30px);
	   line-height: 1.3;
	   height: clamp(50px, 16.00vw, 120px);
  }
  
  #sec7 .sec7_cont {
	  position: relative;
  }
  #sec7 .sec7_cont .brochure_lawyer {
	  width: clamp(240px, 64.00vw, 480px);
	  position: unset;
  }
  #sec7 .sec7_cont .brochure_lawyer .txt {
	  left: 0;
	  bottom: clamp(18px, 4.67vw, 35px);
	  width: 100%;
	  display: flex;
	  align-items: center;
	  flex-direction: column;
  }
  #sec7 .sec7_cont .brochure_lawyer .txt h3 {
	  font-size: clamp(14px, 3.73vw, 28px);
  }
  #sec7 .sec7_cont .brochure_lawyer .txt h3 span {
	  font-size: clamp(24px, 5.87vw, 44px);
	  margin-right: clamp(5px, 1.33vw, 10px);
  }
  #sec7 .sec7_cont .brochure_lawyer .txt p {
	  font-size: clamp(14px, 3.73vw, 28px);
	  margin-top: clamp(8px, 2.13vw, 16px);
  }
  #sec7 .sec7_cont .brochure_area {
	  flex-direction: column;
	  padding: clamp(25px, 6.67vw, 50px);
  }
  #sec7 .sec7_cont .brochure_area p {
	  text-align: center;
	  font-size: clamp(15px, 4.53vw, 34px);
  }
  #sec7 .sec7_cont .brochure_area p span::after {
	  height: clamp(8px, 1.60vw, 12px);
	  bottom: 0;
  }
  #sec7 .sec7_cont .brochure_area .brochure_link {
	  margin-top: clamp(30px, 8.00vw, 60px);
	  width: 100%;
	  height: clamp(60px, 16.00vw, 120px);
	  font-size: clamp(15px, 4.00vw, 30px);
	  justify-content: center;
	  padding: 0;
  }
  #sec7 .sec7_cont .brochure_area .brochure_link::after {
	  width: clamp(12px, 3.20vw, 24px);
	  height: clamp(14px, 3.73vw, 28px);
	  margin-left: clamp(10px, 2.67vw, 20px);
  }
  
  #sec_request {
    width: 100%;
    padding: clamp(100px, 18.67vw, 140px) clamp(17px, 5.33vw, 40px);
    align-items: flex-start;
    background-position: center;
  }
  #sec_request .left {
    width: 100%;
  }
  #sec_request .left .sec_tit {
    text-align: left;
  }
  #sec_request .left .step {
    width: 100%;
    margin-top: 0;
    justify-content: space-between;
  }
  #sec_request .left .step > div:not(:last-child) {
    margin-right: 0;
  }
  #sec_request .left .step > div > span {
    width: clamp(75px, 21.33vw, 160px);
    height: clamp(75px, 21.33vw, 160px);
  }
  #sec_request .left .step > div > span::before {
    width: clamp(25px, 5.33vw, 40px);
    right: -43%;
  }
  #sec_request .left .step > div p {
    font-size: clamp(12px, 3.2vw, 24px);
  }
  #sec_request .left .step .step1 > span::after {
    width: clamp(23px, 5.73vw, 43px);
    height: clamp(23px, 5.73vw, 43px);
  }
  #sec_request .left .step .step2 > span::after {
    width: clamp(20px, 4.93vw, 37px);
    height: clamp(28px, 6.4vw, 48px);
  }
  #sec_request .left .step .step3 > span::after {
    width: clamp(28px, 6.4vw, 48px);
    height: clamp(22px, 5.33vw, 40px);
    margin-left: 10px;
  }
  #sec_request .right {
    width: 100%;
    margin-top: 0;
  }
  #sec_request .right #index_form .input_wrapper {
    margin-bottom: clamp(15px, 4vw, 30px);
  }
  #sec_request .right #index_form .input_wrapper:nth-child(3)::before {
    width: clamp(18px, 3.6vw, 27px);
    height: clamp(18px, 3.6vw, 27px);
    left: clamp(20px, 8vw, 60px);
  }
  #sec_request .right #index_form .input_wrapper:nth-child(4)::before {
    width: clamp(18px, 3.6vw, 27px);
    height: clamp(18px, 3.6vw, 27px);
    left: clamp(20px, 8vw, 60px);
  }
  #sec_request .right #index_form .input_wrapper input {
    font-size: clamp(18px, 4vw, 30px);
    padding: clamp(20px, 5.6vw, 42px) 0 clamp(20px, 5.6vw, 42px) clamp(60px, 14.67vw, 110px);
  }
  #sec_request .right #index_form .select_wrapper select {
    font-size: clamp(18px, 4vw, 30px);
    padding: clamp(20px, 5.6vw, 42px) 0 clamp(20px, 5.6vw, 42px) clamp(20px, 8vw, 60px);
    background: #fff url(../img/form_arrow.svg) right clamp(20px, 8vw, 60px) center no-repeat;
    background-size: clamp(18px, 3.2vw, 24px) clamp(10px, 1.87vw, 14px);
  }
  #sec_request .right #index_form .agree_wrapper {
    margin: 0;
  }
  #sec_request .right #index_form .agree_wrapper input[type=checkbox] + span {
    width: clamp(22px, 4vw, 30px);
    height: clamp(22px, 4vw, 30px);
    margin-right: clamp(10px, 2.67vw, 20px);
  }
  #sec_request .right #index_form .agree_wrapper input[type=checkbox]:checked + span {
    background-size: clamp(18px, 3.2vw, 24px) clamp(15px, 2.8vw, 21px);
  }
  #sec_request .right #index_form .agree_wrapper label {
    font-size: clamp(16px, 3.73vw, 28px);
    margin-right: clamp(10px, 2.67vw, 20px);
  }
  #sec_request .right #index_form .agree_wrapper button {
    font-size: clamp(14px, 3.33vw, 25px);
  }
  #sec_request .right #index_form .quickCounsel_btn {
    font-size: clamp(20px, 4.53vw, 34px);
    padding: clamp(20px, 5.33vw, 40px) 0;
  }
  #sec_location .left .sec_tit {
    margin-bottom: 0;
  }
  #sec_location .left .m_location_map {
    width: 100%;
  }
  #sec_location .left .m_location_map .m_svg_txt {
    font-size: clamp(12px, 3.2vw, 24px);
  }
  #sec_location .left .m_location_map .icbc {
    left: 16.5%;
    top: 21%;
  }
  #sec_location .left .m_location_map .jj {
	top: 97.5%;
  }
  #sec_location .left .location_list li {
    width: calc((100% - clamp(60px, 20vw, 150px)) / 4);
    margin-right: clamp(20px, 6.53vw, 49px) !important;
    margin-top: clamp(20px, 5.33vw, 40px);
    font-size: clamp(15px, 4vw, 30px);
  }
  #sec_location .left .location_list li:nth-child(4n) {
    margin-right: 0 !important;
  }
  #sec_location .left .location_list li:nth-child(-n+4) {
    margin-top: 0;
  }
  #sec_location .left .location_detail li a {
    flex-direction: column;
    padding: clamp(25px, 6.67vw, 50px) 0;
  }
  #sec_location .left .location_detail li a > span {
    font-size: clamp(16px, 3.2vw, 24px);
    padding: clamp(7px, 1.87vw, 14px) clamp(15px, 4vw, 30px);
  }
  #sec_location .left .location_detail li a .location_info {
    margin-left: 0;
  }
  #sec_location .left .location_detail li a .tit {
    font-size: clamp(20px, 4.27vw, 32px);
    margin-bottom: clamp(10px, 2.67vw, 20px);
  }
  #sec_location .left .location_detail li a .txt {
    font-size: clamp(16px, 4vw, 30px);
    margin-bottom: clamp(10px, 2.67vw, 20px);
  }
  #sec_location .left .location_detail li a .num {
    font-size: clamp(16px, 4vw, 30px);
  }
  #sec_location .left .location_detail li a .num span {
    padding-right: clamp(10px, 2.67vw, 20px);
  }
  #sec_location .left .location_detail li a .num span:first-child::after {
    height: clamp(16px, 3.2vw, 24px);
  }
  #sec_location .left .location_detail li a .num span:last-child {
    padding-right: 0;
    padding-left: clamp(10px, 2.67vw, 20px);
  }
  #sec_location .left .more_btn {
    display: flex;
    width: clamp(210px, 42.67vw, 320px);
    border: 2px solid #222;
    font-size: clamp(18px, 4vw, 30px);
    font-weight: 500;
    border-radius: 200px;
    transition: 0.5s;
    padding: clamp(17px, 3.33vw, 25px) 0;
  }
  #sec_location .left .more_btn::after {
    content: "";
    width: clamp(12px, 2.4vw, 18px);
    height: clamp(12px, 2.4vw, 18px);
    background-image: url(../img/lawyer_arrow.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    margin-left: clamp(10px, 2.67vw, 20px);
    transition: 0.5s;
  }
  #sec_location .left .more_btn:hover {
    background: transparent;
    box-shadow: inset 320px 0 0 0 var(--color-point);
    border: 2px solid transparent;
    color: #fff;
  }
  #sec_location .left .more_btn:hover::after {
    filter: invert(1);
  }
}
@media (max-width: 500px) {
/*  
	.visual_swiper .swiper-slide .slide_txt {
    top: 29%;
  }
  .visual_swiper .swiper-slide .slide_txt .tit p br {
    display: block;
  }
  .visual_swiper .swiper-slide .slide_txt .tit p:last-child {
    padding-top: clamp(10px, 3vw, 15px);
  }
  .visual_swiper .pagination_wrapper {
    bottom: 35%;
  }
*/
  #sec3 .lawyer_swiper .swiper-slide::after {
    top: 35%;
    transform: translateY(-35%);
  }

  #sec3 .lawyer_swiper .swiper-slide a .img_wrapper {
    height: calc(100% - 20px);
  }
  #sec3 .lawyer_swiper .swiper-slide a .img_wrapper img {
    transform: scale(0.95) translateY(0);
  }
  #sec3 .lawyer_swiper .swiper-slide a .txt_wrapper {
    padding: clamp(15px, 6vw, 30px) clamp(40px, 16vw, 80px);
  }
  #sec_request .left .step > div > span::before {
    width: 25px;
    right: calc(clamp(27px, 9vw, 45px) * -1);
  }
  #sec_location .left .m_location_map .seoul {
    top: 24%;
  }
}
@media (max-width: 450px) {
  #sec6 .sec_tit h2 br {
    display: block;
  }
}
@media (max-width: 350px) {
  #sec6 .mm_br {
	display: block;
  }
  #sec_location .left .m_location_map .seoul {
    top: 24.5%;
  }
  #sec_location .left .m_location_map .gg_north {
    top: 17%;
  }
  #sec_location .left .m_location_map .gg_south {
    top: 30%;
  }
  #sec_location .left .m_location_map .cb {
    top: 38%;
  }
  #sec_location .left .m_location_map .bu {
    top: 69%;
  }
  #sec_location .left .m_location_map .gjjn {
    top: 76%;
  }
  #sec_location .left .m_location_map .jj {
    top: 97.5%;
  }
}