@charset "utf-8";

@font-face {
      font-family: 'bus';
      src: url('/img/web_font/font/bus.eot?78965006');
      src: url('/img/web_font/font/bus.eot?78965006#iefix') format('embedded-opentype'),
           url('/img/web_font/font/bus.woff?78965006') format('woff'),
           url('/img/web_font/font/bus.ttf?78965006') format('truetype'),
           url('/img/web_font/font/bus.svg?78965006#bus') format('svg');
      font-weight: normal;
      font-style: normal;
    }

    @keyframes lineActiveAnimation {
        0% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: center top;
        transform-origin: center bottom;
        }
    
        49% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: center top;
        transform-origin: center bottom;
        }
    
        50% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: center bottom;
        transform-origin: center top;
        }
    
        99% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: center bottom;
        transform-origin: center top;
        }
    
        100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: center bottom;
        transform-origin: center top;
        }
    }

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/*언어선택*/
.language-select {
    display: block;
    position: relative;
    cursor: pointer;
    border: 3px solid #e43a19;
    font-family: 'PreEB';
    width: 120px;
    height: 40px;
    line-height: 34px;
    color: #e43a19;
    padding-left: 10px;
    transition: all 0.2s;
    z-index: 9999;
}
.language-select>span::after{
    content: '';
    position: absolute;
    background: url(../../img/main/language.png);
    background-repeat: no-repeat;
    width: 15px;
    height: 8px;
    top: 50%;
    left: 86%;
    transform: translate(-50%, -50%);
}
.language-options {
    display: none;
    position: absolute;
    top: 100%;
    left: -3px;
    background-color: white;
    border: 3px solid #e43a19;
    z-index: 1000;
    width: 120px;
    border-top: none;
    transition: all 0.2s;
}
.language-options a {
    display: block;
    padding-left: 10px;
    color: black;
    text-decoration: none;
    font-family: 'PreSB';
    transition: all 0.2s;
}

.language-options a:hover {
    background-color: #e43a19;
    color: #fff;
}

.main-content{
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    top: -7rem;
    left: 0;
}
.swiper.mainswiper{
    width: 100%;
    height: 100%;
}

.swiper.mainswiper>.swiper-slide>img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide-inner{
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1600px;
    margin: 0 auto;
    align-items: center;
}
.slide-inner>.firstmain{
    max-width: 100%;
    margin: 0 auto;
}
.slide-right{
    width: 50%;
    padding-left: 50px;
}
.slide-right>h2{
    font-family: 'PreEB';
    font-size: 57px;
    color: #000000;
    margin-bottom: 20px;
}
.slide-right>p{
    font-family: 'PreEB';
    font-size: 45px;
    color: #000000;
    margin-bottom: 40px;
}
.slide-right>.moreview{
    width: 210px;
    height: 60px;
    border: 3px solid #000000;
    border-radius: 35px;
    font-family: 'PreEB';
    font-size: 22px;
    color: #000000;
    transition: all 0.2s ease;
    line-height: 55px;
    text-align: center;
    cursor: pointer;
}
.slide-right>.moreview:hover{
    background-color: #e43a19;
    border: 3px solid #e43a19;
    color: white;
}
.slide-left{
    width: 50%;
    text-align: center;
}
.slide-left>img{
    height: 450px;
}
.swiper.mainswiper>.swiper-button-prev{
    top: 80% !important;
    left: 50% !important;
    position: absolute !important ;
    transform: translate(-50%, -50%) !important;
}
.swiper.mainswiper>.swiper-button-next{
    top: 80% !important;
    left: 86% !important;
    position: absolute !important ;
    transform: translate(-50%, -50%) !important;
    background: url(../../img/main/button_next.png) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    width: 70px !important;
    height: 70px !important;
    transition: all 0.2s ease;
}
.swiper.mainswiper>.swiper-button-next:hover{
    background: url(../../img/main/button_nexthover.png) !important;
}
.swiper.mainswiper>.swiper-button-next:after{
    display: none;
}
.swiper.mainswiper>.swiper-button-prev{
    top: 80% !important;
    left: 81% !important;
    position: absolute !important ;
    transform: translate(-50%, -50%) !important;
    background: url(../../img/main/button_prev.png) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    width: 70px !important;
    height: 70px !important;
    transition: all 0.2s ease;
}
.swiper.mainswiper>.swiper-button-prev:hover{
    background: url(../../img/main/button_prevhover.png) !important;
}
.swiper.mainswiper>.swiper-button-prev:after{
    display: none;
}
#scroll_down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
}
#scroll_down .txt {
    font-size: 14px;
    color: #000000;
    font-family: 'PreSB';
    line-height: 1em;
    margin-bottom: 15px;
    display: block;
}
#scroll_down .fig {
    width: 25px;
    height: 39px;
    position: relative;
    border: 1px solid #000000;
    border-radius: 25px;
    margin: 0 auto;
}
#scroll_down .fig:after {
    display: inline-block;
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 1px;
    height: 10px;
    background: #e43a19;
    transform: scaleY(0);
    animation: lineActiveAnimation 1.5s cubic-bezier(0.445,0.05,0.55,0.95) infinite;
    margin-left: -1px;
}
.flowtext{
    width: 100%;
    position: relative;
    margin: 70px auto 200px auto;
}
.flowwrap{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.flowtext .flowwrap .group{
    /*background: linear-gradient(90deg, rgba(228,58,25,1) 0%, rgba(17,31,77,1) 100%);*/
    -webkit-background-clip: text;
    font-family: 'classic';
    font-size: 100px;
    color: white;
    animation: marquee 120s linear infinite;
    position: absolute;
    top: -70px;
    letter-spacing: 10px;
    display: inline-block;
    white-space: nowrap;
    text-shadow:
    -1px -1px 0 #e43a19, 
    1px -1px 0 #e43a19, 
   -1px 1px 0 #e43a19, 
    1px 1px 0 #e43a19;
    opacity: 0.3;
}
.flowtext .flowwrap .group.t1{
    animation-delay: -61s;
}
/*제품찾기*/
.product{
    width: 100%;
    position: relative;
}
.product::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 450px;
    background-color: #111f4d;
    z-index: -1;
    top: 470px;
}
.product-top{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}
.product-tit>h3{
    font-size: 55px;
    font-family: 'PreEB';
    color: #000;
    text-align: center;
    margin-bottom: 40px;
}
.product-tit>p{
    font-size: 24px;
    font-family: 'PreSB';
    color: #000;
    text-align: center;
    margin-bottom: 90px;
}
.product-flex{
    display: flex;
    align-items: center;
    position: absolute;
    width: 200px;
    bottom: 100px;
    right: 0;
    justify-content: center;
}
.product-flex>.swiper-right{
    background: url(../../img/main/product_right.png);
    width: 21px;
    height: 33px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}
