@charset "utf-8";


body {
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    font-family: 'Noto Sans KR', sans-serif;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.429;
}
body, input, textarea {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 300;
}
* {
    box-sizing: border-box;
}
*:focus {
    outline: none;
}
img {
    vertical-align: middle;
    display: block;
    max-width: 100%;
}
a {
    text-decoration: none;
}
li, ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul:after {
    content: "";
    display: block;
    clear: both;
}
h1 {
    font-size: 58px;
    font-weight: 600;
    font-family: "Geologica", sans-serif;
    color: #ecebd7;
    padding-bottom: 25px !important;
    display: flex
;
    justify-content: space-between;
}
h1 a {
    border: 1px solid #ecebd7;
    color: #ecebd7;
    font-weight: 100;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 46px;
}
h1 a:hover {
    transition: all 1s;
    transform: rotate(180deg);
}
.sub_h {
    position: relative;
    margin-bottom: 70px;
}
.sub_h:after {
    position: absolute;
    bottom: -10px;
    left: 0;
    display: block;
    content: '';
    width: 110px;
    height: 6px;
    background: #ecebd7;
}
h2 {
        font-size: 160px;
    font-weight: 500;
    font-family: "Geologica", sans-serif;
    color: #ecebd7;
    text-align: left;
}

h3 {
        font-size: 42px;
    font-weight: 300;
    font-family: "Geologica", sans-serif;
    color: #ecebd7;
    padding-top: 30px !important;
    text-align: left;
}
h4 {
    font-size: 22px;
    font-family: "Geologica", sans-serif;
    margin-bottom: 10px !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    display: block;
    width: 245px;
    text-align: center;
    background: #ecebd7;
    color: #16192b;
    font-weight: 400;
}
h5 {
    font-size: 20px;
    font-weight: 400;
}
h6 {
    font-size: 50px;
    margin: 10px 0 40px !important;
}
h7 {
    font-size: 130px;
    font-weight: 300;
    font-family: "Geologica", sans-serif;
    color: #ecebd7;
    text-align: left;
    line-height: 140px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
h7 strong {
    font-weight: 500;
}
h7 span {
        font-size: 50px;
    display: inline-block;
    margin-bottom: -20px;
    font-weight: 300;
        line-height: 50px;
    font-weight: 100;
}
h8 {
        font-size: 190px;
    font-weight: 700;
    font-family: "Geologica", sans-serif;
    color: #ecebd7;
    text-align: left;
    line-height: 190px;
}
h9 {
    font-size: 50px;
    font-weight: 300;
    font-family: "Geologica", sans-serif;
    color: #ecebd7;
    padding-top: 30px !important;
    text-align: left;
    display: inline-block;
}
hr {
    background-color: #f2f2f2;
    margin: 32px 0;
    border: 0;
    height: 1px;
    width: 100%;
    float: inherit;
}
hr.hr_side {
    background-color: #f2f2f2;
    margin: 0;
    border: 0;
    height: 1px;
    width: 100%;
    float: inherit;
}
div {
    box-sizing: border-box;
}
.pipe {}
.pipe:before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    margin: 0 12px 0 12px;
    vertical-align: -1px;
    background-color: #e3e6ea;
}

/* 체크박스 */
.container-checkbox {
    display: block;
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.container-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.container-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
}
.container-checkbox:hover input ~ .checkmark {
    background-color: #fff;
    border: 1px solid #000;
}
.container-checkbox input:checked ~ .checkmark {
    border: 1px solid #ea2a2a;
    background-color: #ef2c2c;
}
.container-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.container-checkbox input:checked ~ .checkmark:after {
    display: block;
}
.container-checkbox .checkmark:after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* 라디오 버튼 */
.container-radio {
    display: block;
    position: relative;
    padding-left: 24px;
    /* margin-bottom: 12px; */
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* Hide the browser's default radio button */
.container-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
/* Create a custom radio button */
.container-radio .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
}
/* On mouse-over, add a grey background color */
.container-radio:hover input ~ .checkmark {
    background-color: #fff;
}
/* When the radio button is checked, add a blue background */
.container-radio input:checked ~ .checkmark {
    border: 1px solid #ea2a2a;
    background-color: #ef2c2c;
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.container-radio .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the indicator (dot/circle) when checked */
.container-radio input:checked ~ .checkmark:after {
    display: block;
}
/* Style the indicator (dot/circle) */
.container-radio .checkmark:after {
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}
textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #e4e8eb;
    background-color: #f9f9f9;
    height: 200px;
    resize: none;
	white-space: pre;
}


