:root {
    --mainColor: #2C4EA2;
    --bg-color: #fff;
    --white: #fff;
    --light: 300;
    --regular: 400;
    --medium: 500;
    --semibold: 600;
    --bold: 700;
    --extrabold: 800;
    --black: 900;
}

body {
    font-family: 'Pretendard';
    font-size: 16px;
    word-wrap: break-word !important;
	word-break: keep-all !important;  
}
p, span, h1,h2, a {
    word-wrap: break-word !important;
    word-break: keep-all !important;  
}
/* .swiper-wrapper {
  display: flex;
  justify-content: flex-start; 
} */


.swiper-pagination { 
    position: absolute;
    top: unset !important;
    bottom: -20px !important;
    margin-bottom: 24px;
}
.swiper-pagination2 { 
    position: absolute;
    top: unset !important;
    bottom: -60px !important;
    margin-bottom: 44px;
}

.swiper-pagination-progressbar-fill {
  background-color: #000 !important; 
}

.header {
    width: 100%;
    /* height: 120px; */
    position:fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background-color: #ffffff;
    padding: 0;    
}

.header .header__wrap {
    display: flex;
    justify-content: space-between;
    gap:212px;
    align-items: center;
    height: 120px;
    /* margin: 0 50px; */
    padding: 0 50px;
    box-sizing: border-box;
    background-color: var(--bg-color);
}

.header .header__wrap nav {
    padding: 0;
    /* width: 1280px; */
    width: 856px;
    /* width: calc( 100% - 640px); */
}

.header .logo {
    /* padding-left: 100px; */
    width: 280px;
    height: 50px;
}

/** lang **/
.header__wrap .language1 {
    width: 280px;    
    /* position: absolute; */
    top: 42px;
    right:0px;
    /* right: 50px; */
    /* width: 113px; */
    height: 36px;
    line-height: 38px;
    display: flex;
    align-items: center;    
    justify-content: end;
}
.header__wrap .language1 .select {
    width: 113px;
    height: 36px;
    line-height: 36px;
    border: 1px solid #000;
    border-radius: 25px;
    letter-spacing: -0.2px;
    text-indent: 0px;
    font-size: 20px;
    font-weight: var(--bold);
    text-align: center;
    opacity: 1;
    color: #000;
    background: url(../img/s_img/language_arrow.png) no-repeat 50% center;
    cursor: pointer;
}
.header__wrap .language1 ul.select_con {
    position: absolute;
    top: 80px;
    width: 180px;
    height: 124px;
    border-radius: 12px;
    z-index: 2;
    background-color: #fff;
    color: #747878;
    box-shadow: 1px 1px 1px 1px rgb(0, 0, 0, 0.2);
    padding: 20px 0 25px;
}
.header__wrap .language1 ul.select_con li {
    height: 40px;
    line-height: 38px;
    font-size: 17px;
    font-weight: var(--medium);
    color: #747878;
    text-align: left;
    letter-spacing: -0.2px;
    cursor: pointer;
    padding-left: 25px;
}
.header__wrap .language1 ul.select_con li:first-child {
    margin-bottom: 8px;
}
.blue-circle {
  width: 10px;
  height: 10px; 
  background-color: var(--mainColor);
  border-radius: 50%;
  display: inline-block;
}
.gnb {
    display: flex;
    justify-content: center;
}

.gnb>li {
    /* flex-grow: 1; */

}

.gnb>li:last-child {
    /* margin-right: 140px; */
}

.gnb>li>a {
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 140px; */
    width: 100%;
    /* padding-right: 120px; */
    margin-right:128px;

    height: 120px;
    font-family: 'Pretendard';
    font-weight: var(--bold);
    font-size: 22px;
    color: #000;
    text-decoration: none;
}
.gnb>li>a:last-child {
    padding-right: 0px;
}
/* .gnb>li>a.active {
    background-color: #007e41;
    color: #fff;
} */

