@charset "utf-8";
/* TOURMUCH // Maker : H.J Jeon // E-Mail : jinia21@naver.com // Site : tourmuch.com */


/* 서브 공통 */
#container {
    position: relative;
    overflow: hidden;
    padding-inline: var(--padding-basic);
    padding-block: var(--padding-lg) calc(var(--padding-lg) * 2);
    font-size: clamp(1rem, 2vw, 1.125rem);
}

#container.popupver {
    padding-top: 0 !important;
}

h1.tit-h1 {
    position: relative;
    margin-bottom: 2rem;
    font-family: var(--font-point);
    font-size: clamp(2rem, 3vw, 3rem);
    text-align: center;
}

.popupver h1.tit-h1 {
    padding-top: 3rem;
    font-size: clamp(1.5rem, 3vw, 1.75rem);
}

h2.tit-h2 {
    position: relative;
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: var(--font-weight-semibold);
}

.basic-page .basic-page-box {
    position: relative;
}

.basic-page .basic-page-box:not(:first-child) {
    padding-top: 2rem;
    margin-top: 2rem;
}

.basic-page .basic-page-box:not(:first-child):before {
    position: absolute;
    top: 0;
    left: -500px;
    right: -500px;
    height: 1px;
    background-color: var(--color-line-light);
    content: '';
}

.jum-ul li {
    position: relative;
    padding-left: 15px;
    font-size: clamp(0.875rem, 3vw, 1rem);
    color: var(--color-gray-deep);
}

.jum-ul.text-size-lg li {
    font-size: clamp(1rem, 3vw, 1.25rem);
}

.jum-ul li:before {
    position: absolute;
    top: 8px;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: var(--color-line-basic);
    border-radius: 50%;
    content: '';
}

.jum-ul li:not(:first-child) {
    margin-top: 5px;
}

.guide-box {
    padding: 1rem;
    background-color: rgba(var(--color-box-basic-rgb),0.5);
    border-radius: 10px;
}

.guide-box h4 {
    margin-bottom: 0.5rem;
    font-size: clamp(1.125rem, 3vw, 1.25rem);
    font-weight: var(--font-weight-medium);
}

.guide-box p {
    font-size: clamp(0.875rem, 3vw, 1rem);
    color: var(--color-gray-deep);
}

.comment {
    font-size: clamp(0.875rem, 3vw, 1rem);
    color: var(--color-gray-deep);
}

@media screen and (min-width: 767px) {
    #container {
        padding-block: calc(var(--padding-lg) * 2) calc(var(--padding-lg) * 3);
    }

    .basic-page .basic-page-box:not(:first-child) {
        padding-top: 3rem;
        margin-top: 3rem;
    }

    .jum-ul li:not(:first-child) {
        margin-top: 0.5rem;
    }

    .guide-box {
        padding: 1rem 2rem;
    }
}

@media screen and (min-width: 1023px) {
    .jum-ul li:before {
        top: 10px;
    }

    .popupver h1.tit-h1 {
        position: relative;
        line-height: 100%;
        padding-block: 1.5rem;
        margin-bottom: 2rem !important;
        text-align: left;
    }

    .popupver h1.tit-h1:after {
        position: absolute;
        left: -50px;
        right: -50px;
        bottom: 0;
        height: 1px;
        background-color: var(--color-line-basic);
        content: '';
    }
}

@media screen and (min-width: 1239px) {
    .basic-page .basic-page-box:not(:first-child) {
        padding-top: 4rem;
        margin-top: 4rem;
    }
}

@media screen and (min-width: 1439px) {
    #container {
        padding-block: calc(var(--padding-lg) * 2.5) calc(var(--padding-lg) * 3);
    }

    h1.tit-h1 {
        margin-bottom: 4rem;
    }

    h2.tit-h2 {
        margin-bottom: 2rem;
        letter-spacing: -.5pt;
    }

    .basic-page .basic-page-box:not(:first-child) {
        padding-top: 5rem;
        margin-top: 5rem;
    }
}

@media screen and (min-width: 1639px) {
}


/* 서브 공통 // 탭버튼 */
.sub-gnb {
    margin-bottom: 2rem;
}

.sub-gnb ul li {
    width: auto;
}

.sub-gnb ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    padding-inline: 1.25rem;
    border: 1px solid var(--color-line-basic);
    color: var(--color-gray);
    border-radius: 50px;
}