/* 메인 섹션 */
#first_section {
    display: flex;
}
.main_section {
    position: relative;
    width:50%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main_section .section_img {
    position: absolute;
    z-index: 1;
    top:0;
    left:0;
    width:100%;
    height: 100%;
    object-fit: cover;
}
.section_bg {
    background: rgba(8,12,34,0.8);
    position: absolute;
    z-index: 2;
    top:0;
    left:0;
    width:100%;
    height: 100%;
}
.main_section:hover .section_bg {
    background: rgba(8,12,34,0.5);
}
.main_section:hover .section_img {
    transform:scale(1.05);
    -webkit-transform:scale(1.05);
    -moz-transform:scale(1.05);
    -o-transform:scale(1.05);   
    transition: transform .75s;
    -o-transition: transform .75s;
    -moz-transition: transform .75s;
    -webkit-transition: transform .75s;
}
.main_section:hover .section_btn {
    opacity: 1;
}
.section_btn {
    color: #fff;
    z-index: 3;
    font-size: 100%;
    opacity: 0.7;
}
.section_btn span {
        color: #fff;
    padding: 20px 60px;
    display: inline-block;
    border-radius: 100px;
    font-size: 20px;
    background: linear-gradient(130deg, rgba(210, 4, 112, 1) 0%, rgba(99, 13, 141, 1) 54%, rgba(60, 146, 205, 1) 100%);
    font-weight: 500;
}
.section_btn p {
    display: block;
    color: #fff;
    padding: 10px 20px;
    font-size: 60px;
    margin: 0 0 40px;
    font-weight: 700;
}

/* 로디첫화면 */
#main_content {
    background: #16192b;
}
#main_content .rodi_main {
    width:1560px;
    margin: 0 auto;
        text-align: left;
}
#header.open .hd_bg {
    position: absolute;
    width: 100%;
    background: #fff;
    z-index: 1;
    transition: all .3s;
    border-top: 1px solid #dcdcdc;
}

#header {
        color: #fff;
    margin: 0;
    position: fixed;
    width: 100%;
    z-index: 99;
    top: 0;
}
#header.active {
    background: #16192b;
    opacity: 0.9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#header .logo{
    font-size: 25px;
    box-sizing: border-box;
}
#header .logo a {
    color: #fff;
}
#header .logo img {
    width: 150px;
    filter: invert(1);
}
#header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1560px;
    margin: 0 auto;
}
#header .gnb{
    text-align: right;
}
#header .nav .logo{
    display:flex;
    width:200px;
    flex-wrap:wrap;
    justify-content: center;
    align-items: center;
    text-transform:uppercase;
    cursor:pointer;
}
#header .menu_btn{
    position:absolute;
    right:20px;
    top:20px;
    display:none;
}
#header .menu_btn div { 
    width: 25px;
    height: 2px;
    background-color:#000;
    margin: 6px 0px;
    position: relative;
    transition:all .8s ease;
}
#header .menu_btn.lijo div{
    position:absolute;
    transition:all .8s ease;
}
#header .menu_btn.lijo div:nth-child(1){
    transform: rotate(45deg);
    top: 7px;
    right: 0px;
}
#header .menu_btn.lijo div:nth-child(2){
    width:0px;
    top: 7px;
    right: 0px;
}
#header .menu_btn.lijo div:nth-child(3){
    transform: rotate(-45deg);
    top: 7px; 
    right: 0px;
}
#header .nav ul.gnb{
    margin-bottom:0px;
    padding-left:0px;
    display: flex;
}
#header .nav ul.gnb li{
    margin-bottom:0px;
    text-align: center;
    position: relative;
}
#header .nav ul.gnb li a {
    color: #ecebd7;
        box-sizing: border-box;
    display: block;
    transition: .8s ease;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.5s;
    font-family: "Geologica", sans-serif;
}
#header .nav ul.gnb > li > a {
    padding: 30px 30px;
}
#header .nav ul.gnb > li::after {
    content: "";
    width: calc(100% - 70px);
    height: 2px;
    background: #ecebd7;
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transition: transform 0.5s;
}
#header .nav ul.gnb > li:hover::after {
    transform: translateX(-50%) scaleX(1);
}
#header .nav ul.gnb li ul.sub{
    position:absolute;
    padding-left:0px;
    opacity:0;
    visibility: hidden;
    padding-top:10px;
    z-index: 3;
    width: 100%;
}
#header .nav ul.gnb li ul.sub li {
    display: block;
    position: relative;
}
#header .nav ul.gnb li ul.sub li a{
    padding:10px;
}