/* 2차 메뉴 */
.gnb>li {
    position: relative;
}
.header__subnav {
    display: none;
    /*background-color: #fff;*/
	background-color:var(--mainColor);
	 border-top: 1px solid var(--mainColor);
    border-bottom: 1px solid var(--mainColor);
    height: 84px;
box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.03), 0px 0px 3px 0px rgba(0, 0, 0, 0.02);
z-index:9;
}

.mobile_menu {
    position: absolute;
    right: 20px;
    visibility: hidden;
}





.gnb>li>.fas {
    display: none;
}
/*
.gnb li:nth-child(1) .gnb_menu {
    left:-10px;
}
.gnb li:nth-child(2) .gnb_menu {
    left: -180px;
}
.gnb li:nth-child(3) .gnb_menu {
    left:-340px;
}
.gnb li:nth-child(4) .gnb_menu {
    left:-500px;
}
.gnb li:nth-child(5) .gnb_menu {
    left:-670px;
}
*/
/* .gnb_menu {
    position: absolute;
    top: 120px;
    left: 20px;
    width: 100%;
    display: none;
    justify-content: space-between;
   
} */

.gnb_menu {
 position: absolute;
    top: 120px;
    /*left: 50%;
    transform: translateX(-50%);*/
    width: auto; /* 기존 856px 대신 */
   /* min-width: 856px; /* 필요시 최소폭 지정 */
    display: none;
    /*justify-content: center;*/

}

.gnb_menu ul {
    display: flex;
    gap: 10px; /* li들 간의 간격 */
}
.gnb_menu li {
    /* position: relative; */
    
    display: inline-flex; 
    padding: 0 35px; 
    white-space: nowrap;
    align-items: center;
    justify-content: center;

}

/* .gnb_menu li>a::after {
    content: "|";
    align-items: center;
    position: absolute;
    right: 0;
    color: #b2b2b2;
} */

.gnb_menu li:last-child a::after {
    content: "";
}

.gnb_menu li:last-child {
    /* margin-right: 110px; */
}

.gnb_menu li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 83px;
    width: 100%;

    font-weight: var(--medium);
    font-size: 20px;
    color: #fff;
}
/* .gnb li:nth-child(5) .gnb_menu li:nth-child(2) > a {
    width: 120px;
} */

.gnb_menu>li>a.active {
   /* color: #222222; */
   color:#fff;
   text-decoration: underline;
}

.main_visual {
    width: 100%;
    margin-top: 120px;
}

.main_visual_banner {
    margin:0 auto;
    /* width: 1820px; */
    width: calc(100% - 100px);
    height: 787px;
    background-size: cover;
    background-image: url('/img/main/visual_bg.png');    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
}
.mv_text1 {
    font-weight: var(--regular);
    font-size: 24px;
    color: var(--white);
    opacity: 0.8;
    line-height: 120%;
    letter-spacing: -0.5px;
    margin-bottom: 60px;
}
.mv_text2 {
    font-weight: var(--light);
    font-size: 68px;
    line-height: 100%;
    letter-spacing: -2.0px;
    color: var(--white);
    margin-bottom: 16px;
}
.mv_text3 {
    font-weight: var(--bold);
    font-size: 68px;
    line-height: 100%;
    letter-spacing: -2.0px;
    color: var(--white);
    margin-bottom: 60px;
}
.mv_text4 {
    font-weight: var(--regular);
    font-size: 28px;
    line-height: 120%;
    letter-spacing: -0.6px;
    color: var(--white);
    margin-bottom: 80px;
}
.mv_text_btn {
    width: 147px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 4px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    font-family: "Noto Sans KR", sans-serif;
    color: var(--white);
    font-weight: var(--medium);
    font-size: 16px;
    line-height: 14px;
    letter-spacing: -0.3px;
}

.mv_text_btn:hover{
	background:#2C4EA2;
	border:1px solid #2C4EA2;

}
.mv_text_btn a {
    color: var(--white);
    text-decoration: none;
}

