@charset "utf-8";
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
/* @import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap'); */

/* base */
html, body {
  width : 100%;
  height : 100%;
  font-family: Arial, sans-serif;
}
html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video{margin:0;padding:0;border:0}
body,input,select,textarea{
  font-family: 'Nanum Gothic', sans-serif;
}
.cursor{cursor:pointer}
a{text-decoration:none;cursor:pointer}
button, input{outline: 0}
.cutString{width:98%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.scroll {
    max-width: 100%; /* 최대 너비 설정 */
    overflow-x: auto;  /* 가로 스크롤 활성화 */
    white-space: nowrap; /* 텍스트가 한 줄로 나가도록 설정 */
    -webkit-overflow-scrolling: touch; /* 터치스크롤 부드럽게 */
}
.scroll::-webkit-scrollbar {
    display: none; /* 스크롤바 숨기기 */
}
.relative{position:relative}
/* breadcrumb */
.breadcrumb{color:#333;font-size:1rem;margin:0;padding:0;border:0}
.breadcrumb .li:after{font-family:FontAwesome;color:#9b9b9b;content: "\f105";padding:0 2px 0 8px}
.breadcrumb a{transition:0.2s}
.breadcrumb a:hover{color:#777}
.breadcrumb>li{display:inline-block;word-break:break-all}
.breadcrumb .active{color:#777;font-size:0.9rem}
input:disabled {
  background-color: #f0f0f0!important;
  color: #999!important;
  cursor: not-allowed;
}
.alert{
  position: fixed;
  top:1rem;
  right:0;
  width:380px;
  min-height: 40px;
  background-color: #cd2122;
  border-radius: 4px;
  color:#fff;
  z-index: 1000;
  -webkit-animation-name: alert;
  -webkit-animation-duration: 0.3s;
  animation-name: alert;
  animation-duration: 0.3s;
}
/* Safari 4.0 - 8.0 */
@-webkit-keyframes alert {
  0%   {background-color:#cd2122; right:-380px; top:1rem;}
  90% {background-color:#cd2122; right:0px; top:1rem;}
  100% {background-color:#cd2122; right:2rem; top:1rem;}
}
/* Standard syntax */
@keyframes alert {
  0%   {background-color:#cd2122; right:-380px; top:1rem;}
  90% {background-color:#cd2122; right:2rem; top:1rem;}
  100% {background-color:#cd2122; right:0px; top:1rem;}
}
.alert .problem, .alert .close{
  height: 40px;
}
.alert button{
  width: 40px;
  height: 40px;
  float: left;
  font-size: 1.6rem;
  background-color: #cd2122;
  border-radius: 4px;
  color:#fff;
  border: 0;
  padding: 0;
  line-height: 46px;
  cursor: pointer;
}
.alert button:hover{
  background-color: #bf1819;
}
.alert .massage, .notice .massage{
  font-size: 1rem;
  padding:9px 5px
}
.notice{
  position: fixed;
  top:1rem;
  right:0;
  width:380px;
  min-height: 40px;
  background-color: #6699cc;
  border-radius: 4px;
  color:#fff;
  z-index: 1000;
  -webkit-animation-name: notice;
  -webkit-animation-duration: 0.3s;
  animation-name: notice;
  animation-duration: 0.3s;
}
.no-img {
    position: relative;
    width: 100%; /* 원하는 너비 */
    background-color: #f0f0f0; /* 배경색 */
    display: flex;
    align-items: center;
    justify-content: center;
}
.no-img::before {
    content: "\f0f7"; /* Font Awesome Unicode */
    font-family: FontAwesome; /* Font Awesome 폰트 */
    font-size: 8vh; /* 아이콘 크기 */
    color: #bdbdbd; /* 아이콘 색상 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}  
/* Safari 4.0 - 8.0 */
@-webkit-keyframes notice {
  0%   {background-color:#6699cc; right:-380px; top:1rem;}
  90% {background-color:#6699cc; right:0px; top:1rem;}
  100% {background-color:#6699cc; right:2rem; top:1rem;}
}
/* Standard syntax */
@keyframes notice {
  0%   {background-color:#6699cc; right:-380px; top:1rem;}
  90% {background-color:#6699cc; right:2rem; top:1rem;}
  100% {background-color:#6699cc; right:0px; top:1rem;}
}
.notice .problem, .notice .close{
  height: 40px;
}
.notice button{
  width: 40px;
  height: 40px;
  float: left;
  font-size: 1.6rem;
  background-color: #6699cc;
  border-radius: 4px;
  color:#fff;
  border: 0;
  padding: 0;
  line-height: 46px;
  cursor: pointer;
}
.notice button:hover{
  background-color: #6699cc;
}
/* button checkbox and radio */
.ha-label [type="checkbox"], .ha-label [type="radio"] {
    display:none;
}
.ha-span {
    display:inline-block;
    border: none;
    background-color: #fff;
    padding:6px 18px;
    margin: 0px 2px 0px 2px;
    text-align: center;
    transition: 0.1s;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: 0;}
.ha-span:hover {
  opacity:0.90;
  outline: 0;
}
:checked + .ha-span {
  color: #ffffff;
  background:#000;
}
.ha-span.check:before{
  font-family: "Material Icons";
  content: "\e5ca";
  vertical-align: middle;
}

/* button checkbox, radio and input, select, textarea */
.main .ha-label [type="checkbox"], .main .ha-label [type="radio"] {
    display:none;
}
.main .ha-span {
display:inline-block;
min-width: 100px;
color: #333;
background-color: #fff;
margin: 0 4px 7px 0;
padding:8px 18px;
text-align: center;
font-size: 0.9rem;
transition: 0.1s;
cursor: pointer;
border: 1px solid #ddd;
border-radius: 3px;
outline: 0;
white-space:nowrap;
}
.main .ha-span:hover {
opacity:0.90;
border-color: #000;
}
:checked + .ha-span {
color: #ffffff;
background:#000;
}
.checkItems::after {
content: " *";
color: rgb(255, 0, 9);
}
.main .ha-select{
width: 100%;
padding: 9px 6px 10px 6px;
border: 1px solid #ddd;
border-radius: 3px;
font-size: 13px;
color: #333;
background-color: #fff;
outline: 0;
}
.main .ha-select:hover, .main .ha-select:focus {
border-color: #000;
}
.main .ha-input{
width: 120px;
padding: 7px;
border: 1px solid #ddd;
border-radius: 3px;
font-size: 13px;
color: #333;
background-color: #fff;
outline: 0;
}
.main .ha-input:hover, .main .ha-input:focus {
border-color: #000;
}
.main .ha-textarea{
width: 100%;
padding: 8px;
border: 1px solid #ddd;
border-radius: 3px;
font-size: 13px;
color: #333;
background-color: #fff;
outline: 0;
}
.main .ha-textarea:hover, .main .ha-textarea:focus{
border-color: #000;
}
/* 기본 라디오 버튼 숨기기 */
.main .ha-span2[type="radio"], .main .ha-span2[type="checkbox"] {
display: none;
}
/* 커스텀 라디오 버튼 스타일 */
.main .ha-span2[type="radio"] + label, .main .ha-span2[type="checkbox"] + label {
position: relative;
padding: 3px 3px 3px 25px;
cursor: pointer;
color: #333;
}
.main .ha-span2[type="radio"]:checked + label::before, .main .ha-span2[type="checkbox"]:checked + label::before {
content: '\2611'; /* ✔ 체크된 라디오 버튼을 위한 특수문자 */
position: absolute;
left: 0;
top: 0;
font-size: 19px;
}
.main .ha-span2[type="radio"]:not(:checked) + label::before, .main .ha-span2[type="checkbox"]:not(:checked) + label::before {
content: '\25CB'; /* ○ 빈 원 (체크되지 않은 라디오 버튼) */
position: absolute;
left: 0;
top: 0;
font-size: 19px;
}
.main .ha-label2{
display: inline-block;
}
/* End button checkbox, radio */
/* checkbox */
.check-wrap{
padding:5px 0;
}
.check-wrap .container {
position: relative;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.check-wrap .container input {
position: absolute;
opacity: 0;
cursor: pointer;
}
.check-wrap .checkmark {
position: absolute;
top: 0;
left: 0;
height: 15px;
width: 15px;
background-color: #eee;
border-radius: 3px;
}
.check-wrap .container:hover input ~ .checkmark {
background-color: #ccc;
}
.check-wrap .container input:checked ~ .checkmark {
background-color: #000;
}
.check-wrap .checkmark:after {
content: "";
position: absolute;
display: none;
}
.check-wrap .container input:checked ~ .checkmark:after {
display: block;
}
.check-wrap .container .checkmark:after {
left: 5px;
top: 1px;
width: 5px;
height: 10px;
border: solid white;
border-width: 0 2px 3px 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
.check-wrap .name {
color: #666;
padding-left: 25px;
vertical-align: text-bottom;
}
/* End checkbox */

/* side menu */
.sidebar{
  position: fixed;
  z-index: 5;
  top:0;
  right:-300px;
  width:300px;
  height:100%;
  background-color: #242c39;
  overflow: auto;
  transition: 0.3s;
}
.side-open{
  right:0!important;
}
.sidebar .sidebar-top{
  color:#eee;
  padding: 27px 20px;
}
.sidebar .sidebar-top img{
  width:40px;
}
.sidebar .sidebar-top .text, .sidebar .sidebar-top .text-login{
  font-size: 14px;
}
.sidebar .sidebar-top .text-login{
  margin-top: 9px;
}
.sidebar .sidebar-top .text .section{
  margin-left: 5px;
  font-size: 11px;
  padding:2px 4px 1px 4px;
  color:#e0aee8;
  border: 1px solid #e0aee8;
  border-radius: 50px;
  opacity: 0.7;
}
.sidebar .sidebar-top .text .email{
  margin-top: 5px;
  font-size: 11px;
  color:#9ba8be;
}
.sidebar .sidebar-top .user-photo{
  border-radius: 100%;
}
.sidebar .sidebar-ul{
  font-size: 0.9rem;
  color: #9ba8be;
}
.sidebar .sidebar-ul li{
  padding:14px 24px;
  cursor: pointer;
}
.sidebar .sidebar-ul li:hover{
  background-color: #1d2532;
}
.sidebar .sidebar-ul .fa{
  width:28px;
}
.sidebar .sidebar-ul .active, .sidebar .sidebar-ul .active:hover{
  background-color:#1d2532;
  color: #fff;
}
.new-badge {
    background: #ff0000;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    padding: 1px 5px 1px 5px;
}
.sidebar .close{
  position: absolute;
  top:5px;
  right:5px;
  font-size: 35px;
  cursor: pointer;
}
/* video */
#videoModal{
  z-index: 4;
  position:fixed;
  top:10%;
  left:50%;
  width:600px;
  background-color: #fff;
  transform:translateX(-50%); -ms-transform:translateX(-50%);
}
.video-container{
  position:relative;
  padding-bottom:56.25%;
  padding-top:20px;
  height:0;
  overflow:hidden;
  width:100%
}
.video-container iframe,.video-container object,.video-container embed{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%
}
#videoModal .close-bt{
  position: absolute;
  bottom:-100px;
  width:100%;
  height:100px;
  text-align: center;
  color:#fff;
  cursor: pointer;
}
#videoModal .close-bt i{
  font-size: 45px;
}
/* End video */

/*
.video-button-small{background-color:rgba(44, 62, 80, 0.4);border:none;color:#ffffff;padding-left:8px;text-align:center;font-size:13px;transition:0.3s;cursor:pointer;border-radius:3px;outline:0;width:30px;height:30px;}
.video-container{position:relative;padding-bottom:56.25%;padding-top:30px;height:0;overflow:hidden;width:100%}
.video-container iframe,.video-container object,.video-container embed{position:absolute;top:0;left:0;width:100%;height:100%}
*/
/* login */
#modal{
  z-index: 4;
  position:fixed;
  top:10%;
  left:50%;
  width:400px;
  background-color: #fff;
  transform:translateX(-50%); -ms-transform:translateX(-50%);
}
.logjoin-modal .top{
  overflow: hidden;
}
.logjoin-modal form input{
  padding-left: 32px;
}
.logjoin-modal form i{
  position: absolute;
  font-size: 17px;
  opacity: 0.8;
  top: 11px;
  left: 8px;
  color: #999;
}
.logjoin-modal .social img{
  position: absolute;
  width:22px;
  opacity: 0.8;
  top: 12px;
  left: 16px;
  color: #999;
}
.placeholder{
  color:rgb(149, 147, 147);
  position: absolute;
  top:50%;
  right:15px;
  transform: translateY(-50%);
}
/* End login */

/* top menu pc mobile 동일*/
.nav-wrap {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    height:80px;
    background-color: #fff;
    z-index: 1;
}
/* 크롬, 사파리에서 스크롤바 숨김 */
.nav-wrap::-webkit-scrollbar {
  display: none;
}
/* "홈" 메뉴 왼쪽 정렬 */
.nav-wrap .home {
  margin-right: auto;
}
/* 기본 메뉴 스타일 */
.nav-wrap li {
  flex: none;
  line-height: 80px;
  list-style: none;
}
.nav-wrap a {
  display: block;
  padding: 0px 15px;
  text-decoration: none;
  color: black;
  font-size: 15px;
}
.nav-wrap .logo{
  width:60px;
}
.nav-wrap .user-info{
  height: 100%;
  font-size:13px;
  cursor: pointer;
  margin-left: 38px;
}
.nav-wrap .user-info .user-photo{
  width:26px;
  border-radius: 100%;
  position: absolute;
  top:26px;
  left:-32px;
}
.nav-wrap .user-info i{
  position: absolute;
  top:26px;
  left:-26px;
  color:#999;
}
.nav-wrap .active, .nav-wrap a:hover {
  color:#0074EE;
}
.nav-wrap .active:after{
  display: block;
  content: '';
  clear: both;
  margin-top: -26px;
  border-bottom: 2px solid #0074EE;
}
/* 로그아웃 회원정보 수정 드랍다운 */
.nav-wrap .myinfo-dropdown{
  z-index:4;
  position: absolute;
  width:150px;
  height: 90px;
  top:65px;
  right:10px;
  background-color: #fff;
  border: 1px solid #eee;
}
.nav-wrap .myinfo-dropdown:before{
  content: "";
  width: 12px;
  height: 12px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  top: -7px;
  right: 30px;
  transform: rotate(45deg);
  border-top: 1px solid rgb(212, 212, 212);
  border-left: 1px solid rgb(212, 212, 212);
}
.nav-wrap .dropdown-hover .myinfo-dropdown a{
  width:100%;
  height: 50%;
  line-height: 45px;
  font-size: 0.9rem;
  color: #666;
  padding:0 0 0 15px;
  text-align: left;
}
.nav-wrap .dropdown-hover .myinfo-dropdown a:first-child{
  border-bottom: 1px solid #eee;
}
.nav-wrap .myinfo-dropdown a:hover{
  background-color: #fff;
  color:#0074EE;
}
.nav-wrap .myinfo-dropdown a i{
  font-size: 15px;
  color:#999;
  float: right;
  padding:15px 8px 0 0;
}
.nav-wrap .dropdown-hover .myinfo-dropdown{
  display: none;
}
.nav-wrap .dropdown-hover:hover .myinfo-dropdown{
  display:block;
}

/* confrim */
.confirm{
    z-index: 7;
    width:300px;
    position:fixed;
    top:20%;
    left:50%;
    transform:translateX(-50%); -ms-transform:translateX(-50%);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 30px;
    border-radius: 8px;
  }
  .confirm ul{
    padding: 7px;
    border-radius: 5px;
    font-size: 0.9rem;
    list-style-type:none;
    background-color: #fff;
  }
  .confirm ul li{
    position: relative;
    text-align: center;
    line-height: 30px;
    padding:9px 0;
    cursor: pointer;
  }
  .confirm.fee ul li{
    text-align: left;
    padding: 7px 12px;
  }
  .confirm ul li:not(:last-child){
    border-bottom: 1px solid #f1f1f1;
  }
  .confirm ul .fa{
    position: absolute;
    left:20px;
    color: #666;
    padding-top: 3px;
  }
  .confirm .close-bt{
    position: absolute!important;
    bottom:-50px;
    left: 0;
    width:100%;
    height: 50px;
    line-height: 40px;
    font-size: 2.5rem;
    text-align: center;
    color: #fff;
    cursor: pointer;
  }
  /* End confrim */
  
/* 큰 화면에서 정렬 유지 */
@media (min-width: 992px) {
  .nav-wrap {
    justify-content: flex-end; /* 기본적으로 오른쪽 정렬 */
  }
}
/* bars 메뉴 보이고 기존 메뉴 우측 공간 확보 */
@media (max-width:992px){
  .nav-wrap .bars {
    position: absolute;
    width: 50px;
    height: 60px;
    right: 0px;
    top: 0px;
    background-color: #fff;
  }
  .nav-wrap .bars .material-icons {
    padding-top: 13px;
    font-size: 28px;
  }  
  .nav-wrap {
    width: calc(100% - 50px);
    height: 60px;
  }
  .nav-wrap li{
    line-height: 60px;
  }
  .nav-wrap .logo{
    width:35px;
  }
  .nav-wrap a {
    font-size: 13px;
    padding: 0px 10px;
  }
  .nav-wrap .user-info .user-photo{
    top:15px;
  }
}
/* End top menu */


/* search jquery autocomplete */
.ui-menu{ /* ul */
  padding:10px!important;
  max-height: 300px!important;
  overflow: auto;
  border: 0;
}
.ui-widget.ui-widget-content {
  border: 0!important;
  box-shadow:0 1px 3px 0 rgba(0,0,0,0.16),0 1px 5px 0 rgba(0,0,0,0.12)
}
.ui-helper-hidden-accessible{
  border: 0;
}
.ui-menu-item{ /* 검색어 li */
  padding:10px 0;
  color:#666;
  font-size: 1rem;
  font-weight: bold;
}
.ui-menu-item:not(:last-child){ /* 검색어 li  마지막 보더 제외*/
  border-bottom: 1px solid #eee;
}
.ui-menu-item .ui-menu-item-wrapper.ui-state-active { /* icon hover */
  background: transparent!important;
  border: 0;
  margin:0;
}
.ui-menu-item-wrapper{
  width:22px;
  padding:0!important; /* 검색어 하이라이트 간격 제거 */
} /* icon */
/* End search jquery autocomplete */

/* 로딩바 매물 보기 */
.spinner-full-screen {
  width: 100px;
  height: 22px;
  border: 0;
  text-align: center;
  position: fixed;
  margin-left: -40px;
  margin-top: -24px;
  left: 50%;
  top: 50%;
  z-index: 4;
}
.spinner-full-screen > div {
  width: 18px;
  height: 18px;
  background-color: #44a1f8;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner-full-screen .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.spinner-full-screen .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}
/* 로딩바 매물 보기  마침 */


/* 매물 상세 보기 */
/* End 매물 상세 보기 */
#propertyDiv{
  position:fixed;
  overflow: auto;
  bottom:-100%;
  width:100%;
  height:100%;
  background-color:#fff;
  transition:0.2s;
  z-index:3;
}
/* End base */

/* footer */
footer{
  font-size: 13px;
}
footer .top{
  margin-bottom: 15px;
  background-color: #3d3d3d;
}
footer .top ul{
  display: block;
  list-style: none;
  list-style-type: none;
  padding:10px 0;
}
footer .top ul li{
  display: inline-block;
  margin:0 35px 0 0;
  cursor:pointer;
}

footer .bottom ul{
  list-style: none;
  list-style-type: none;
}
footer .bottom ul li{
  padding:2px 0;
}
footer ul.middle ul.inner-ul li{
  display: inline-block;
}
footer .floor{
  padding:10px 0;
  margin-bottom: 7px;
  text-align: center;
}
/*****************************************************
* // response
******************************************************/
@media (max-width:600px){
  #modal{
    width:100%;
    height: 100%;
    top:0;
    transition: 0.5s;
  }
  #videoModal{
    top:0;
    left:0;
    width:100%;
    transform:translateX(0%); -ms-transform:translateX(0%);
  }
  .logjoin-modal .top{
    position: absolute;
    top: 0;
    width: 100%;
    height: 50px;
    z-index: 2;
  }
  .logjoin-modal .main{
    overflow:scroll;
    height: 100%;
    margin-top:50px;
    padding-bottom:50px;
  }
  .logjoin-modal .top{
    padding:12px!important;
    background-color: #0074EE;
    color:#fff;
  }
  .logjoin-modal .top i{
    margin-top: 0!important;
  }
  .logjoin-modal .top h4{
    font-size:17px;
  }
  .alert, .notice{
    width:100%;
    top:0;
    left:0;
    border-radius: 0;
  }
  /* Safari 4.0 - 8.0 */
  @-webkit-keyframes alert {
    0%   {background-color:#cd2122; right:-380px; top:0px;}
    100% {background-color:#cd2122; right:1rem; top:0px;}
  }
  /* Standard syntax */
  @keyframes alert {
    0%   {background-color:#cd2122; right:-380px; top:0px;}
    100% {background-color:#cd2122; right:1rem; top:0px;}
  }
  /* Safari 4.0 - 8.0 */
  @-webkit-keyframes notice {
    0%   {background-color:#6699cc; right:-380px; top:0px;}
    100% {background-color:#6699cc; right:2rem; top:0px;}
  }
  /* Standard syntax */
  @keyframes notice {
    0%   {background-color:#6699cc; right:-380px; top:0px;}
    100% {background-color:#6699cc; right:0px; top:0px;}
  }
  .alert button{
    border-radius: 0;
  }
  .sidebar .sidebar-ul li:hover{
    background-color: inherit;
  }
  footer{
    font-size: 11px;
  }
  footer .top{
    margin-bottom: 7px;
  }
  footer .top ul{
    padding:5px 0;
  }
  footer .top ul li{
    margin:0 3px 0 0;
  }
  footer .floor{
    padding:3px 0;
    margin-bottom: 5px;
    text-align: center;
  }
}
@media (max-width:992px) and (min-width:1px){
    .nav-wrap .active:after{
        margin-top: -20px;
    }
}
@media (max-width:1440px) and (min-width:993px){
}
@media (min-width:1441px){
}
