.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: 0.6s ease;
    border-bottom: 1px solid transparent;
}

.header:hover .bottom, .header.on .bottom {
    background-color: #000;
}


.header .bottom>.text {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.header .bottom .text a {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 12px;
    text-align: right;
    font-weight: 300;
    gap: 6px;
}

.header .bottom .text a svg {
    display: block;
    width: 12px;
    height: auto;
}

.header .bottom .text .down {
    position: absolute;
    top: 0;
    right: 0;
    padding: 51px 0 0;
    opacity: 0;
    pointer-events: none;
    transition: 0.6s;
}

.header .bottom .text .down .down_box {
    background: #FFFFFF;
    width: 490px;
    padding: 40px 0 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.header .bottom .text .down .down_box .down_box_b {
    padding: 0 30px;
}

.header .bottom .text .down .down_box .down_box_top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.header .bottom .text .down .down_box .down_box_top h5 {
    font-family: 'Inter';
    color: #666666;
    font-size: 20px;
}

.header .bottom .text .down .down_box .down_box_top input {
    width: 140px;
    height: 36px;
    border: 1px solid #ccc;
    padding: 0 8px 0 10px;
    color: #666666;
    font-size: 14px;
}

.header .bottom .text .down .down_box table {
    width: 100%;
}

.header .bottom .text .down .down_box table tr th {
    font-family: 'Inter';
    color: #ab603d;
    font-size: 20px;
    text-transform: capitalize;
    text-align: left;
    padding: 6px 8px;
}

.header .bottom .text .down .down_box table tr:nth-child(2),.header .bottom .text .down .down_box table tr:nth-child(3),.header .bottom .text .down .down_box table tr:nth-last-child(1),.header .bottom .text .down .down_box table tr:nth-last-child(2) {
    display: none;
}

.header .bottom .text .down .down_box table tr th:nth-child(2) {
    text-align: right;
}

.header .bottom .text .down .down_box table tr td {
    text-align: left;
    font-size: 18px;
    color: #666666;
    padding: 6px 8px;
}

.header .bottom .text .down .down_box table tr td:nth-child(2) {
    text-align: right;
}
.header .bottom .text .down .down_box table tr:nth-child(2) td {
    background-color: #e3e3e3;
}
.header .bottom .text .down .down_box table tr:nth-child(2n-1) td {
    background-color: #e3e3e3;
}

.header .bottom .text .down .down_box .down_box_bottom {
    margin: 40px 0 0;
    background: #10253F;
    font-size: 10px;
    color: #FFFFFF;
    padding: 15px 30px;
    text-align: left;
}

.header .bottom .text:hover .down {
    opacity: 1;
    pointer-events: auto;
}

.header .bottom {
    height: 50px;
    padding: 0 50px;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
    position: relative;
    justify-content: space-between;
    transition: all .6s;
}

.header .bottom .logo {
    display: block;
    width: 104px;
    height: unset;
    position: relative;
    z-index: 2;
}
.header .bottom .logo img {
    display: block;
    width: 100%;
}
.header .bottom .nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
    height: 100%;
    width: 100%;
}

.header .bottom .nav .item {
    height: 100%;
}

.header .bottom .nav .item > a {
    color: #fff;
    font-size: 14px;
    transition: all .6s;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.header .bottom .nav .item > a::after {
    width: 100%;
    height: 2px;
    content: "";
    display: block;
    background-color: #fff;
    position: absolute;
    bottom: 2px;
    transform: scaleX(0);
    transition: all .6s;
}

.header .bottom .nav .item:hover > a::after {
    transform: scaleX(1);
}

.header .bottom .nav .item:hover .second {
    clip-path: inset(0 0 0 0);
}

.header .bottom .nav .item .second {
    width: 100vw;
    position: absolute;
    left: 0;
    background-color: #fff;
    transition: .6s ease;
    clip-path: inset(0 0 100% 0);
}

.header .bottom .nav .item .second .joke {
    width: 1440px;
    margin: 0 auto;
    padding-bottom: 80px;
}
.header .bottom .nav .item .second .joke .second_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0 7px;
    border-bottom: 1px solid #EDEDED;
    margin-bottom: 30px;
}
.header .bottom .nav .item .second .joke .second_top .second_top_r .second_top_r_labels {
    display: none;
    padding: 2px;
    border-radius: 23px;
    background: #E7E9EC;
}
.header .bottom .nav .item .second .joke .second_top .second_top_r .second_top_r_labels .item {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(16, 37, 63, 0.5);
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.6s;
}
.header .bottom .nav .item .second .joke .second_top .second_top_r .second_top_r_labels .item:hover,.header .bottom .nav .item .second .joke .second_top .second_top_r .second_top_r_labels .item.on {
    background: #005F6A;
    color: #FFFFFF;
}
.header .bottom .nav .item .second .joke .second_top .second_top_r .second_top_r_labels.active {
    display: flex;
}
.header .bottom .nav .item .second .joke .s_tab {
    display: flex;
    gap: 50px;
}

.header .bottom .nav .item .second .joke .s_tab .s_item {
    color: #83868A;
    display: block;
    position: relative;
    transition: all .6s;
    line-height: 32px;
}

.header .bottom .nav .item .second .joke .s_tab .s_item.active, .header .bottom .nav .item .second .joke .s_tab .s_item:hover {
    color: #10253F;
}

.header .bottom .nav .item .second .joke .s_tab .s_item.active::after, .header .bottom .nav .item .second .joke .s_tab .s_item:hover::after {
    transform: scaleX(1);
}

.header .bottom .nav .item .second .joke .s_tab .s_item::after {
    width: 100%;
    height: 2px;
    content: "";
    display: block;
    position: absolute;
    bottom: -8px;
    transition: all .6s;
    transform: scaleX(0);
    background-color: #10253F;
}

.header .bottom .nav .item .second .joke .s_main .t {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.header .bottom .nav .item .second .joke .s_main .t .text p {
    font-weight: 700;
    color: #222;
    font-size: 22px;
}

.header .bottom .nav .item .second .joke .s_main .t .common_button {
    background-color: #005F6A;
    border-color: #005F6A;
}

.header .bottom .nav .item .second .joke .s_main .t .common_button:hover {
    color: #fff;
}

.header .bottom .nav .item .second .joke .s_main .b {
    position: relative;
}

.header .bottom .nav .item .second .joke .s_main .b .s_list {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    pointer-events: none;
    transition: all .6s;
    padding: 0;
    max-height: 415px;
    overflow-y: auto;
}

.header .bottom .nav .item .second .joke .s_main .b .s_list.on {
    display: grid;
    pointer-events: all;
    transition-delay: .3s;
}

.header .bottom .nav .item .second .joke .s_main .b .s_list:not(:first-child) {
}

.header .bottom .nav .item .second .joke .s_main .b .s_list .s_item {
    padding: 30px 20px;
    background-color: #F5F5F6;
    position: relative;
    border-radius: 8px;
}

.header .bottom .nav .item .second .joke .s_main .b .s_list .s_item .img {
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.header .bottom .nav .item .second .joke .s_main .b .s_list .s_item .img img {
    transition: all 1s;
}

.header .bottom .nav .item .second .joke .s_main .b .s_list .s_item:hover .img img {
    transform: scale(1.05);
}

.header .bottom .nav .item .second .joke .s_main .b .s_list .s_item .text {
    margin-bottom: 20px;
}

.header .bottom .nav .item .second .joke .s_main .b .s_list .s_item .text h4 {
    color: #10253F;
    margin-bottom: 15px;
    font-size: 18px;
}

.header .bottom .nav .item .second .joke .s_main .b .s_list .s_item .text p {
    color: #83868A;
    font-size: 12px;
    line-height: 22px;
}

.header .bottom .nav .item .second .joke .s_main .b .s_list .s_item .common_button {
    border-color: #10253F;
    color: #10253F;
    font-size: 14px;
}

.header .bottom .nav .item .second .joke .s_main .b .s_list .s_item .common_button:hover {
    background-color: #10253F;
    color: #fff;
}

.header .bottom .nav .item .second .joke .s_main .b .s_list .s_item.new::after {
    content: "NEW";
    color: #005F6A;
    position: absolute;
    top: 20px;
    right: 20px;
}

.header .bottom .nav .item .second1 {
    width: 100vw;
    position: absolute;
    left: 0;
    background-color: #fff;
    transition: .6s ease;
    clip-path: inset(0 0 100% 0);
}

.header .bottom .nav .item .second1 .second_box {
    width: 100%;
    padding: 90px 0 58px;
    background: #FFFFFF;
    transition: 0.6s;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.header .bottom .nav .item .second1 .second_box a {
    white-space: nowrap;
    display: block;
    text-align: center;
    color: #83868A;
    transition: all .6s;
    line-height: 2;
    width: 280px;
    height: 160px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.header .bottom .nav .item .second1 .second_box a .img {
    width: 100%;
    height: 100%;
}

.header .bottom .nav .item .second1 .second_box a .img img {
    display: block;
    width: 100%;
    height: 100%;
    transition: 3s;
}

.header .bottom .nav .item .second1 .second_box a .item_bottom {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 3;
    padding: 0 12px 12px 15px;
    bottom: 0;
    left: 0;
}

.header .bottom .nav .item .second1 .second_box a .item_bottom p {
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}

.header .bottom .nav .item .second1 .second_box a .item_bottom img {
    display: block;
    filter: invert(1);
    width: 12px;
}

.header .bottom .nav .item .second1 .second_box a:hover {
    color: #10253F;
}

.header .bottom .nav .item .second1 .second_box a:hover .img img {
    transform: scale(1.1);
}

.header .bottom .nav .item:hover .second1 {
    clip-path: inset(0 0 0% 0);
}

.header .bottom .right {
    display: flex;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    height: 100%;
}

.header .bottom .right .search {
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
}

.header .bottom .right .search a {
    display: block;
    height: auto;
}

.header .bottom .right .search span {
    display: block;
}

.header .bottom .right .search span {
    color: #fff;
    font-size: 24px;
    font-weight: 200;
    transition: all .6s;
}

.header .bottom .right .search:hover span {
    color: #005F6A;
}

.header .bottom .right .tab {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all .6s;
}

.header .bottom .right .tab .icon {
    margin-right: 5px;
    position: relative;
}

.header .bottom .right .tab .icon img:nth-child(1) {
    filter: brightness(0) invert(1);
}

.header .bottom .right .tab .icon img:nth-child(2) {
    position: absolute;
    left: 0;
    opacity: 0;
}

.header .bottom .right .tab .icon img {
    transition: all .6s;
    display: block;
}

.header .bottom .right .tab:hover {
    color: #005F6A;
}

.header .bottom .right .tab:hover .icon img:nth-child(1) {
    opacity: 0;
}

.header .bottom .right .tab:hover .icon img:nth-child(2) {
    opacity: 1;
}

.header .bottom .right .user {
    width: 32px;
    height: 32px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .6s;
}

.header .bottom .right .user:hover {
    background-color: #005F6A;
}

.header .bottom .right .user:hover span {
    color: #fff;
}

.header .bottom .right .user span {
    color: #050D1B;
    transition: all .6s;
    font-size: 20px;
}

footer {
    background-color: #141A28;
}

footer .footer {
    padding-top: 100px;
}

footer .footer .top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding-bottom: 60px;
    border-bottom: 1px solid #fff;
    width: 1440px;
    margin: 0 auto 50px;
}

footer .footer .top .list {
    display: flex;
    gap: 10px;
}

footer .footer .top .list .item {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all .6s;
}

footer .footer .top .list .item span {
    font-size: 24px;
}

footer .footer .top .list .item:hover {
    background-color: #005F6A;
    border-color: #005F6A;
}

footer .footer .center {
    display: flex;
    justify-content: space-between;
    padding-bottom: 114px;
    width: 1440px;
    margin: 0 auto;
}

footer .footer .center .left {
    display: flex;
    gap: 190px;
}

footer .footer .center .left .list {
    display: flex;
    flex-direction: column;
}

footer .footer .center .left .list .item:nth-child(1) {
    color: #fff;
    font-size: 20px;
    margin-bottom: 30px;
}

footer .footer .center .left .list .item {
    color: #83868A;
    font-size: 16px;
    display: block;
    line-height: 40px;
    transition: all .6s;
}

footer .footer .center .left .list .item:hover {
    color: #005F6A;
}

footer .footer .center .right {
    width: 300px;
}
footer .footer .center .right button {
    display: block;
    margin: 40px 0 0 auto;
    padding: 10px 20px;
    border-radius: 4px;
    background: #005F6A;
    color: #FFFFFF;
    font-size: 16px;
}
footer .footer .center .right h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

footer .footer .center .right .value input {
    width: 100%;
    border-radius: 5px;
    height: 46px;
}

footer .footer .center .right label {
    margin-top: 20px;
    display: flex;
    cursor: pointer;
}

footer .footer .center .right label input {
    position: absolute;
    pointer-events: none;
    opacity: 0;
}

footer .footer .center .right label input:checked + .radio {
    background-color: #005F6A;
}

footer .footer .center .right label input:checked + .radio span {
    color: #fff;
    opacity: 1;
}

footer .footer .center .right label .radio {
    width: 14px;
    height: 14px;
    background-color: #fff;
    display: flex;
    margin-right: 10px;
    margin-top: 3px;
    border-radius: 2px;
    align-items: center;
    transition: all .3s;
    justify-content: center;
}

footer .footer .center .right label .radio span {
    transition: all .3s;
    font-size: 10px;
    opacity: 0;
}

footer .footer .center .right label p {
    color: #fff;
    flex: 1;
    opacity: 0.7;
    line-height: 18px;
    font-size: 12px;
}

footer .footer .bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px calc(50vw - 720px);
    display: flex;
    justify-content: space-between;
}

footer .footer .bottom p {
    color: #83868A;
}

footer .footer .bottom a {
    color: #fff;
    margin-left: 20px;
    transition: all .6s;
}

footer .footer .bottom a:hover {
    color: #005F6A;
}

.common_button {
    height: 46px;
    padding: 0 27px;
    border-radius: 23px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    color: #fff;
    width: fit-content;
    font-size: 12px;
    transition: all .6s;
}

.common_button.white {
    background-color: #fff;
    color: #1D3046;
}

.common_button:hover {
    background-color: #fff;
    color: #1D3046;
}

.merry {
    overflow: hidden;
}

.merry .row {
    display: flex;
    gap: 92px;
    width: max-content;
}

.merry.active .row {
    animation: walking 0s linear infinite;
}

.merry:hover .row {
    animation-play-state: paused;
}

@keyframes walking {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 1919px) {

    .header .bottom .text a{
        font-size: 0.625vw;
        gap: 0.3125vw;
    }
    .header .bottom .text a svg{
        width: 0.625vw;
    }
    .header .bottom .text .down{
        padding: 1.6666666667vw 0px 0px;
    }
    .header .bottom .text .down .down_box{
        width: 25.5208333333vw;
        padding: 2.0833333333vw 0px 0px;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 1.0416666667vw;
    }
    .header .bottom .text .down .down_box .down_box_b{
        padding: 0px 1.5625vw;
    }
    .header .bottom .text .down .down_box .down_box_top{
        margin-bottom: 2.0833333333vw;
    }
    .header .bottom .text .down .down_box .down_box_top h5{
        font-size: 1.0416666667vw;
    }
    .header .bottom .text .down .down_box .down_box_top input{
        width: 7.2916666667vw;
        height: 1.875vw;
        padding: 0px 0.4166666667vw 0px 0.5208333333vw;
        font-size: 0.7291666667vw;
    }
    .header .bottom .text .down .down_box table tr th{
        font-size: 1.0416666667vw;
        padding: 0.3125vw 0.4166666667vw;
    }
    .header .bottom .text .down .down_box table tr td{
        font-size: 0.9375vw;
        padding: 0.3125vw 0.4166666667vw;
    }
    .header .bottom .text .down .down_box .down_box_bottom{
        margin: 2.0833333333vw 0px 0px;
        font-size: 0.5208333333vw;
        padding: 0.78125vw 1.5625vw;
    }
    .header .bottom{
        height: 2.6041666667vw;
        padding: 0px 2.6041666667vw;
    }
    .header .bottom .logo{
        width: 5.4166666667vw;
    }
    .header .bottom .nav{
        gap: 2.6041666667vw;
    }
    .header .bottom .nav .item > a{
        font-size: 0.7291666667vw;
    }
    .header .bottom .nav .item > a::after{
        height: 0.1041666667vw;
        bottom: 0.1041666667vw;
    }
    .header .bottom .nav .item .second .joke{
        width: 75vw;
        padding-bottom: 4.1666666667vw;
    }
    .header .bottom .nav .item .second .joke .second_top{
        padding: 1.4583333333vw 0px 0.3645833333vw;
        margin-bottom: 1.5625vw;
    }
    .header .bottom .nav .item .second .joke .second_top .second_top_r .second_top_r_labels{
        padding: 0.1041666667vw;
        border-radius: 1.1979166667vw;
    }
    .header .bottom .nav .item .second .joke .second_top .second_top_r .second_top_r_labels .item{
        width: 1.4583333333vw;
        height: 1.4583333333vw;
        font-size: 0.7291666667vw;
    }
    .header .bottom .nav .item .second .joke .s_tab{
        gap: 2.6041666667vw;
    }
    .header .bottom .nav .item .second .joke .s_tab .s_item{
        line-height: 1.6666666667vw;
    }
    .header .bottom .nav .item .second .joke .s_tab .s_item::after{
        height: 0.1041666667vw;
        bottom: -0.4166666667vw;
    }
    .header .bottom .nav .item .second .joke .s_main .t{
        margin-bottom: 1.5625vw;
    }
    .header .bottom .nav .item .second .joke .s_main .t .text p{
        font-size: 1.1458333333vw;
    }
    .header .bottom .nav .item .second .joke .s_main .b .s_list{
        gap: 1.5625vw;
        transform: translateY(1.0416666667vw);
        max-height: 21.6145833333vw;
    }
    .header .bottom .nav .item .second .joke .s_main .b .s_list .s_item{
        padding: 1.5625vw 1.0416666667vw;
        border-radius: 0.4166666667vw;
    }
    .header .bottom .nav .item .second .joke .s_main .b .s_list .s_item .img{
        height: 7.2916666667vw;
        margin-bottom: 1.5625vw;
    }
    .header .bottom .nav .item .second .joke .s_main .b .s_list .s_item .text{
        margin-bottom: 1.0416666667vw;
    }
    .header .bottom .nav .item .second .joke .s_main .b .s_list .s_item .text h4{
        margin-bottom: 0.78125vw;
        font-size: 0.9375vw;
    }
    .header .bottom .nav .item .second .joke .s_main .b .s_list .s_item .text p{
        font-size: 0.625vw;
        line-height: 1.1458333333vw;
    }
    .header .bottom .nav .item .second .joke .s_main .b .s_list .s_item .common_button{
        font-size: 0.7291666667vw;
    }
    .header .bottom .nav .item .second .joke .s_main .b .s_list .s_item.new::after{
        top: 1.0416666667vw;
        right: 1.0416666667vw;
    }
    .header .bottom .nav .item .second1 .second_box{
        padding: 4.6875vw 0px 3.0208333333vw;
        gap: 0.625vw;
    }
    .header .bottom .nav .item .second1 .second_box a{
        width: 14.5833333333vw;
        height: 8.3333333333vw;
        border-radius: 0.4166666667vw;
    }
    .header .bottom .nav .item .second1 .second_box a .item_bottom{
        padding: 0px 0.625vw 0.625vw 0.78125vw;
    }
    .header .bottom .nav .item .second1 .second_box a .item_bottom p{
        font-size: 0.7291666667vw;
    }
    .header .bottom .nav .item .second1 .second_box a .item_bottom img{
        width: 0.625vw;
    }
    .header .bottom .right{
        gap: 2.0833333333vw;
    }
    .header .bottom .right .search span{
        font-size: 1.25vw;
    }
    .header .bottom .right .tab{
        font-size: 0.7291666667vw;
    }
    .header .bottom .right .tab .icon{
        margin-right: 0.2604166667vw;
    }
    .header .bottom .right .user{
        width: 1.6666666667vw;
        height: 1.6666666667vw;
    }
    .header .bottom .right .user span{
        font-size: 1.0416666667vw;
    }
    footer .footer{
        padding-top: 5.2083333333vw;
    }
    footer .footer .top{
        padding-bottom: 3.125vw;
        width: 75vw;
        margin: 0px auto 2.6041666667vw;
    }
    footer .footer .top .list{
        gap: 0.5208333333vw;
    }
    footer .footer .top .list .item{
        width: 3.125vw;
        height: 3.125vw;
    }
    footer .footer .top .list .item span{
        font-size: 1.25vw;
    }
    footer .footer .center{
        padding-bottom: 5.9375vw;
        width: 75vw;
    }
    footer .footer .center .left{
        gap: 9.8958333333vw;
    }
    footer .footer .center .left .list .item:nth-child(1){
        font-size: 1.0416666667vw;
        margin-bottom: 1.5625vw;
    }
    footer .footer .center .left .list .item{
        font-size: 0.8333333333vw;
        line-height: 2.0833333333vw;
    }
    footer .footer .center .right{
        width: 15.625vw;
    }
    footer .footer .center .right button{
        margin: 2.0833333333vw 0px 0px auto;
        padding: 0.5208333333vw 1.0416666667vw;
        border-radius: 0.2083333333vw;
        font-size: 0.8333333333vw;
    }
    footer .footer .center .right h4{
        font-size: 1.0416666667vw;
        margin-bottom: 1.0416666667vw;
    }
    footer .footer .center .right .value input{
        border-radius: 0.2604166667vw;
        height: 2.3958333333vw;
    }
    footer .footer .center .right label{
        margin-top: 1.0416666667vw;
    }
    footer .footer .center .right label .radio{
        width: 0.7291666667vw;
        height: 0.7291666667vw;
        margin-right: 0.5208333333vw;
        margin-top: 0.15625vw;
        border-radius: 0.1041666667vw;
    }
    footer .footer .center .right label .radio span{
        font-size: 0.5208333333vw;
    }
    footer .footer .center .right label p{
        line-height: 0.9375vw;
        font-size: 0.625vw;
    }
    footer .footer .bottom{
        padding: 0.78125vw calc(-37.5vw + 50vw);
    }
    footer .footer .bottom a{
        margin-left: 1.0416666667vw;
    }
    .common_button{
        height: 2.3958333333vw;
        padding: 0px 1.40625vw;
        border-radius: 1.1979166667vw;
        font-size: 0.625vw;
    }
    .merry .row{
        gap: 4.7916666667vw;
    }
}


@media screen and (max-width: 768px) {

    .header .bottom .text a {
        font-size: 12px;
        gap: 4px;
    }

    .header .bottom .text a svg {
        width: 12px;
        display: none;
    }

    .header .bottom {
        height: 50px;
        background-color: rgba(0, 0, 0, 0.6) !important;
        backdrop-filter: blur(10px);
        padding: 0 5vw;
    }

    .header .bottom .logo {
        width: 100px;
    }

    .header .bottom .nav {
        display: none;
    }

    .header .bottom .right .search span {
        font-size: 16px;
    }

    .header .bottom .right .tab {
        font-size: 13px;
    }

    .header .bottom .right .tab .icon {
        width: 16px;
        margin-right: 4px;
    }

    .header .bottom .right {
        gap: 15px;
    }

    .header .bottom .right .user {
        width: 26px;
        height: 26px;
    }

    .header .bottom .right .user span {
        font-size: 14px;
    }


    .header .bottom .right .menu {
        display: block !important;
        margin-right: calc(5vw - 41px);
        margin-left: -18px;
    }

    .header .bottom .right .menu svg {
        stroke: #fff;
        width: 64px;
        height: 38px;
        stroke-width: 1px;
        stroke-linecap: round;
        stroke-linejoin: round;
        fill: none;
        display: block;
    }

    .header .bottom .right .menu svg path {
        transition: stroke-dasharray var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s), stroke-dashoffset var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s);
        stroke-dasharray: var(--array-1, 26px) var(--array-2, 100px);
        stroke-dashoffset: var(--offset, 126px);
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .header .bottom .right .menu svg path:nth-child(2) {
        --duration: .7s;
        --easing: ease-in;
        --offset: 100px;
        --array-2: 74px;
    }

    .header .bottom .right .menu svg path:nth-child(3) {
        --offset: 133px;
        --array-2: 107px;
    }

    .header .bottom .right .menu.active svg path {
        --offset: 57px;
    }

    .header .bottom .right .menu.active svg path:nth-child(1), .menu.active svg path:nth-child(3) {
        --delay: .15s;
        --easing: cubic-bezier(.2, .4, .2, 1.1);
    }

    .header .bottom .right .menu.active svg path:nth-child(2) {
        --duration: .4s;
        --offset: 2px;
        --array-1: 1px;
    }

    .header .bottom .right .menu.active svg path:nth-child(3) {
        --offset: 58px;
    }
    .header .mobile_nav {
        position: fixed;
        width: 100vw;
        height: 100vh;
        z-index: -1;
        top: 0;
        left: 0;
        background: #000000;
        display: block !important;
        padding: 100px 5vw 0;
        clip-path: inset(0 0 100% 0);
        transition: 1s;
    }
    .header .mobile_nav .item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    .header .mobile_nav .item>a {
        display: block;
        font-size: 15px;
        line-height: 60px;
        color: #FFFFFF;
    }
    .header .mobile_nav .item>img {
        display: block;
        width: 16px;
        filter: brightness(0) invert(1);
        transition: 0.6s;
    }
    .header .mobile_nav .item.active>img {
        transform: rotate(90deg);
    }
    .header .mobile_nav .item .second {
        width: 100%;
        padding: 0 0 20px;
        display: none;
    }
    .header .mobile_nav .item .second a {
        display: block;
        font-size: 14px;
        line-height: 3;
        padding: 0 0 0 10px;
        color: rgba(255,255,255,0.6);
    }
    .header .mobile_nav.on {
        clip-path: inset(0 0 0 0);
    }
    footer .footer {
        padding: 40px 0 0;
    }
    footer .footer .top {
        width: 90vw;
        margin: 0 auto 20px;
        padding: 0 0 20px;
        align-items: center;
    }
    footer .footer .top .list {
        gap: 8px;
    }
    footer .footer .top .list .item {
        width: 32px;
        height: 32px;
    }
    footer .footer .top .list .item span {
        font-size: 12px;
    }
    footer .footer .center {
        width: 90%;
        padding: 0 0 25px;
    }
    footer .footer .center .left {
        display: none;
    }
    footer .footer .center .right {
        width: 100%;
    }
    footer .footer .top .logo {
        width: 100px;
    }
    footer .footer .center .right h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    footer .footer .center .right .value input {
        height: 36px;
        border-radius: 4px;
        padding: 0 15px;
        font-size: 13px;
    }
    footer .footer .center .right label .radio span {
        font-size: 12px;
    }
    footer .footer .center .right label p {
        font-size: 12px;
        line-height: 20px;
    }
    footer .footer .center .right label {
        margin-top: 10px;
    }
    footer .footer .center .right label .radio {
        width: 16px;
        height: 16px;
        border-radius: 3px;
        margin: 3px 5px 0 0;
    }
    footer .footer .bottom {
        padding: 10px 5vw;
        display: block;
    }
    footer .footer .bottom a, footer .footer .bottom p {
        font-size: 12px;
    }
    .header .bottom .text .down .down_box {
        width: 320px;
        padding: 20px;
    }
    .header .bottom .text .down .down_box .down_box_top input {
        width: 100px;
        height: 32px;
        padding: 0 8px;
        font-size: 12px;
    }
    .header .bottom .text .down {
        padding: 40px 0 0;
    }
    .header .bottom .text .down .down_box .down_box_top h5 {
        font-size: 12px;
    }
    .header .bottom .text .down .down_box table tr td {
        font-size: 12px;
        padding: 10px;
    }
    .header .bottom .text .down .down_box .down_box_bottom {
        margin: 15px 0 0;
        font-size: 12px;
        padding: 4px 10px;
    }
}