.rolling {
    width: 100%;
    height: 186px;
    border-bottom:1px solid #dfdfdf;
}
.roll_inner {
    height: 69px;
    padding: 58.5px 0px;

}
.roll_inner .swiper {
  width: 100%;
  height: 69px; 
}
.mySwiper .swiper-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 100%;
}
/* .swiper-slide img {
  max-height: 100%;
  object-fit: contain;
} */


.box1 {
    width: 100%;
    height: 670px;
    padding: 100px 0;
}
.box1_container {
    width: 1356px;  
    margin:0 auto;
}
.box_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.box1_wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 80px;
}

.box1_area {
    width: 250px;
    height: 283px;
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.main_small_title {
    font-family: "Poppins", sans-serif;
    font-weight: var(--semibold);    
    font-size: 16px;
    color: var(--mainColor);
    margin-bottom: 20px;
}
.main_big_title {
    font-weight: var(--bold);    
    font-size: 40px;
    margin-bottom: 60px;
}
.box1_title {
    font-family: "Poppins", sans-serif;
    font-weight: var(--bold);    
    font-size: 24px;
    line-height: 120%;
}
.box1_desc {
    font-weight: var(--regular);
    font-size: 19px;
    color:#535353;
    line-height: 160%;
    text-align: center;
}
.main_box_btn {
    font-weight: var(--bold);
    font-size: 14px;
    color:var(--mainColor);
    line-height: 160%;
}


.box2 {
    width: 100%;
    height: 738px;
    padding: 100px 0;
    background-size: cover;
    background-image: url('/img/main/box2_bg.png');    
}
.box2_container {
    width: 1280px;  
    margin:0 auto;
}
.box2_wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.box2_area {
    width: 302px;
    height: 394px;
    display:flex;
    flex-direction: column;
    /* justify-content: space-between; */
    align-items: center;
    /*background-color:#fff;*/
    border-radius: 20px;
	border: 1px solid transparent;
}
.box2_area:hover{
	/* border: 1px solid #2C4EA2; */
	}
.box2_img img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
/*.box2_img img:hover{
	border-left: 1px solid #2C4EA2;
	border-right: 1px solid #2C4EA2;
	}*/
.box2_contents{
	background-color:#fff;
	text-align:center;
	width:100%;
	height:100%;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.box2_title {
    font-weight: var(--bold);    
    font-size: 20px;
    line-height: 120%;
    margin-top: 24px;
    letter-spacing: -0.4px;
}
.box2_desc {
    font-weight: var(--regular);
    font-size: 14px;
    color:#787878;
    line-height: 140%;
    text-align: center;    
    padding: 16px 0 20px 0;
}

/** slide **************************************************************************/
.slidebox {
    width: 100%;
    padding: 100px 0 80px 0;
    background-size: cover;
}
.box3 {
    height: 725px;
    background-image: url('/img/main/box3_bg.png');
}
.box4 {
    height: 693px;
}
.slide_container {
    display: flex;
    justify-content: space-between;
}
.box3_left {
    width: 340px;
    display: flex;
    flex-direction: column;
    align-items: start;
        margin-left: 282px;
    margin-right: 80px;
}
.box3_left__small {
    font-family: "Poppins", sans-serif;
    font-weight: var(--semibold);
    font-size: 16px;
    color: var(--mainColor);
}
.box3_left__title {
    font-weight: var(--bold);
    font-size: 40px;
    color:#000000;
    margin: 20px 0 40px 0;

}
.box3_left__desc {
    font-weight: var(--regular);
    font-size: 20px;
    color:#000000;
    line-height: 160%;
    margin-bottom: 60px;
}
.box3_left__btn {
    width: 187px;
    height: 56px;
    border:1px solid rgba(0,0,0, 0.4);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box3_left__btn:hover{
background:var(--mainColor);
color:#fff;
border-color:var(--mainColor);
text-decoration:none;
}
.box3_left__btn a:hover{
text-decoration:none;
color:#fff;
}
/*.box3_left__btn a {
    font-family: "Noto Sans KR";
    font-weight: var(--medium);
    font-size: 16px;
    color:#000000;
    line-height: 100%;
}*/
.box3_right {
    /* width: 1180px; */
    width: calc(100% - 702px);
    display: flex;
    flex-direction: column;    
}
.awardSwiper {
    width: 100%;
}
.box3_slide {
    height: 441px;
    float:right;
    position: relative;
}
.awardSwiper .swiper-slide {
    width: 300px;
    height: 401px;
    /* flex-shrink: unset; */
}
.awardSwiper .swiper-wrapper {
    padding-left: 5px;
}
.photoSwiper .swiper-wrapper {
    padding-left: 5px;
}
.awardSwiper .swiper-slide img {
    display: block;
    width: 300px;
    height: 401px;
    object-fit: cover;
    border-radius: 12px;
}
.box3_line {
    /* width: 1180px; */
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: start;
    align-items: center;
}
.box3_line_black {
    width: 300px;
    border:2px solid #000;
}
.box3_line_normal {
    /* width: 880px; */
    width: calc(100% - 300px);
    border:2px solid #b6bdc5;
}

/* swiperjs *****************************************************************/
.custom-swiper-button-prev,
.custom-swiper-button-next {

}

.custom-swiper-button-prev {
    /* right: 70px; */
    border-right: none; /* 이미지에 있는 것 처럼 두 버튼이 붙어있도록 */
}

.custom-swiper-button-next {
    right: 20px; /* 우측 끝에서 20px */
}

.custom-swiper-button-prev:hover,
.custom-swiper-button-next:hover {
    background-color: #f0f0f0;
    border-color: #aaa;
}

/* 버튼 비활성화 시 스타일 (Swiper가 자동으로 추가하는 클래스) */
.custom-swiper-button-prev.swiper-button-disabled,
.custom-swiper-button-next.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f9f9f9;
    border-color: #ddd;
}  
.box4 > .slide_container > .box3_right > .box3_btn {
    margin-top: 64px;
}
.box3_btn {
    height: 40px;
    display: flex;
    gap:7px;
    justify-content: start;
    align-items: center;
    margin-top: 24px;
}
.img_box_btn_left, .img_box_btn_right {
    cursor: pointer;
}

.photoSwiper .swiper-slide {
    width: 300px;
    height: 389px;
    /* flex-shrink: unset; */
}
.photoSwiper .swiper-slide img {
    display: block;
    width: 300px;
    height: 200px;
    object-fit: cover;
}
.box4_slide {
    height: 409px;
    float:right;
    position: relative;
}
.box4_area {
    width: 300px;
    height: 369px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    box-shadow : 0px 4px 5.8px rgba(0,0,0, 0.1), 0px 9px 12px rgba(0, 0, 0, 0.04);
    
}

/** box *********************************************************/
.imgtop img {
      border-top-left-radius: 12px;
    border-top-right-radius: 12px; 
}
.img_cont {
    padding: 22px 24px 22px 24px;
    height: 163px;
}
.box4_area a {
    text-decoration: none;
}
.img_cont__tit {
    font-weight: var(--bold);
    font-size: 20px;
    color:#000;    
    letter-spacing: -0.4px;
}
.img_cont__desc {
    font-weight: var(--medium);
    font-size: 14px;
    line-height: 140%;
    color:#787878;
    margin:20px 0 20px;
}
.img_cont__date {
    font-weight: var(--medium);
    font-size: 12px;
    line-height: 140%;
    color:#b2b2b2;
    letter-spacing: -0.2px;
}


















.box4 {
    width: 100%;
    height: 693px;
    padding: 100px 0 80px 0;
}


.box5 {
    width: 100%;
    height: 664px;
    padding: 100px 0 120px 0;
    background-size: cover;
    background-image: url('/img/main/box5_bg.png');    
}
.box5_area-1 {
    background-size: cover;
    background-image: url('/img/main/box5_item1.png');        
}
.box5_area-2 {
    background-size: cover;
    background-image: url('/img/main/box5_item2.png');        
}
.box5_area-3 {
    background-size: cover;
    background-image: url('/img/main/box5_item3.png');        
}
.box5_container {
    width: 1356px;  
    margin:0 auto;
}
.box5_wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.box5_area {
    width: 432px;
    height: 300px;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color:#fff;
    border-radius: 20px;

    position: relative;
    overflow: hidden;    
}
.box5_area::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2c4ea2;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}
.box5_area:hover::after {
    opacity: 0.7; /* 원하는 투명도로 조절 */
}
.box5_title {
    font-weight: var(--bold);    
    font-size: 32px;
    line-height: 120%;
    margin-bottom: 12px;
    letter-spacing: -1px;
    color:#ffffff;
    text-align: center;  
    z-index:2;
}
.box5_desc {
    font-family: "Poppins", sans-serif;
    font-weight: var(--medium);
    font-size: 14px;
    color:#ffffff;
    line-height: 120%;
    text-align: center;    
    z-index:2;
}
.main_hidden_text {
    margin:32px 0;
    text-align: center;
}
.main_hidden_btn {
    text-align: right;
}
.main_hidden_btn a {
    color:rgba(255, 255, 255, 0.8);
    text-decoration: none;
}
.main_hidden_text, .main_hidden_btn {
    display: none;
    width: 372px;
    font-weight: var(--medium);
    font-size: 14px;
    line-height: 160%;
    color:rgba(255, 255, 255, 0.8);
    z-index:2;
}
.footer_top {
    background-color: #07132F;
    border-top: 1px solid #9e9e9e;
}
.ft_inner {
    width: 1280px;
    height: 98px;
    margin:0 auto;
    display: flex;
    /*justify-content: space-between;*/
    align-items: center;
}
.ft_left {
    width: 1220px;
    /*display: flex;*/
    justify-content: space-between;
    align-items: center;
	float:left;
}
.ft_right{position:relative;
right:0;
float:right;}
.ft_menu{
margin:0 30px 0 0;
float:left;
}
.ft_menu a {
    font-size: 18px;
    letter-spacing: -0.4px;
}
.ft_menu:nth-child(2) a {
    font-weight: var(--regular);
    color: rgba(255, 255, 255, 0.6);
}
.ft_menu:nth-child(1) a {
    font-weight: var(--bold);
    color: rgba(255, 255, 255, 1);
}
/* .ft_select {
    width: 153px;
    height: 38px;
    padding: 10px;

} */
.custom-select-wrapper {
    position: relative; 
    display: inline-block;
}

.custom-select {
    -webkit-appearance: none; 
    -moz-appearance: none;
    appearance: none; 
    width: 153px;
    height: 38px;
    color:#8e8e8e;
    padding: 10px 40px 10px 10px; 
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    cursor: pointer;

    background-image: url('/img/main/select_arrow.svg');

    /* background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>'); */
    background-size: 9px; /* 아이콘 크기 조절 */
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center; /* 오른쪽에서 15px 떨어뜨려 중앙에 배치 */
    
        
    &::-ms-expand {
    display: none;
    }


}

/* 포커스 시 테두리 스타일 변경 (선택 사항) */
.custom-select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}