/* 메인슬라이드 */
.rodi_slide {
    position: relative;
    overflow: hidden;
}
.rodi_slide .swiper-slide {
    display: flex;
    align-items: flex-end;
    padding: 0 170px 150px;
    overflow: hidden;
    text-align: left;
}
.rodi_slide .swiper-button-next, 
.rodi_slide .swiper-button-prev {
    padding: 20px;
    border: 1px solid #fff;
    border-radius: 50%;
    opacity: 0.5;
}
.rodi_slide .swiper-button-next:hover, 
.rodi_slide .swiper-button-prev:hover {
    opacity: 1;
}
.slide_span {
    position: absolute;
    top:0;
    right:0;
        opacity: 0.5;
    animation-name: plus;
    animation-duration: 7s;
}
@keyframes plus {
    0% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1.0);
    }
}
.slide_txt {
    z-index: 999;
}
.slide_txt .slide_more {
    color: #ecebd7;
    padding: 20px 60px;
    border: 1px solid #ecebd7;
    border-radius: 40px;
    display: flex;
    width: 240px;
    font-size: 20px;
    margin-top: 30px;
    text-align: left;
    font-weight: 500;
    position: relative;
    z-index: 99;
    align-items: center;
    justify-content: space-between;
}
.slide_txt .slide_more:hover {
    background: #ecebd7;
    color: #333;
}
.slide_txt .slide_more:hover:after {
    color: #333;
}
.slide_txt .slide_more:after {
        content: '+';
    display: inline-block;
    color: #ecebd7;
    font-size: 30px;
    font-weight: 200;
    margin-top: -5px;
}

.bgVideo {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.8;
}
.bgVideo img {
    width: 100%;
    height: 100%;
}

.main_more {
    display: block;
    font-size: 23px;
    font-weight: 500;
    color: #ecebd7;
    letter-spacing: -0.03em;
    padding: 23px 0;
    border-radius: 990px;
    border: 1px solid #ecebd7;
    position: relative;
    z-index: 5;
    overflow: hidden;
    white-space: nowrap;
    margin: 16px auto 0;
    width: 280px;
    text-align: center;
}
.main_more:hover {
    color: #333;
}
.main_more:hover::before {
    top: -5%;
}
.main_more:before {
    content: "";
    width: 110%;
    height: 110%;
    background: #ecebd7;
    border-radius: 990px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    transition: top 0.5s;
}

