.page-title-area {
    padding-top: 300px;
    padding-bottom: 250px;
    z-index: 1;
    position: relative;
    background-position: center center;
    background-image: url(../img/products3-banner-1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #fff;
    width: 100%;
}


/* Specification Table */
main.table {
    box-shadow: 0 .4rem .8rem #0005;
    border-radius: .8rem;
    overflow: hidden;
    margin: 10px 0 20px;
}

.table__header {
    width: 100%;
    height: 10%;
    padding: 10px 1rem 0.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.table__header h3 {
    font-size: 46px;
    letter-spacing: 3px;
    background: linear-gradient(90deg, #1b901d 0%,
            #005acf 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
}

.table__header .input-group {
    width: 35%;
    height: 100%;
    background-color: #fff5;
    padding: 0 .8rem;
    border-radius: 2rem;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: .2s;
}

.table__header .input-group:hover {
    width: 45%;
    background-color: #fff8;
    box-shadow: 0 .1rem .4rem #0002;
}

.table__header .input-group img {
    width: 1.2rem;
    height: 1.2rem;
}

.table__header .input-group input {
    width: 100%;
    padding: 0 .5rem 0 .3rem;
    background-color: transparent;
    border: none;
    outline: none;
}

.table__body {
    max-width: 100%;
    width: 100%;
    color: #fff;
    margin: 0.8rem auto;
    overflow: auto;
}

table {
    width: 90%;
    margin: 0 auto;
}

td {
    font-size: 20px;
    word-wrap: break-word;
    /* 允许单词换行 */
    white-space: normal;
    /* 防止文本溢出 */
    margin-right: 15px;
    padding: 10px 0;
}

td:nth-child(1) {
    padding-left: 5px;
}

thead tr {
    background: linear-gradient(180deg, #00abfd 0%, #117dd7 100%);
}

thead th {
    top: 0;
    cursor: pointer;
    text-transform: capitalize;
    color: #ffffff;
    font-size: 20px;
}

tbody tr:nth-child(even) {
    background-color: #000000e2;
}

tbody tr {
    --delay: 0.1s;
    transition: 0.5s ease-in-out var(--delay), background-color 0s;
    border-bottom: 1px solid #0a4a68;
    background-color: #000000;
}

tbody tr.hide {
    opacity: 0;
    transform: translateX(100%);
}

tbody tr:hover {
    background-color: #2a241f60 !important;
}

thead th.active,
tbody td.active {
    color: #209cff;
}


/* Button */
.frame {
    width: 90%;
    margin: 70px auto 70px;
    text-align: center;
}

.frame button {
    margin: 20px;
}

.custom-btn {
    width: 130px;
    height: 40px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    outline: none;
}

/* 3 */
.btn-3 {
    position: relative;
    width: 300px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0;
    border: 1px solid #29f19c;
    background: transparent;
}

.btn-3 span {
    position: relative;
    display: block;
    border: 1px solid #29f19c;
    width: 100%;
    height: 100%;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-3:before,
.btn-3:after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    border: 1px solid linear-gradient(180deg, #29f19c 0%,
            #02a1f9 50%);
    transition: all 0.3s ease;
}

.btn-3:before {
    height: 0%;
    width: 2px;
}

.btn-3:after {
    width: 0%;
    height: 2px;
}

.btn-3:hover {
    background: linear-gradient(180deg, #29f19c 0%,
            #02a1f9 50%);
    box-shadow: none;
}

.btn-3:hover:before {
    height: 100%;
}

.btn-3:hover:after {
    width: 100%;
}

.btn-3 span:hover {
    color: #fff;
}

.btn-3 a:hover {
    color: #fff;
}

.btn-3 span:before,
.btn-3 span:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    border: 1px solid linear-gradient(180deg, #29f19c 0%,
            #02a1f9 50%);
    width: 250px;
    height: 40px;
    transition: all 0.3s ease;
}

.btn-3 span:before {
    width: 2px;
    height: 0%;
}

.btn-3 span:after {
    width: 0%;
    height: 2px;
}

.btn-3 span:hover:before {
    height: 100%;
}

.btn-3 span:hover:after {
    width: 100%;
}

.btn-3.active {
    /* 激活状态的样式 */
    background: transparent;
    box-shadow: none;
    color: #fff;
    background: linear-gradient(180deg, #29f19c 0%,
            #02a1f9 50%);
}

@media (max-width: 767px) {
    .frame {
        width: 90%;
        text-align: center;
    }
}

@media (max-width:450px) {
    .btn-3 {
        width: 220px;
    }

    .btn-3 span {
        font-weight: 600;
        letter-spacing: 0.5px;
        font-size: 13px;
    }
}

.layer-bg {
    display: flex;
    justify-content: center;
}

.layer-bg .small-bg-layer {
    display: none;
}

@media (max-width:650px) {
    .layer-bg .small-bg-layer {
        display: block;
    }

    .layer-bg .big-bg-layer {
        display: none;
    }
}


.img-fluid {
    display: none;
}

.content-product-features-img {
    display: flex;
    justify-content: center;
}

@media (max-width:1199px) {
    .img-fluid {
        display: block;
    }

    .img-fluid-2 {
        display: none;
    }
}

/*=================================
Appointment Area 
====================================*/
.appointment-bg {
    background-color: #000000;
}

.appointment-form {
    margin-bottom: 30px;
    margin-right: 0px;
}

.appointment-form .section-title {
    margin-bottom: 30px;
}

.appointment-form .section-title p {
    max-width: 615px;
    margin: 0;
}

.appointment-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.appointment-form .form-group .form-control {
    height: 50px;
    color: #948b9f;
    border: 1px solid #ebebeb;
    background-color: #f8f9fb;
    font-size: 14px;
    padding: 10px 20px;
    width: 100%;
}

.appointment-form .form-group .form-control:focus {
    outline: none;
    border-color: #00a9fc;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.appointment-form .form-group textarea.form-control {
    height: auto;
}

.appointment-form .nice-select {
    height: 50px;
    width: 100%;
    line-height: 32px;
    font-size: 15px;
    margin-bottom: 30px;
    padding-left: 20px;
    color: #10142D;
    background-color: #00a9fc;
}

.appointment-form .nice-select .list {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
    box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
    border-radius: 0;
    margin-top: 0;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.appointment-form .nice-select .list .option {
    -webkit-transition: .6s;
    transition: .6s;
    color: #10142D;
    padding-left: 20px;
    padding-right: 20px;
}

.appointment-form .nice-select .list .option:hover {
    background-color: #FC8E41 !important;
    color: #ffffff;
}

.appointment-form .nice-select .list .option .selected {
    background-color: transparent;
    font-weight: 600;
    color: #10142D;
}

.appointment-form .nice-select::after {
    height: 8px;
    width: 8px;
    border-color: #a7a7a7;
    right: 23px;
}

.appointment-form .default-btn {
    border: 0;
    outline: none;
    padding: 14px 60px;
    background: -webkit-linear-gradient(180deg, #00abfd 0%,
            #117dd7 100%);
}

.appointment-form-bg .form-group .form-control {
    background-color: #ffffff;
}

.appointment-img {
    position: relative;
    z-index: 1;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 20px;
    margin-bottom: 50px;
}

.appointment-img img {
    border-radius: 0 50px 0 50px;
}

.appointment-img::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    background: -webkit-linear-gradient(90deg, #00abfd 0%,
            #117dd7 100%);
}

.appointment-img::after {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: -webkit-linear-gradient(90deg, #00abfd 0%,
            #117dd7 100%);
}

/*=================================
Appointment Area End
====================================*/


/*  */

.color-box {
    display: flex;
}

.btm-box {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 80px;
    flex-wrap: wrap;
}

#box {
    width: 80px;
    height: 80px;
    border: 3px solid #fff;
    margin: 5% 0 0 0;
    background-color: #a6a6a6;
    background-size: cover;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* 垂直居中 */
    justify-content: center;
    /* 水平居中 */
}

#box p {
    color: #fff;
    margin-bottom: 0px;
    font-size: 18px;
}

#box2 {
    width: 80px;
    height: 80px;
    border: 3px solid #fff;
    margin: 5% 0 0 15px;
    background-color: #808080;
    background-size: cover;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* 垂直居中 */
    justify-content: center;
    /* 水平居中 */
}

#box2 p {
    color: #fff;
    margin-bottom: 0px;
    font-size: 18px;
}

#box3 {
    width: 80px;
    height: 80px;
    border: 3px solid #fff;
    margin: 5% 0 0 15px;
    background-color: #595959;
    background-size: cover;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* 垂直居中 */
    justify-content: center;
    /* 水平居中 */
}

#box3 p {
    color: #fff;
    margin-bottom: 0px;
    font-size: 18px;
}

#box4 {
    width: 80px;
    height: 80px;
    border: 3px solid #fff;
    margin: 5% 0 0 15px;
    background-color: #262626;
    background-size: cover;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* 垂直居中 */
    justify-content: center;
    /* 水平居中 */
}

#box4 p {
    color: #fff;
    margin-bottom: 0px;
    font-size: 18px;
}

#box5 {
    width: 80px;
    height: 80px;
    border: 3px solid #fff;
    margin: 5% 0 0 15px;
    background-color: #0d0d0d;
    background-size: cover;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* 垂直居中 */
    justify-content: center;
    /* 水平居中 */
}

#box5 p {
    color: #fff;
    margin-bottom: 0px;
    font-size: 18px;
}