.footer_bottom {
    height: 153px;
    background-color: #1b253d;
    position: relative;
}
.ft_bottom_inner {
    width: 1280px;
    height: 98px;
    margin:0 auto;
    padding-top:40px;
    display: flex;
    justify-content: start;
}
.foot_addr {
    padding-left: 40px;
}
.ft_addr1 {
    font-size: 14px;
    line-height: 120%;
    color:#d3d3d3;

    display: flex;
    justify-content: start;
    align-items: center;

}
.addr_item:not(:last-child)::after {
  content: "|"; 
  margin-left: 10px;
  margin-right: 10px;
}
.ft_addr1:nth-child(2) {
    margin: 6px 0 16px 0;
}
.ft_copy {
    color: rgba(255,255,255, 0.4);
}

.navUpBtn {
    /* position: fixed; */
    bottom: 290px;
    right: 20px;    
    z-index: 999999;
    display: flex;
    justify-content: center;
    width: 64px;
    height: 64px;
    transition: 0.3s ease-in-out;
    align-items: center;
	background:#fff;
}

.up_area {
    /* display: flex;
    justify-content: end;
    padding: 0 51px 42px; */
    position: fixed;
    right:20px;
    bottom: 20px;    
	background:#fff;
	z-index:9999;
}

.pc {
    display:block;
}
.mobile {
    display:none;
}
.mobile_show {    
    display:none;
}