/* 메인_포폴 */
.rodi_po {
    padding-top:13vh;
}
.po_box:after {
    clear: both;
    display: block;
    content: '';
}
.po_box .po_a {
    position: relative;
    float:left;
    width:24.25%;
    margin-right:1%;
    margin-bottom: 1%;
        overflow: hidden;
}
.po_box .po_a:nth-child(4),
.po_box .po_a:nth-child(8) {
    margin-right: 0;
}
.po_box .po_img .po_txt {
    display: none;
}
.po_box .po_img:hover .po_txt {
    display: block;
    position: absolute;
    animation: fade_up 0.7s;
    background: linear-gradient(130deg, rgba(210, 4, 112, 1) 0%, rgba(99, 13, 141, 1) 54%, rgba(60, 146, 205, 1) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    line-height: 1.5;
    font-size: 20px;
    font-weight: 700;
}
@keyframes fade_up {
	0% { opacity: 0; transform: translateY(100%); }
	to { opacity: 1; transform: translateY(0); }
}
.po_box .po_img .po_txt .po_brand {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}
.po_box .po_img .po_txt .po_span {
    font-size: 15px;
    font-weight: 400;
}

.sub_box {
    padding-bottom: 70px;
}
.sub_box a {
    width:32.6% !important;
}
.sub_box a:nth-child(even) {
    margin-right: 1% !important;
}
.sub_box a:nth-child(3),
.sub_box a:nth-child(6),
.sub_box a:nth-child(9),
.sub_box a:nth-child(12),
.sub_box a:nth-child(15),
.sub_box a:nth-child(18),
.sub_box a:nth-child(21),
.sub_box a:nth-child(24),
.sub_box a:nth-child(27){
    margin-right: 0 !important;
}

/* 메인_뉴스 */
.rodi_news {
    margin-top:13vh;
    padding-bottom: 8vh;
    color: #ecebd7;
    text-align: left;
}
.rodi_news a {
    color: #ecebd7;
    position: relative;
    width: 100%;
    height: 100%;
}
.rodi_news .news_box {
    position: relative;
}
.rodi_news .news_box .news_button {
        position: absolute;
    top: -60px;
    right: 0;
    z-index: 99;
    display: flex;
}
.news_button .swiper-button-prev2 {
    margin-right: 5px;
    margin-right: 5px;
}
.news_button .swiper-button-next2,
.news_button .swiper-button-prev2 {
    position: relative;
    padding: 20px;
    border: 1px solid #fff;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
}
.news_button .swiper-button-next2:hover,
.news_button .swiper-button-prev2:hover {
    background:#ecebd7; 
    opacity: 1;
}
.news_button .swiper-button-prev2:hover::before,
.news_button .swiper-button-prev2:hover::after,
.news_button .swiper-button-next2:hover::before,
.news_button .swiper-button-next2:hover::after {
    border:1px solid #16192b;
    background: #16192b;
}
.news_button .swiper-button-prev2:before,
.news_button .swiper-button-prev2:after,
.news_button .swiper-button-next2:before,
.news_button .swiper-button-next2:after {
    position: absolute;
    content: '';
    display: block;
    width:15px;
    height: 3px;
    background: #ecebd7;
    border-radius: 4px;
}
.news_button .swiper-button-prev2:before {
    top:14px;
    left: 11px;
    transform: rotate(-45deg);
}
.news_button .swiper-button-prev2:after {
    top:23px;
    left: 11px;
    transform: rotate(45deg);
}
.news_button .swiper-button-next2:before {
    top:14px;
    left: 14px;
    transform: rotate(45deg);
}
.news_button .swiper-button-next2:after {
    top:23px;
    left: 14px;
    transform: rotate(-45deg);
}
.rodi_news .news_img {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}
.rodi_news .news_img .centered {
        position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}
.rodi_news .news_img .centered img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.rodi_news .news_title {
    margin: 20px 0 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    line-height: 1.5;
    font-size: 22px;
    font-weight: 600;
}
.rodi_news .news_contents {
    font-size: 15px;
    line-height: 1.5;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.rodi_news .swiper {
  width: 100%;
  height: 500px;
}

.rodi_news .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rodi_news .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rodi_news .swiper-slide {
  width: 25%;
}
.rodi_news .mySwiper2 {
    position: relative;
}
.rodi_news .mySwiper2 .news_button {
    position: absolute;
    top:0;
    right: 0;
}

/* 하단 */
.copy_big {
    padding: 70px 130px 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: #0b0d18;
    color: #ecebd7;
}
.copy_big .copy_font {
    width: 600px;
}
.copy_big .copy_font a {
    letter-spacing: -3px;
    color: #fff;
    font: 700 110px 'Noto Sans KR';
}
.copy_big .copy_font a img {
    filter: invert(1);
    opacity: 0.7;
}
.copy_right {
    text-align: left;
    line-height: 1.6;
    font-size: 18px;
    color: #e9e9e9;
    padding-bottom: 8px;
}

/* 팝업 */
.popup {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    position: fixed;
    display: none;
    height: 100%;
    z-index: 999;
    top: 0;
    left: 0;
}
.pop_content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.popup_box {
    position: relative;
       width: 70vw;
    background: rgb(22, 25, 43);
    height: 90vh;
    text-align: left;
    padding: 50px;
    display: flex;
    flex-direction: column;
    color: #ecebd7;
}
.popup_box .pop_img {
    width:100%;
}
.popup_box .pop_flex {
    overflow-y: scroll;
    display: block;
}
.popup_box .pop_flex:after {
    content: '';
    display: block;
    clear: both;
}
.popup_box .pop_flex .pop_img {
    width: 49.5%;
    margin-right: 1%;
    margin-bottom: 1%;
    float: left;
}
.popup_box .pop_flex .pop_img:nth-child(even) {
    margin-right: 0;
}
.popup_box .pop_flex .web_img {
    width:100%;
}
.popup .close {
    position: absolute;
    top: 0;
    right: 0;
    background: #ecebd7;
    color: #16192b;
    width: 70px;
    height: 70px;
}
.popup .close:before,
.popup .close:after {
    width: 40px;
    height: 1px;
    background: #16192b;
    content: '';
    display: block;
    position: absolute;
    top: 34px;
    right: 15px;
}
.popup .close:before {
    transform: rotate(45deg);
}
.popup .close:after {
    transform: rotate(-45deg);
}

/* 푸터 */
footer {
    padding-top:30px;
}

/* 퀵메뉴 */
#quick {
    display: flex;
    position: fixed;
    right: 20px;
    z-index: 998;
    flex-direction: column;
}
.q1 {
    bottom: 20px;
}
.q2 {
    bottom: 85px;
}
.q1 a {
    background: linear-gradient(130deg, #48ba96 0%, #2D9676 75%);
}
.q2  a {
    background: linear-gradient(130deg, #4dd180 0%, #15bf57 75%);
}
.q3 {
    opacity: 0.5;
    bottom: 160px;
    border-radius: 50%;
    background: #16192b;
    border: 1px solid #f1f1f1;
    position: fixed;
    right: 20px;
    z-index: 998;
    width: 60px;
    height: 60px;
    display: none;
    cursor: pointer;
}
.q3:before {
       content: '';
    display: block;
    background: #ecebd7;
    width: 22px;
    height: 3px;
    transform: rotate(-45deg);
    position: absolute;
    top: 26px;
    left: 12px;
    border-radius: 3px;
}
.q3:after {
        content: '';
    display: block;
    background: #ecebd7;
    width: 22px;
    height: 3px;
    transform: rotate(45deg);
    position: absolute;
    top: 25px;
    right: 10px;
    border-radius: 3px;
}
.q3:hover {
    opacity: 1;
    transition: none;
}
#quick a {
    border-radius: 50%;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    font-size: 0;
    transition: ease-in-out 0.4s;
    color: #fff;
}
#quick a:hover {
    border-radius: 55px;
    width: 160px;
    transition: ease-in-out 0.5s;
    font-size: 14px;
    font-weight: 500;
}
#quick a img {
    width: 46px;
}