.sub-gnb ul li a.active {
    border: none;
    background: linear-gradient(to right,  #00883f 0%,#6bad44 100%);
    color: var(--color-white);
    font-weight: var(--font-weight-medium);
}

@media screen and (min-width: 767px) {
    #container:not(.popupver) .sub-gnb ul {
        justify-content: center !important;
    }

    .sub-gnb ul li a {
        width: var(--tab-width);
        font-size: 1.125rem;
    }
}

@media screen and (min-width: 1023px) {
    #container:not(.popupver) .sub-gnb ul li a {
        height: 60px;
        border-radius: 60px;
    }
}

@media screen and (min-width: 1239px) {
    #container:not(.popupver) .sub-gnb {
        margin-bottom: 3rem;
    }
}


/* 서브 공통 // Table */
.basic-tbl {
    border-top: 2px solid var(--color-point);
    background-color: var(--color-white);
}

.basic-tbl th,
.basic-tbl td {
    padding: 0.5rem;
    border: 1px solid var(--color-line-light);
    font-size: inherit;
    vertical-align: middle;
    font-size: clamp(0.875rem, 3vw, 1rem);
}

.basic-tbl.mini-tbl th,
.basic-tbl.mini-tbl td {
    font-size: 0.875rem;
}

.basic-tbl thead th {
    background-color: rgba(var(--color-box-basic-rgb),0.3);
    font-weight: var(--font-weight-semibold);
}

.basic-tbl tbody td {
    color: var(--color-gray-deep);
}

.basic-tbl tbody th {
    background-color: rgba(var(--color-box-basic-rgb),0.3);
}

.basic-tbl.write-tbl tbody th {
    background-color: #5B809B;
    border-bottom: 1px solid #99b3c5;
    color: #fff;
}

.test-content .basic-tbl {
    border-top: 2px solid #364F64;
}

.basic-tbl.write-tbl thead th,
.test-content .basic-tbl thead th {
    background-color: #55748F;
    color: #fff;
}

@media screen and (min-width: 767px) {
    .basic-tbl th,
    .basic-tbl td {
        padding: 1rem;
    }

    .basic-tbl.write-tbl tbody th,
    .basic-tbl.write-tbl tbody td {
        padding-block: 0.5rem 1rem;
    }
}

@media screen and (min-width: 979px) {
}


/* 공공임대주택 소개 > 행복주택 소개 */
.happy-home-introduce {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 2rem 1rem;
    padding: var(--padding-basic);
    background-color: rgba(var(--color-box-basic-rgb),0.5);
    border-radius: 10px;
    text-align: center;
}

.happy-home-introduce .hhi-con dt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.happy-home-introduce .hhi-con dt .ico {
    width: 40%;
    max-width: 80px;
    font-size: 0;
}

.happy-home-introduce .hhi-con dt em {
    font-weight: var(--font-weight-semibold);
    font-size: clamp(1rem, 3vw, 1.25rem);
}

.happy-home-introduce .hhi-con dd {
    margin-top: 0.5rem;
    font-size: clamp(0.875rem, 3vw, 1rem);
    color: var(--color-gray);
}

.happy-home-introduce .hhi-con dd br {
    display: none;
}