/* .rotate-180 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);   
  transform: rotate(180deg);
} */
.img_box_btn_left img {
  opacity: 0.5;  
}
.img_box_btn_left img:hover {
  opacity: 1;
}









@media all and (min-width: 2000px) {

    /* .rolling {
        height: 450px;
    }
    .roll_inner {
        height: 330px;
    }
    .roll_inner .swiper {
        width: 100%;
        height: 329px;
    }
    .mySwiper  > .swiper-slide img {
        height: 100%;
    } */
    .mySwiper .swiper-slide img {
        width: unset;
    }

}


@media all and (min-width: 1541px) and (max-width:1700px) {

    .header .header__wrap {
        gap:100px;
    }
    .gnb>li>a {
        margin-right: 108px;
    }
}



@media all and (min-width: 1439px) and (max-width:1540px) {

    .header .header__wrap {
        gap:50px;
    }
    .gnb>li>a {
        margin-right: 88px;
    }
}


@media all and (min-width: 1439px) and (max-width:1540px) {

    .header .header__wrap {
        gap:0px;
    }

}

@media all and (min-width: 1256px) and (max-width:1440px) {
    .box2_area {
        width: 302px;
    }    
}


@media all and (min-width: 769px) and (max-width:1440px) {

    .header .header__wrap {
        gap:0px;
    }

    .ft_bottom_inner {
        width: 100%;
        padding: 40px 20px 0 20px;
    }

    .header .header__wrap {
        margin: 0;
    }


    .header .header__wrap nav {
        padding: 0;
        width: calc( 100% - 380px);
    }
    .gnb>li>a {
        margin-right: 40px;
    }

    .box2_container {
        width: 100%;
    }
    .box5_container {
        width: 100%;
    }    
    .box5_area {
        width: 33%;
    }
    .ft_inner {
        width: 100%;
        padding: 0px 20px;
    }
    .box_info {
        width: 100%;
    }
    .info04_left, .info04_right {
        width: 50%;
    }
    .info04_left img {
        width: 100%;
    }

    .box1_container {
        width: 100%;
    }
    .box2_img img {
        width: 100%
    }
    .mv_text2 {
        text-align: center;
    }
    .box2, .box5 {
        padding-left: 10px;
        padding-right: 10px;
    }
    .box3_left {
        margin-left: 20px;
    }
    .box3_right {
        width: calc(100% - 352px);
    }

}

@media all and (min-width: 769px) and (max-width:1255px) {
    .box2_area {
        width: 24.5%
    }
}

@media all and (min-width:1001px) and (max-width:1200px) {


    .header .header__wrap nav {
        padding: 0;
        width: calc( 100% - 180px);
    }
    .header .logo {
        width: 250px;
    }    
    .header .logo img {
        width: 100%;
    }
    .header .header__wrap {
        padding: 0 20px;
    }
    .header .logo {
        width: 250px;
        height: auto;
    }


}

@media all and (min-width:769px) and (max-width:1000px) {
    .header .header__wrap nav {
        padding: 0;
        width: calc( 100% - 180px);
    }
    .header .logo {
        width: 220px;
    }    
    .header .logo img {
        width: 100%;
    }
    .header .header__wrap {
        padding: 0 20px;
    }
    .gnb>li>a {
        font-size: 18px;
    }
    .header .logo {
        width: 250px;
        height: auto;
    }
    .header__wrap .language1 {
        width: 120px;
    }
}

@media screen and (max-width:768px) {
    .rolling {display: none}
}