/*
@media(min-width:1024px){
    #header .nav ul.gnb:hover li ul.sub{visibility:visible;opacity:1;transform:translateY(0px);} 
    #header .nav ul.gnb li:hover{display:inline-block;margin-bottom:0px;}
    #header .nav ul.gnb li ul.sub li a{text-align: center}
    #header .nav .active  {position: relative}
    #header .nav .active:hover:after{content: '';display: block;width: 100%;height: 2px;background: #000;position: absolute;left: 0;bottom: 0}
}
*/
  
/* 모바일 */
@media screen and (max-width:1560px) {
    #header .container {
        width: 98%;
    }
    .slide_span {
        height: 100vh;
        object-fit: cover;
    }
    #main_content .rodi_main {
        width: 98%;
    }
}
@media screen and (max-width:1200px) {
    .rodi_slide .swiper-slide {
        display: flex;
        align-items: flex-end;
        padding: 0 100px 130px;
    }
    .rodi_news .swiper {
        width: 100%;
        height: 400px;
    }
}
@media screen and (max-width:1024px) {
    #header{
        position: relative;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
    }
   #header .menu_btn{
       display:block;
       top:50%;
       transform: translateY(-50%);
    }
    #header .menu_btn.lijo{
        top: 30%;
    }
   #header .nav ul.gnb{
       position: absolute;
       top: 56px;
       transform: translateX(100%);
       left: 0;
       transition:.8s ease;
       width:100%; 
       height: 100vh;
       background: #16192b;
       overflow-y: auto;
       display: block;
    }
   #header .nav ul.gnb li a{
       text-align: left;
    }
    #header .nav ul.gnb.surya {
       z-index: 1;
    }
   #header .nav ul.gnb.surya {
       transform: translateX(0%);
       display: block;
       z-index: 999;
    }
   #header .nav ul.gnb li ul.sub{
       opacity: 1;
       visibility: visible;
       display:none;
       position:relative;
       padding-top:0px;
       width:100%;
       transition:0s;
       transform: translateY(0px);
    }
   #header .nav ul.gnb li ul.sub:after{
       display:none;
    }
   .hd_bg{
        width: 100%;
        height: 65px;
        background: #16192b;
        position: absolute;
        top: 0;
        z-index: -1;
    }
    #first_section {
        flex-direction: column;
    }
    .main_section {
        width: 100%;
        height: 50vh;
    }
    .copy_big {
        padding: 70px 20px 50px;
    }
    .copy_big .copy_font {
        width: 400px;
    }
    h1 {
        font-size: 35px;
        padding-bottom: 0px !important;
        margin-bottom: 15px !important;
    }
    h1 a {
        width: 46px;
        height: 46px;
    }
    h2 {
        font-size: 80px;
    }
    h3 {
        font-size: 28px;
    }
    h7 {
        font-size: 90px;
        line-height: 100px;
    }
    h7 span {
        font-size: 35px;
    }
    h8 {
        font-size: 100px;
        line-height: 100px;
    }
    h9 {
        font-size: 35px;
    }
    .rodi_slide {
        padding-top: 65px;
    }
    .slide_txt .slide_more {
        padding: 15px 40px;
        width: 180px;
    }
    #header .menu_btn div {
        background-color: #ecebd7;
    }
    #header {
        height: 56px;
    }
    #header .container {
        height: 100%;
    }
    #header .container .logo img {
        width: 130px;
        margin-top: 10px;
    }
    .main_more {
        font-size: 17px;
        padding: 15px 0;
        width: 200px;
    }
    .rodi_news .news_box .news_button {
        top: -50px;
    }
    .rodi_news .news_title {
        font-size: 18px;
    }
    .rodi_news .news_contents {
        font-size: 13px;
    }
    .sub_h {
        margin-bottom: 70px !important;
    }
    .sub_h:after {
        bottom: -25px;
        width: 80px;
        height: 4px;
    }
    .po_box .po_img .po_txt .po_brand {
        font-size: 20px;
        word-break: keep-all;
    }
    .po_box .po_img:hover .po_txt {
        font-size: 14px;
        font-weight: 500;
        word-break: keep-all;
    }
    .po_box .po_img .po_txt .po_span {
        font-size: 11px;
        text-align: center;
        word-break: keep-all;
    }
    .section_btn p {
        font-size: 30px;
        margin: 0 0 20px;
    }
    .section_btn span {
        padding: 12px 40px;
    }
    .po_box .po_a {
        width: 49.5%;
    }
    .po_box .po_a:nth-child(2n) {
        margin-right: 0;
    }
    .popup_box {
        width: 90vw;
        padding:30px;
    }
    h4 {
        font-size: 17px;
        padding: 10px 0px !important;
        width: 200px;
    }
    h5 {
        font-size: 18px;
    }
    h6 {
        font-size: 35px;
    }
    .popup_box .pop_flex .pop_img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .popup .close {
        width:50px;
        height:50px;
    }
    .popup .close:before, .popup .close:after {
        top: 24px;
        right: 5px;
    }
    .rodi_slide .swiper-wrapper {
        height: 60vh !important;
    }
    .slide_span {
        height: 60vh;
        object-fit: cover;
    }
    .rodi_slide .swiper-slide {
        padding: 0 30px 80px;
    }
}

