/****
**
*
Price
*
**
****/

.price-item {
    position: relative;
    width: 300px;
    height: 309px;
    box-sizing: border-box;
    box-shadow: 0px 13px 4px rgba(142, 225, 255, 0.08), 0px 16px 24px rgba(0, 0, 0, 0.09), 0px 2px 6px rgba(0, 0, 0, 0.06), 0px 0px 1px rgba(0, 0, 0, 0.04);
    border-radius: 2px;
    padding: 30px 0 22px;
    transition: .3s;
}

.price-item:hover {
    box-shadow: 0px 7px 12px rgba(173, 173, 173, 0.31), 0px 13px 4px rgba(142, 225, 255, 0.08), 0px 16px 24px rgba(0, 0, 0, 0.09), 0px 2px 6px rgba(0, 0, 0, 0.06), 0px 0px 1px rgba(0, 0, 0, 0.04);
}

.price-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    border: 1.4px solid rgba(6, 187, 254, 0.3);
    box-sizing: border-box;
    border-radius: 50%;
}

.price-icon img {
    max-height: 50px;
    position: relative;
    z-index: 2;
}

.price-icon::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 0.5px solid #06BBFE;
    box-sizing: border-box;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
    z-index: 1;
}

.price-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #161A1D;
    opacity: 0.7;
    margin-top: 30px;
}

.price-btn {
    position: absolute;
    width: 260px;
    height: 48px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 25px;
}

.price-item {
    margin-right: 30px;
    margin-bottom: 30px;
}

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

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

@media screen and (max-width: 740px) {
    .price-item {
        width: 100%;
        margin: 0 0 40px 0;
        height: 393px;
        padding: 30px 0 22px;
    }
    .price-icon {
        width: 176px;
        height: 176px;
    }
    .price-icon::before {
        width: 148px;
        height: 148px;
    }
    .price-title {
        font-weight: 500;
        font-size: 24px;
        line-height: 29px;
        color: #161A1D;
        opacity: 0.7;
    }
    .price-btn {
        width: 86%;
        left: 50%;
        height: 60px;
    }
    .price-more {
        margin-top: -10px;
    }
}

/****
**
*
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;
    }
    .about-tabs {
        min-width: 904px;
        width: 100%;
    }
    .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%;
    }
}