/****
**
*
Doctors
*
**
****/

.doc-item {
    width: 300px;
    height: 464px;
    background-color: #fff;
    position: relative;
    box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.06), 0px 2px 8px rgba(0, 0, 0, 0.06), 0px 0px 1px rgba(0, 0, 0, 0.04);
    margin-right: 30px;
    margin-bottom: 30px;
    transition: .3s;
}

.doc-item:hover {
    box-shadow: 0px 7px 40px 5px rgba(139, 139, 139, 0.1), 0px 8px 16px 5px rgba(0, 0, 0, 0.06), 0px 2px 34px 10px rgba(0, 0, 0, 0.06), 0px 0px 7px rgba(0, 0, 0, 0.04);
}

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

.doc-pic {
    height: 270px;
    width: 100%;
    object-fit: cover;
}

.doc-info {
    box-sizing: border-box;
    padding: 12px 0 0 19px;
}

.doc-name {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    min-height: 48px;
    margin-bottom: 3px;
}

.doc-type {
    font-size: 14px;
    line-height: 17px;
    color: rgba(22, 26, 29, 0.8);
}

.doc-btn {
    position: absolute;
    bottom: 30px;
    left: 19px;
    width: calc(100% - 19px - 21px);
    height: 48px;
}

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

@media screen and (max-width: 740px) {
    .doc-item {
        width: 100%;
        margin: 0 0 30px 0;
    }
}

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