.product-flex>.swiper-left{
    background: url(../../img/main/product_left.png);
    width: 21px;
    height: 33px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}
.swiper-pagination-fraction{
    width: auto !important;
}
.swiper-pagination-fraction>.bar{
    background: url(../../img/main/bar.png);
    width: 2px;
    height: 21px;
    display: inline-block;
}
.swiper.slide1>.swiper-wrapper>.swiper-slide{
    width: 525px;
    height: 550px;
    background: url(../../img/main/product_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 15px;
}
.swiper.slide1>.swiper-wrapper>.swiper-slide>.slideall{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
}
.swiper.slide1>.swiper-wrapper>.swiper-slide>.slideall>.proimg>img{
    display: block;
    margin: 0 auto 20px auto;
}
.swiper.slide1>.swiper-wrapper>.swiper-slide>.slideall>.protext>h4{
    font-family: 'PreEB';
    color: #000;
    font-size: 22px;
    text-align: center;
    margin-bottom: 15px;
}
.swiper.slide1>.swiper-wrapper>.swiper-slide>.slideall>.protext>p{
    font-family: 'PreSB';
    color: #000;
    font-size: 19px;
    line-height: 25px;
    text-align: center;
    margin-bottom: 20px;
}
.swiper.slide1>.swiper-wrapper>.swiper-slide>.slideall>.probtn{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.swiper.slide1>.swiper-wrapper>.swiper-slide>.slideall>.probtn>p{
    font-family: 'PreSB';
    font-size: 17px;
    color: #000;
    padding-left: 10px;
}
.swiper-pagination-current {
    display: inline-block !important;
    font-family: 'PreEB';
    font-size: 25px;
    padding: 0 20px 0 20px;
}
.swiper-pagination-total{
    font-family: 'PreEB';
    font-size: 25px;
    color: #cacaca;
    padding: 0 20px 0 20px;
}
/*서비스*/
.special{
    width: 100%;
    margin: 300px auto 0;
    position: relative;
}
.special::after{
    position: absolute;
    content: '';
    background-color: #f2f4f7;
    width: 1000px;
    height: 1000px;
    top: -10px;
    z-index: -1;
    border-radius: 100%;
    right: -190px;
}
.special-top{
    max-width: 1600px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 120px auto;
}
.special-left>h3{
    font-size: 55px;
    font-family: 'PreEB';
    color: #000;
    text-align: left;
    margin-bottom: 40px;
}
.special-left>p{
    font-size: 24px;
    font-family: 'PreSB';
    color: #000;
    text-align: left;
}
.special-right{
    display: flex;
    align-items: center;
    justify-content: center;
}
.special-right>.swiper-clickleft{
    background: url(../../img/main/special_left.png);
    width: 71px;
    height: 71px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all 0.2s ease;
}
.special-right>.swiper-clickright{
    background: url(../../img/main/special_right.png);
    width: 71px;
    height: 71px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 20px;
}
.special-right>.swiper-clickleft:hover{
    background: url(../../img/main/special_lefthover.png);
}
.special-right>.swiper-clickright:hover{
    background: url(../../img/main/special_righthover.png);
}
.swiper.slide2{
    margin-left: 150px !important;
}
.swiper.slide2>.swiper-wrapper>.swiper-slide{
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
    width: 650px;
    height: 520px;
    background-position: center;
    background-repeat: no-repeat;
}
.swiper.slide2>.swiper-wrapper>.swiper-slide>.serviceall>.toptext{
    position: absolute;
    top: 82%;
    left: 10%;
    width: 100%;
    transition: all 0.2s ease;
} 
.swiper.slide2>.swiper-wrapper>.swiper-slide>.serviceall>.toptext>h3{
    font-family: 'PreEB';
    color: #fff;
    font-size: 25px;
    transition: all 0.2s ease;
}
.swiper.slide2>.swiper-wrapper>.swiper-slide>.serviceall>.overlay{
    background-color: #111f4dc0;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.2s ease;
}
.swiper.slide2>.swiper-wrapper>.swiper-slide>.serviceall>.overlay>.hiddentext{
    position: absolute;
    top: 55%;
    left: 10%;
    transition: all 0.2s ease;
}
.swiper.slide2>.swiper-wrapper>.swiper-slide>.serviceall>.overlay>.hiddentext>h3{
    font-family: 'PreEB';
    color: #fff;
    font-size: 25px;
    margin-bottom: 20px;
    transition: all 0.2s ease;
}
.swiper.slide2>.swiper-wrapper>.swiper-slide>.serviceall>.overlay>.hiddentext>p{
    font-family: 'PreSB';
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 50px;
    transition: all 0.2s ease;
}
.swiper.slide2>.swiper-wrapper>.swiper-slide>.serviceall>.overlay>.servicebtn{
    display: flex;
    align-items: center;
    position: absolute;
    top: 80%;
    left: 10%;
    cursor: pointer;
    transition: all 0.2s ease;
}
.swiper.slide2>.swiper-wrapper>.swiper-slide>.serviceall>.overlay>.servicebtn>p{
    font-family: 'PreSB';
    color: #fff;
    font-size: 15px;
    padding-left: 10px;
    transition: all 0.2s ease;
}
.swiper.slide2>.swiper-wrapper>.swiper-slide:hover>.serviceall>.overlay{
    opacity: 1;
}
.swiper.slide2>.swiper-wrapper>.swiper-slide:hover>.serviceall>.toptext{
    opacity: 0;
}
.swiper.slide2>.swiper-wrapper>.swiper-slide:hover{
    border-radius: 20px;
}
/*공지사항*/
.notice{
    width: 100%;
    margin: 0 auto;
    background: url(../../img/main/notice_bg.jpg);
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 120px 0;
}
.notice-in{
    max-width: 1600px;
    margin: 0 auto;
}
.notice-in>h3{
    font-size: 55px;
    font-family: 'PreEB';
    color: #000;
    text-align: center;
    margin-bottom: 40px;
}
.notice-list{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
    justify-content: space-between;
}
.notice-list li{
    width: calc(28% - 20px);
    margin: 41px;
    display: inline-block;
    vertical-align: middle;
}
.notice-list>li>a:hover .listtit{
	text-decoration: underline;
    color: #fff;
}
.notice-list>li>a:hover .sc{
	transform: translate(-50%, -50%) scale(1.2); /* 원하는 크기로 조정하세요 */
}
.notice-list>li>a:hover .list-box{
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
.notice-list>li>a:hover>.notice-box{
    background-color: #b3b0a8;
}
.notice-box{
	height: 100%;
    overflow: hidden;
    border-radius: 15px;
    margin: 0;
    background: #fff;
    position: relative;
	border: 0;
    box-shadow: 2px 2px 8px 0px rgba(0,0,0,0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease, all 0.2s ease;
}
.notice-box>.notice-box-top{
	position: relative;
    overflow: hidden;
	padding-top: 55%;
}
.notice-box>.notice-box-top>.sc{
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
	object-fit: cover;
    width: 100%;
    height: 100%;
	transition: All 0.2s ease;
    -webkit-transition: All 0.2s ease;
    -moz-transition: All 0.2s ease;
    -o-transition: All 0.2s ease;
}
.notice-box-text{
    height: 200px;
}
.notice-box-text>.noti{
    font-family: 'PreEB';
    font-size: 18px;
    color: #e43a19;
    margin-bottom: 1rem;
    padding: 50px 0 0 50px;
}
.notice-box-text>.listtit{
    font-family: 'PreSB';
    font-size: 21px;
    color: #000;
    white-space: nowrap;
    padding: 0 0 0 50px;
}
/*공지사항보러가기*/
.noticeview{
    width: 100%;
    background-color: #ececeb;
    padding: 60px 0 60px 0;
}
.noticeview-in{
    max-width: 1600px;
    margin: 0 auto;
}
.noticeview-in>h4{
    font-family: 'PreEB';
    color: #000;
    font-size: 25px;
    text-align: center;
    margin-bottom: 25px;
}
.noticeview-in>.noticebtn{
    width: 200px;
    height: 60px;
    border: 3px solid #000;
    border-radius: 35px;
    font-family: 'PreEB';
    font-size: 21px;
    margin: 0 auto;
    display: block;
    transition: all 0.2s ease;
    position: relative;
    line-height: 55px;
    text-align: center;
    cursor: pointer;
}
.noticeview-in>.noticebtn:hover{
    background-color: #000;
    color: #fff;
}
.noticeview-in>.noticebtn:after{
    content: '';
    background: url(../../img/main/notice_arrow.png);
    position: absolute;
    width: 68px;
    height: 20px;
    top: 50%;
    left: 100%;
    transform: translate(-50%,-50%);
}

@media screen and (max-width: 1536px) {
    #header {width: 95%; padding: 0 40px;}
    .slide-inner{max-width: 90%;}
    .slide-right>h2{font-size: 45px;}
    .slide-right>p{font-size: 35px;}
    .slide-right>.moreview {width: 160px; height: 50px; border-radius: 25px; font-size: 20px; line-height: 46px;}
    .product-tit>h3{font-size: 50px;}
    .product-tit>p{font-size: 22px;}
    .special-left>h3{font-size: 50px;}
    .special-left>p{font-size: 22px;}
    .special::after{width: 920px; height: 930px; top: -20px;}
    .swiper.slide2>.swiper-wrapper>.swiper-slide>.serviceall>.toptext>h3{font-size: 22px;}
    .swiper.slide2>.swiper-wrapper>.swiper-slide>.serviceall>.overlay>.hiddentext>h3{font-size: 22px;}
    .swiper.slide2>.swiper-wrapper>.swiper-slide>.serviceall>.overlay>.hiddentext>p{font-size: 18px;}
    .notice-in>h3{font-size: 30px;}
    .title > h2{font-size: 30px;}
}

@media screen and (max-width: 1280px) {
    #wrap {min-width: auto;}
    #header .m-lnb-wrap {display: none;}
    .main-content {width: 100%;}
    .main-content .slide-inner {width: 95%;}
    .main-content .swiper-slide {background: #fff;}
    .main-content .swiper-slide > img {width: 100%;}
    .swiper.mainswiper>.swiper-button-next {left: 54% !important;}
    .swiper.mainswiper>.swiper-button-prev {left: 46% !important;}
    .slide-right>h2 {font-size: 40px;}
    .slide-right>p {font-size: 24px;}
    .slide-right>.moreview {width: 150px; font-size: 20px;}
    .product {margin-bottom: 200px;}
    .product::after {height: 340px;}
    .product-in {width: 95%; margin: 0 auto;}
    .product-in .swiper-wrapper {height: auto;}
    .product-tit>h3 {font-size: 46px; margin-bottom: 20px;}
    .product-tit>p {font-size: 22px; margin-bottom: 80px;}
    .swiper.slide1>.swiper-wrapper>.swiper-slide>.slideall>.protext>h4 {font-size: 20px;}
    .swiper.slide1>.swiper-wrapper>.swiper-slide>.slideall>.protext>p {font-size: 18px;}
    .special-in {width: 95%; margin: 0 auto;}
    .special-in .swiper-wrapper {height: auto;}
    .swiper.slide2 {margin-left: 0 !important;}
    .special-left>h3 {font-size: 46px; margin-bottom: 20px;}
    .special-left>p {font-size: 22px;}
    .special-top {margin-bottom: 80px;}
    .swiper.slide2>.swiper-wrapper>.swiper-slide>.serviceall>.overlay>.hiddentext>p {margin-bottom: 0;}
    .swiper.slide2>.swiper-wrapper>.swiper-slide>.serviceall>.overlay>.hiddentext {top: auto; left: 0; bottom: 0; padding: 40px;}
    .notice {padding: 120px 0 0;}
    .notice-in>h3 {font-size: 46px;}
    .foot-inner {width: 95%;}
}

@media screen and (max-width: 1024px) {
    .lnb {display: none;}
    #header .m-lnb-wrap {display: block;}
    .m-lnb-btn {display: block; color: #222;}
    .main-content {margin-top: 2rem; padding-top: 120px;}
    .snb-bg {display: none !important;}
    .gnb-overlay-bg {display: none !important;}
    #scroll_down {display: none;}
    .swiper.mainswiper>.swiper-button-next,
    .swiper.mainswiper>.swiper-button-prev {display: none;}
    .notice-list {width: 95%; justify-content: space-between; margin: 0 auto;}
    .notice-list li {width: calc(100% / 3 - 20px); margin: 0;}
    .foot-inner {text-align: center;}
    .foot-bottom>.other {display: none;}
    .foot-bottom>.infor {flex-wrap: wrap; justify-content: center;}
    .foot-bottom>.infor>.infor-p {margin-top: 10px;}
    .foot-bottom>.copy {text-align: center; margin-top: 30px;}
    .language-select{left: 30%;}
}

@media screen and (max-width: 768px) {
    .main-content .slide-inner {justify-content: center; flex-wrap: wrap; position: relative; transform: translate(0, 0); top: auto; left: auto;}
    .main-content .swiper-slide > img {display: none;}
    .slide-left>img {height: 250px;}
    .slide-right {width: 100%; text-align: center; margin-top: 30px; padding-left: 0;}
    .slide-right>h2 {font-size: 30px;}
    .slide-right>p {font-size: 20px;}
    .slide-right>.moreview {margin: 0 auto;}
    .product-flex {display: none;}
    .special-top {justify-content: center;}
    .special-left>h3 {text-align: center;}
    .special-left>p {text-align: center;} 
    .special-right {display: none;}
    .notice-list li {width: 100%;}
    .notice-box-text>.noti{font-size: 17px;}
    .notice-box-text>.listtit{font-size: 20px;}
    .language-select{left: 11%;}
}

@media screen and (max-width: 440px) {
    .side_btn > .side_con{
        width: 50px;
        height: 50px;
        border-radius: 5px;
        margin-bottom: 4px;
    }
    .side_btn > .side_con > a{
        text-align: center;
        font-size: 10px;
    }
    .side_btn > .side_con>a>img{
        display: none;
    }
    .scroll-top button{
        width: 50px;
        height: 50px;
    }
    .scroll-top{
        right: 23px;
    }
    .side_btn.fixed {
        bottom: 250px;
        opacity: 1;
    }
    .scroll-top.fixed{
        bottom: 190px;
    }
    .language-select{left: 8%;}
}

@media screen and (max-width: 425px) {
    #header {padding: 0 20px;}
    .slide-left {width: 100%;}
    .product-tit>h3 {font-size: 30px;}
    .product-tit>p {font-size: 18px;}
    .special-left>h3 {font-size: 30px;}
    .special-left>p {font-size: 18px;}
    .notice-in>h3 {font-size: 30px;}
    .foot-inner {padding: 40px 0;}
    .foot-inner > img {max-width: 120px;}
    .foot-bottom>.infor>.infor-p {width: 100%; margin: 0 0 10px; font-size: 14px;}
    .foot-bottom>.copy>h4 {font-size: 14px;}
    .language-select{left: 7%;width: 105px;height: 38px;font-size: 12px;}
    .language-options{width: 105px; left: -2px;}
    .notice-box-text>.noti{padding: 40px 0 0 25px;}
    .notice-box-text>.listtit{padding: 0 0 0 25px;}
    .notice-box-text{height: 160px;}
    .noticeview-in>h4{font-size: 20px;}
    .noticeview-in>.noticebtn{width: 180px;height: 50px;border-radius: 30px;font-size: 18px;line-height: 45px;}
}
@media screen and (max-width: 360px){
    .language-select{
        left: 5%;
        width: 88px;
        height: 30px;
        font-size: 11px;
        line-height: 24px;
        padding-left: 7px;
    }
}