@import url('header.css');
@import url('footer.css');

@import url('frames/main.css');
@import url('frames/location.css');
@import url('frames/contact.css');
@import url('frames/accordion.css');

.slider_control {
    display: flex;
    justify-content: end;
    gap: 10px;
}


.head_frame {
    display: flex;
    flex-direction: column;
    height: calc(100% - 81px);
}


.head_frame {
    display: flex;
    flex-direction: column;
    height: calc(100% - 161px);
    background: var(--color-dark);
    color: var(--color-font-light);
    padding: 40px 26px;
    padding-right: 0;
    gap: 40px;
}

.head_frame > .frame_a {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-right: 26px;
}

.head_frame > .frame_a > .title {
    color: var(--color-font-light);
    text-align: center;
    font-size: 72px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -3.6px;
    text-transform: uppercase;
}

.head_frame > .frame_a > .buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.head_frame > .frame_a > .buttons > div {
    display: flex;
    padding-right: 15px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    background: #152B60;
    cursor: pointer;
}

.head_frame > .frame_a > .buttons > div:hover {
    background-color: var(--color-light);
    color: var(--color-font-dark);
}

.head_frame > .frame_a > .buttons > div > img {
    width: 40px;
    height: 40px;
    border-radius: 20px;
}

.head_frame > .frame_a > .buttons > div > span {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 80%;
    letter-spacing: -0.48px;
}

.head_frame > .frame_b {
    /* flex-grow: 1; */
    margin: auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.head_frame > .frame_b > .control {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 45px;
    align-self: flex-start;
}

.head_frame > .frame_b > .control > span {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 80%;
    opacity: 0.7;
}

.head_frame > .frame_b > .auctions {
    flex-basis: 75%;
    display: flex;
    gap: 10px;
    overflow: auto;
    padding-right: 26px;
}
.head_frame > .frame_b > .auctions::-webkit-scrollbar {display: none;}

.head_frame > .frame_b .auction {
    display: flex;
    width: 515px;
    height: 460px;
    flex-shrink: 0;
}

.head_frame > .frame_b .auction > img {
    width: 285px;
    height: 460px;
    flex-shrink: 0;
}

.head_frame > .frame_b .auction > .frame {
    flex-basis: 210px;
    flex-shrink: 0;
    background: #151F39;
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 10px;
}

.head_frame > .frame_b .auction .date {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 95%;
    letter-spacing: -0.48px;
    width: 90px;
    opacity: 0.6;
}

.head_frame > .frame_b .auction .title {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.48px;
    white-space: pre-line;
    margin-top: 10px;
}

.head_frame > .frame_b .auction .extra {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--color-border-input);
}

.head_frame > .frame_b .auction .extra > div {
    border-bottom: 1px solid var(--color-border-input);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.head_frame > .frame_b .auction .extra > div > :first-child {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.42px;
    opacity: 0.6;
}

.head_frame > .frame_b .auction .extra > div > :last-child {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.42px;
}

.head_frame > .frame_b .auction .price {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -1px;
}

.head_frame > .frame_b .auction .btn {
    display: flex;
    margin-top: auto;
    padding: 10px;
    height: 15px;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background: var(--color-light);
    cursor: pointer;

    color: var(--color-font-dark);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 80%;
    letter-spacing: -0.48px;
}


main .new_works .frame_content {
    display: flex;
    overflow: auto;
    gap: 10px;
    padding-left: 10px;
    padding-right: 100px;
    height: 570px;
}

main .new_works .art {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

main .new_works .art #photo {
    height: 294px;
    transition: height 0.5s ease;
}
main .new_works .art.wide #photo {
    height: 269px;
}
main .new_works .art.focus #photo {
    height: 450px;
}
main .new_works .art.wide.focus #photo {
    height: 412px;
}

main .new_works .art .after {
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s cubic-bezier(1, 0, 1, 0);
    cursor: pointer;
}

main .new_works .art.focus .after{
    opacity: 1;
    visibility: visible;
}

main .new_works .art #button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
    padding: 10px;
    border-radius: 30px;
    background: var(--color-dark);

    color: var(--color-font-light);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 80%;
    letter-spacing: -0.48px;
}

main .new_works .art .after .label_a {
    display: flex;
    justify-content: space-between;
    opacity: 0.4;
    user-select: text;

    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.42px;
}

main .new_works .art .after .label_b {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    user-select: text;

    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 80%;
    letter-spacing: -0.9px;
}

main .new_works .art .after .label_b > #name {
    text-wrap: pretty;
    max-width: 68%;
}

main .new_works .art .after .label_b > #price {
    min-width: 97px;
    text-align: right;
}

main .gallery .frame_content {
    display: flex;
    flex-direction: column;
}

main .gallery .frame_content > div {
    cursor: pointer;
}
main .gallery .frame_content > div:hover {
    background: var(--color-dark);
    color: var(--color-light);
}

main .gallery .frame_content > div > div {
    display: flex;
    padding: 20px 0;
    gap: 10px;
    height: 28px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

main .gallery .frame_content .index {
    width: 330px;
    opacity: 0.2;

    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 80%;
    letter-spacing: -0.42px;
}
main .gallery .frame_content > div:hover .index {
    opacity: 0.6;
}

main .gallery .frame_content .text {
    opacity: 0.6;

    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 80%;
    letter-spacing: -0.9px;
}
main .gallery .frame_content > div:hover .text {
    width: 650px;
    /* margin-right: 100px; */
    opacity: 1;

    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: 80%;
    letter-spacing: -1.05px;
}

main .gallery .frame_content .preview {
    display: block;
    height: 200px;
    overflow: visible;
    position: relative;
    top: -88px;
    z-index: 1;
    visibility: hidden;
}
main .gallery .frame_content > div:hover .preview {
    visibility: visible;
}

main .gallery .frame_content .arrow {
    width: 28px;
    height: 28px;
    margin-left: auto;
}
main .gallery .frame_content > div:hover .arrow {
    filter: invert(100%);
}


main .about .frame_content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

main .about .frame_content .text_a {    
    text-indent: 340px;
    user-select: text;

    font-size: 27px;
    font-style: normal;
    font-weight: 600;
    line-height: 95%;
}

main .about .frame_content .text_b {
    padding-left: 340px;
    width: 25%;
    user-select: text;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 95%;
}

main .about .frame_content .button {
    padding: 10px 0 10px calc(25% - 10px);
    display: flex;
    gap: 10px;
    cursor: pointer;
}
main .about .frame_content .button span {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 80%;
    letter-spacing: -0.48px;
}
main .about .frame_content .button img {
    width: 13px;
    height: 13px;
}

main .about .frame_content .photos {
    padding-left: calc(25% - 10px);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

main .faq .frame_content {
    max-width: calc(1400px - 340px);
    padding-left: 360px;
}

main .faq .frame_content .entry .t {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 80%;
    letter-spacing: -0.6px;
}

main .faq .frame_content .entry .c {
    width: 60%;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 95%;
}