@media screen and (max-width:768px) {
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 45px;
    }
    h3 {
        font-size: 18px;
    }
    h4 {
        font-size: 15px;
        padding: 6px 0px !important;
        width: 170px;
    }
    h5 {
        font-size: 15px;
    }
    h6 {
        font-size: 27px;
    }
    h7 {
        font-size: 50px;
        line-height: 60px;
    }
    h7 span {
        font-size: 21px;
    }
    h8 {
        font-size: 80px;
        line-height: 80px;
    }
    h9 {
        font-size: 18px;
    }
    .slide_txt .slide_more {
        padding: 12px 35px;
        width: 150px;
        font-size: 16px;
        margin-top: 20px;
    }
    .slide_txt .slide_more:after {
        font-size: 28px;
        margin-top: -2px;
    }
    .rodi_slide .swiper-button-prev,
    .rodi_slide .swiper-button-next {
        display: none;
    }
    .rodi_po {
        padding-top: 7vh;
    }
    .popup_box {
        height: 80vh;
    }
    .rodi_news .swiper-slide {
        width: 58%;
    }
    .rodi_news .swiper {
        height: 44vh;
    }
    .copy_big {
        flex-direction: column;
        align-items: flex-start;
    }
    .copy_big .copy_font {
        width: 70%;
        margin-bottom: 2vh;
    }
    .sub_h {
        margin-bottom: 60px !important;
        margin-top: 50px;
    }
    .sub_box a:nth-child(2n) {
        margin-right: 0% !important;
    }
    .sub_box a:nth-child(3) {
        margin-right: 1% !important;
    }
    .sub_box a {
        width: 49.5% !important;
    }
    .bgVideo img {
        width:auto;
    }
    .copy_right {
        font-size: 15px;
    }
}



