/****
**
*
News
*
**
****/

.news-item {
    position: relative;
    width: calc(50% - 15px);
    height: 370px;
    margin-bottom: 30px;
    margin-right: 30px;
    overflow: hidden;
}

.news-item:nth-child(2n) {
    margin-right: 0;
}

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

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

.news-item:hover .new-image {
    transform: scale(1.1);
}

.new-title {
    position: absolute;
    bottom: 60px;
    left: 20px;
    right: 20px;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
    z-index: 2;
}

.new-more {
    position: absolute;
    z-index: 2;
    left: 20px;
    bottom: 24px;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-decoration-line: underline;
    color: #FFFFFF;
}

@media screen and (max-width: 740px) {
    .new-title {
        font-size: 24px;
        line-height: 29px;
        left: 30px;
        bottom: 70px;
    }
    .new-more {
        font-size: 18px;
        line-height: 22px;
        bottom: 24px;
        left: 30px;
    }
}

@media screen and (max-width: 630px) {
    .news-item {
        width: 100%;
        height: 83.5vw;
        margin-right: 0;
    }
}

/****
**
*
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%;
    }
}