#box6 {
    width: 80px;
    height: 80px;
    border: 3px solid #fff;
    margin: 5% 0 0 15px;
    background-color: #0d0d0d;
    background-size: cover;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* 垂直居中 */
    justify-content: center;
    /* 水平居中 */
}

#box6 p {
    color: #fff;
    margin-bottom: 0px;
    font-size: 18px;
}

.logo-box {
    vertical-align: middle;
    align-items: center;
}

.logo-box img {
    width: 220px;
    margin-top: 20px;
}

@media (max-width:991px) {

    #box,
    #box2,
    #box3,
    #box4,
    #box5,
    #box6 {
        width: 60px;
        height: 60px;
        border: 2px solid #fff;
    }

    #box p,
    #box2 p,
    #box3 p,
    #box4 p,
    #box5 p,
    #box6 p {
        font-size: 16px;
    }

    .logo-box img {
        width: 180px;
        margin-top: 30px;
    }
}

@media (max-width:767px) {

    #box,
    #box2,
    #box3,
    #box4,
    #box5,
    #box6 {
        width: 40px;
        height: 40px;
        border: 2px solid #fff;
    }

    #box p,
    #box2 p,
    #box3 p,
    #box4 p,
    #box5 p,
    #box6 p {
        font-size: 12px;
    }

    .logo-box img {
        width: 120px;
        margin-top: 20px;
    }
}

@media (max-width:403px) {
    .color-box {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo-box img {
        width: 120px;
        margin-top: 40px;
    }

    .btm-box {
        display: flex;
        justify-content: center;
        padding-top: 30px;
        flex-wrap: wrap;
    }

}

@media (max-width:345px) {

    .color-box {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    #box p,
    #box2 p,
    #box3 p,
    #box4 p,
    #box5 p,
    #box6 p {
        font-size: 12px;
    }


    .logo-box img {
        width: 120px;
        margin-top: 40px;
    }
}