@media screen and (min-width: 767px) {
    .happy-home-introduce {
        padding: var(--padding-lg);
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width: 1023px) {
    .happy-home-introduce {
        grid-template-columns: repeat(5, 1fr);
    }

    .happy-home-introduce .hhi-con dt {
        gap: 0.5rem;
    }

    .happy-home-introduce .hhi-con dd {
        margin-top: 1rem;
    }
}

@media screen and (min-width: 1239px) {
    .happy-home-introduce .hhi-con dd br {
        display: block;
    }
}


/* 공공임대주택 소개 > 청년임대주택(행복주택) 소개 */
.youth-home-introduce {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 0.875rem;
}

.youth-home-introduce .yhi-con {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    height: 150px;
    padding: 1rem;
    background: linear-gradient(135deg,  #686C71 0%,#7c8288 100%);
    color: var(--color-white);
    text-align: center;
    border-radius: 20px;
}

.youth-home-introduce .yhi-con:nth-child(1) {
    background: linear-gradient(135deg,  #2677c5 0%,#28b9c9 100%);
}

.youth-home-introduce .yhi-con:nth-child(2) {
    background: linear-gradient(135deg,  #FF7636 0%,#f6b545 100%);
}

.youth-home-introduce .yhi-con:nth-child(3) {
    background: linear-gradient(135deg,  #3E9E2F 0%,#48bc88 100%);
}

.youth-home-introduce .yhi-con:nth-child(4) {
    background: linear-gradient(135deg,  #650A73 0%,#9554c6 100%);
}

.youth-home-introduce .yhi-con span {
    font-size: clamp(2rem, 3vw, 2.5rem);
}

@media screen and (min-width: 767px) {
    .youth-home-introduce {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width: 1023px) {
    .youth-home-introduce {
        grid-template-columns: repeat(5, 1fr);
    }
}


/* 공공임대주택 소개 > 재개발·재건축 정비사업지구 내 청년임대주택 */
.introduce-airview .pic {
    padding: 1rem;
    background-color: var(--color-box-basic);
    border-radius: 0 0 1.5rem 1.5rem;
    font-size: 0;
}

.introduce-airview .pic img {
    border-radius: 1rem;
}


/* 청약안내 > 자격·조건 안내 */
.what-nohome .nohome-list {
    padding-block: 1rem;
    background-color: rgba(var(--color-black-rgb),0.03);
    border-radius: 1rem;
}

.what-nohome .nohome-list li:not(:first-child) {
    margin-top: 1rem;
}

@media screen and (min-width: 767px) {
    .what-nohome .nohome-list {
        padding-block: 2rem;
        padding-inline: 3rem !important;
    }
}


/* 청약안내 > 인터넷 청약신청 절차 */
.step-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 0.5rem;
}

.step-box .step-con {
    position: relative;
    padding: 1rem;
    border: 1px solid var(--color-line-basic);
    border-radius: 1rem;
    transition: .3s;
}

.step-box .step-con h3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 120%;
    margin-bottom: 1rem;
    font-size: clamp(1.125rem, 3vw, 1.25rem);
    font-weight: var(--font-weight-medium);
}

.step-box .step-con h3 .step-num {
    padding: 0 0.5rem;
    background-color: var(--color-point);
    color: var(--color-white);
    font-weight: var(--font-weight-regular);
    font-size: clamp(0.75rem, 3vw, 0.875rem);
    border-radius: 20px;
}

.step-box .step-con .txt-con {
    font-size: clamp(0.75rem, 2vw, 1rem);
    color: var(--color-gray);
}

@media screen and (min-width: 767px) {
    .step-box {
        grid-template-columns: repeat(3, 1fr);
    }

    .step-box .step-con h3 .step-num {
        padding: 0 1rem;
    }
}

@media screen and (min-width: 1023px) {
    .step-box {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (min-width: 1239px) {
    .step-box {
        gap: 1rem;
    }

    .step-box .step-con {
        padding: 2rem;
        text-align: right;
    }

    .step-box .step-con h3 {
        align-items: flex-end;
    }

    .step-box .step-con h3 .step-num {
        position: absolute;
        top: -3px;
        left: -3px;
        padding: 0.5rem 1rem;
        border-radius: 1rem 3px 1rem 3px;
    }
}


/* 찾아오시는 길 */
.root_daum_roughmap_landing {
    width: auto !important;
    margin-top: -20px !important;
}

.location-info,
.location-info .info-con:not(:first-child) {
    margin-top: 2rem;
}

.location-info .info-con h4 {
    --fa-primary-color: #124592;
    --fa-secondary-color: #28cec9;
    --fa-secondary-opacity: 1;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: var(--font-weight-semibold);
}

.location-info .info-con .ic {
    color: var(--color-gray-deep);
}

.location-info .subway .subway-list li:not(:first-child),
.location-info .bus .bus-list li:not(:first-child),
.location-info .car .car-list li:not(:first-child) {
    margin-top: 1rem;
}

.location-info .subway .subway-list li dl dt {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--color-basic);
    font-weight: var(--font-weight-medium);
}

.location-info .subway .subway-list li dl dt span.num {
    width: 24px;
    height: 24px;
    line-height: 24px;
    background-color: #0051A2;
    color: var(--color-white);
    text-align: center;
    border-radius: 50%;
}

.location-info .subway .subway-list li dl dt span.num.bg-sky {
    background-color: #00A2E2;
}

.location-info .subway .subway-list li dl dd {
    padding-left: 34px;
}

.location-info .bus .bus-list dl {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
}

.location-info .bus .bus-list dl dt {
    flex-shrink: 0;
    padding-top: 4px;
    color: var(--color-basic);
    font-weight: var(--font-weight-medium);
}

.location-info .bus .bus-list dl dd {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.location-info .bus .bus-list dl dd .bus-box {
    padding: 3px 10px;
    border: 1px solid var(--color-line-basic);
    border-radius: 4px;
    text-align: center;
}

.location-info .car .car-list dl dt {
    margin-bottom: 10px;
    color: var(--color-basic);
    font-weight: var(--font-weight-medium);
}

@media screen and (min-width: 767px) {
    .location-info {
        margin-top: 3rem;
    }

    .location-info .info-con:not(:first-child) {
        margin-top: 3rem;
        padding-top: 3rem;
        border-top: 1px solid var(--color-line-light);
    }

    .location-info .info-con {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .location-info .info-con h4 {
        flex-shrink: 0;
        width: 200px;
        margin-bottom: 0;
    }

    .location-info .info-con .ic {
        flex-grow: 1;
        padding-top: 7px;
    }
}

@media screen and (min-width: 1023px) {
    .location-info .info-con h4 {
        width: 250px;
    }

    .location-info .bus .bus-list dl {
        gap: 3rem;
    }
}

@media screen and (min-width: 1239px) {
    .location-info .info-con h4 {
        width: 300px;
    }

    .location-info .subway .subway-list li:not(:first-child),
    .location-info .car .car-list li:not(:first-child) {
        margin-top: 2rem;
    }

    .location-info .bus .bus-list dl dd .bus-box {
        min-width: 80px;
    }
}

@media screen and (min-width: 1439px) {
}


/* 휴대폰 인증 */
.phone-certify .ico {
    width: 30%;
    max-width: 150px;
}

.phone-certify .ico video {
    width: 100%;
}

.phone-certify .phone-guide {
    text-align: center;
}

.phone-certify .phone-guide strong {
    font-size: 120%;
}


/* 청약페이지 */
.subscription-test h3.h3-tit {
    margin-bottom: 2rem;
    letter-spacing: -.5pt;
}

.subscription-content h3 {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: -.25pt;
}

.subscription-content h3 span {
    font-size: 80%;
    font-weight: var(--font-weight-regular);
    color: var(--color-gray-deep);
}

.s-check-txt {
    position: relative;
    padding-left: 100px;
}

.s-check-txt h4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: var(--color-point);
    color: #fff;
    text-align: center;
    border-radius: 50%;
    font-weight: var(--font-weight-semibold);
    font-size: 1.125rem;
}

.s-check-txt dl {
    display: table;
    width: 100%;
    border: 1px solid rgba(0,0,0,0.1);
    background-color: #fff;
    font-size: 1rem;
}

.s-check-txt dl:not(:first-child) {
    margin-top: 5px;
}

.s-check-txt dl dt {
    display: table-cell;
    width: 120px;
    padding: 10px;
    background-color: #333;
    color: #fff;
    text-align: center;
    font-weight: var(--font-weight-medium);
}

.s-check-txt dl dd {
    display: table-cell;
    padding: 10px 20px;
}

.s-input-area {
    margin-top: 50px;
}

.s-input-area h4 {
    position: relative;
    margin-bottom: 20px;
}

.s-input-area h4 em {
    display: block;
    font-size: 1.25rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-blue);
}

.s-input-area h4 small {
    display: block;
    margin-top: 5px;
    color: var(--color-gray);
    font-size: 0.875rem;
    font-weight: var(--font-weight-regular);
}

.s-input-area h4 .right-btnbox {
    position: absolute;
    top: calc(50% - 15px);
    right: 0;
    font-weight: var(--font-weight-medium);
}

.s-input-area .plus-minus-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.s-input-area .plus-minus-box a {
    height: 34px;
    line-height: 32px;
    padding: 0 20px;
    margin: 0 3px;
    border: 1px solid var(--color-line-basic);
    background-color: #fff;
    color: var(--color-gray);
    border-radius: 17px;
    font-size: 14px;
}

.s-input-area .guide-comment {
    font-size: 0.875rem;
    color: var(--color-gray-deep);
}

.pledge-terms {
    color: var(--color-gray-deep);
}

.pledge-terms strong {
    color: var(--color-basic);
}


/* 연습하기 // 사회초년생 */
.freshman-choice {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 20px;
    border: 1px solid rgba(var(--color-black-rgb),0.1);
    border-bottom-color: var(--color-line-light);
    border-right-color: var(--color-line-light);
    box-shadow: inset 3px 7px 20px rgba(var(--color-black-rgb),0.05);
    border-radius: 10px;
}

.freshman-choice h4 {
    flex-shrink: 0;
    width: 200px;
    margin-bottom: 10px;
    color: var(--color-point);
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    text-align: center;
}

.freshman-choice ul {
    flex-grow: 1;
}

.freshman-choice ul li {
    width: 32%;
    padding: 5px;
}

.freshman-choice ul li input {
    display: none;
}

.freshman-choice ul li input + label {
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px;
    border: 1px solid rgba(var(--color-black-rgb),0.1);
    background-color: var(--color-background);
    border-radius: 5px;
    cursor: pointer;
}

.freshman-choice ul li input + label strong {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.freshman-choice ul li input + label strong span.ico {
    color: yellow;
    font-size: 1.5rem;
    opacity: 0;
}

.freshman-choice ul li input + label p {
    font-size: 0.875rem;
    color: var(--color-gray);
}

.freshman-choice ul li input:checked + label {
    background-color: var(--color-point);
    color: var(--color-white);
}

.freshman-choice ul li input:checked + label strong span.ico {
    opacity: 1;
}

.freshman-choice ul li input:checked + label p {
    color: var(--color-white);
}


/* 연습하기 // 서약서 */
.pledge h5 {
    margin-bottom: 20px;
}

.pledge h5 em {
    display: block;
    font-size: 1.25rem;
    font-weight: var(--font-weight-medium);
}

.pledge h5 small {
    display: block;
    margin-top: 5px;
    color: var(--color-gray-deep);
    font-weight: var(--font-weight-regular);
    font-size: 0.875rem;
}

.pledge .pledge-box {
    padding: 20px;
    border: 1px solid var(--color-line-basic);
    background-color: #fff;
    font-size: 0.875rem;
    border-radius: 1rem 1rem 0 0;
}

.pledge .pledge-box.h300px {
    height: 300px;
}

.pledge .pledge-con:not(:first-child) {
    margin-top: 30px;
}

.agree-check-area {
    padding: 1rem;
    border: 1px solid var(--color-line-basic);
    border-top: none;
    background-color: rgba(var(--color-box-basic-rgb),0.5);
    text-align: right;
    border-radius: 0 0 1rem 1rem;
}

.agree-check-area {
    font-size: 1rem;
    color: var(--color-gray-deep);
}


/* 연습하기 // 청약완료 */
.subscription-complete {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
}

.subscription-complete .ico {
    width: 30%;
    max-width: 150px;
}

.subscription-complete .ico video {
    width: 100%;
}

.subscription-complete .txt {
    text-align: center;
}

.subscription-complete .txt em {
    display: block;
    font-size: 1.75rem;
    font-family: var(--font-point);
}

.subscription-complete .txt span {
    font-size: 0.875rem;
}


/* 청약 연습 스탭 */
.st-step {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.st-step:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background-color: var(--color-box-basic);
    box-shadow: inset 1px 2px 3px rgba(var(--color-black-rgb),0.05);
    border-radius: 8px;
    content: '';
}

.st-step .sts-con {
    position: relative;
    width: 250px;
}

.st-step .sts-con dt {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: -12px;
    margin-bottom: 0.5rem;
}

.st-step .sts-con dt .circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    aspect-ratio: 1 / 1;
    background: var(--color-gray);
    background: linear-gradient(135deg,  #A79F99 0%,#b7bec9 100%);
    color: var(--color-white);
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
}

.st-step .sts-con dt em {
    font-weight: var(--font-weight-medium);
    color: var(--color-gray);
}

.st-step .sts-con dt .back-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: var(--color-gray);
    color: var(--color-white);
    font-size: 1rem;
    border-radius: 1rem;
    transition: .3s;
}

.st-step .sts-con dt .back-btn:hover {
    background-color: var(--color-point);
}

.st-step .sts-con dd {
    line-height: 130%;
    font-size: 0.875rem;
    color: var(--color-gray);
    opacity: 0.6;
}

.st-step .sts-con.active dt .circle {
    background: linear-gradient(135deg,  #124592 0%,#179dd7 100%);
}

.st-step .sts-con.active dt em {
    font-weight: var(--font-weight-semibold);
    color: var(--color-basic);
}

.st-step .sts-con.active dd {
    opacity: 1;
}




/* ------------------------------------------------------------ */



@media screen and (min-width: 639px) {
}

@media screen and (min-width: 767px) {
}

@media screen and (min-width: 1023px) {
}

@media screen and (min-width: 1239px) {
}

@media screen and (min-width: 1439px) {
}

@media screen and (min-width: 1640px) {
}

@media screen and (min-width: 1840px) {
}