/****
**
*
Sales
*
**
****/

.sale-item {
    position: relative;
    margin-right: 30px;
    width: 300px;
    height: 370px;
    margin-bottom: 30px;
    overflow: hidden;
    display: block;
}

.sale-item::after {
    content: '';
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 64.58%);
}

.sale-item:nth-child(4n) {
    margin-right: 0;
}

.sale-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: .3s;
}

.sale-item:hover .sale-img {
    transform: scale(1.2)
}

.sale-value {
    position: absolute;
    left: 20px;
    top: 32px;
    z-index: 3;
    font-weight: bold;
    font-size: 18px;
    line-height: 28px;
    padding: 0 16px 0 10px;
    background: #fff;
    height: 28px;
}

.sale-value::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -10px;
    border: 10px solid transparent;
    border-bottom: 15px solid #fff;
}

.sale-value::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    border: 10px solid transparent;
    border-top: 15px solid #fff;
}

.sale-name {
    position: absolute;
    left: 20px;
    bottom: 59px;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
    z-index: 3;
}

.sale-link {
    position: absolute;
    z-index: 3;
    left: 20px;
    bottom: 30px;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
}

.sale-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.8px;
    background-color: #fff;
}

@media screen and (max-width: 1024px) {
    .sale-item {
        width: calc(50% - 15px);
    }
    .sale-item:nth-child(4n) {
        margin-right: 30px;
    }
    .sale-item:nth-child(2n) {
        margin-right: 0;
    }
}

@media screen and (max-width: 740px) {
    .sale-item {
        height: 400px;
        width: 100%;
        margin: 0 0 30px 0;
        overflow: visible;
        box-shadow: 0px 8px 16px 5px rgba(0, 0, 0, 0.06), 0px 2px 34px 10px rgba(0, 0, 0, 0.06);
    }
    .sale-value {
        height: 32px;
        line-height: 32px;
        font-size: 20px;
        top: 30px;
        left: 30px;
    }
    .sale-name {
        left: 30px;
        bottom: 57px;
        font-weight: 500;
        font-size: 24px;
        line-height: 29px;
    }
    .sale-link {
        left: 30px;
        bottom: 24px;
    }
    .sale-item:hover .sale-img {
        transform: scale(1);
    }
    .sale-item::after {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 64.58%);
    }
}

/****
**
*
About
*
**
****/

.about-tabs {
    height: 64px;
    display: flex;
    flex-wrap: wrap;
    background: #F5F5F5;
    border-radius: 5px;
    border: 1px solid #4BCEFE;
    box-sizing: border-box;
}

.about-tab {
    padding: 0 auto;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: rgba(22, 26, 29, 0.6);
    cursor: pointer;
    transition: .3s;
}

.about-tab.active:hover {
    background: #00A6E3;
    border-radius: 5px;
    color: #FFFFFF;
}

.about-tab.active:active {
    background: #008ABC;
    border-radius: 5px;
    color: #FFFFFF;
}

.about-tab.active {
    background: #06BBFE;
    border-radius: 5px;
    color: #FFFFFF;
}

.about-list {
    margin-top: 34px;
}

.about-item {
    display: none;
}

.about-item.active {
    display: flex;
}

.about-left {
    width: 630px;
}

.about-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 20px;
}

.about-txt {
    font-size: 16px;
    line-height: 22px;
    color: rgba(22, 26, 29, 0.9);
}

.about-right {
    width: 630px;
    position: relative;
}

.about-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-more {
    display: none;
}

@media screen and (max-width: 1024px) {
    .about {
        overflow: hidden;
    }
    .about-right {
        width: 100%;
        height: 472px;
        margin-top: 32px;
    }
    .about-left {
        width: 100%;
    }
    .about-tabs__list {
        overflow: scroll;
        padding-bottom: 15px;
        margin: 0 -4.6vw;
    }
    .about-tabs {
        min-width: 904px;
        width: 100%;
        margin-left: 4.6vw;
    }
    .about-txt span {
        display: none;
    }
    .about-more {
        font-weight: 500;
        font-size: 20px;
        line-height: 24px;
        color: #06BBFE;
        opacity: 0.9;
        margin-top: 14px;
        display: block;
    }
    .about-more img {
        margin-left: 10px;
    }
}

@media screen and (max-width: 740px) {
    .about-title {
        display: none;
    }
    .about-list {
        margin-top: 20px;
    }
}

/****
**
*
Free
*
**
****/

.free-sended {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    line-height: 18px;
    color: #000000;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-color: #fff;
    align-content: center;
    opacity: 0;
    pointer-events: none;
}

.free-sended span {
    display: block;
    font-size: 24px;
    width: 100%;
    margin-bottom: 8px;
}

.free-box {
    box-sizing: border-box;
    padding: 0 30px;
    height: 168px;
    background: #FFFFFF;
    box-shadow: 0px 19px 30px 14px rgba(176, 176, 176, 0.08), 0px 12px 31px 7px rgba(121, 121, 121, 0.1);
    border-radius: 2px;
}

.free.sended .free-sended {
    opacity: 1;
}

.free-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: #000000;
}

.free-form {
    align-items: flex-end;
}

.free-input {
    width: 300px;
    height: 48px;
}

.free-inputName {
    font-size: 14px;
    line-height: 17px;
    color: rgba(22, 26, 29, 0.8);
    opacity: 0.8;
    margin-bottom: 4px;
}

.free-inputBox {
    margin-right: 30px;
}

.free-btn {
    width: 217px;
    height: 48px;
}

@media screen and (max-width: 1024px) {
    .free-box {
        height: auto;
        display: block;
        padding: 30px 30px 40px;
    }
    .free-title {
        text-align: center;
        margin-bottom: 30px;
    }
    .free-form {
        display: block;
    }
    .free-input {
        width: 100%;
    }
    .free-inputBox {
        display: block;
        width: 100%;
        margin-bottom: 30px;
    }
    .free-btn {
        width: 100%;
    }
}