.doctors h2 {
    margin-bottom: 40px;
}
.doctors__i-inner {
    background-color: #DBF5FF;
    padding: 32px;
    border-radius: 20px;
    transition: transform .3s ease;
    position: relative;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, .25);
    height: 100%;
    min-width: 355px;
}
.doctors__i img {
    display: block;
    width: 100%;
    border-radius: 20px;
    margin-bottom: 26px;
}
.doctors h3 {
    font-size: 22px;
    margin-bottom: 12px;
}
.doctors__i p {
    font-size: 16px;
    margin-bottom: 16px;
}
.doctors__i-accredit {
    position: relative;
    padding-left: 24px;
}
.doctors__i-accredit::before {
    content: "";
    width: 14px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("images/icon-accredit.svg");
    background-size: contain;
    background-repeat: no-repeat;
}
.doctors__i .doctor-services-btn {
    padding: 0;
    cursor: pointer;
    border: 0;
    background-color: transparent;
    color: #0575A6;
    text-decoration: underline;
    font-size: 21px ;
}
.doctors .slick-track {
    display: flex !important;
}
.doctors .slick-slide {
    height: inherit !important;
}
.doctors .slick-slider {
    padding: 40px 0;
    position: relative;
    margin: 0 -60px;
}
.doctors .slick-track {
    padding: 40px 0;
}
.doctors .doctors__i.slick-active.slick-sibling {
    transform: scale(1.05);
    z-index: 1;
}
.doctors .slick-slide {
    transform: scale(1);
}
.doctors .slick-center {
    transform: scale(1.1);
    z-index: 2;
}
.doctors .slick-active.__prev {
    margin-right: calc(-8px * 2);
}
.doctors .doctors__i.slick-active.slick-sibling._prev {
    margin-right: -8px;
}
.doctors .doctors__i.slick-active.slick-sibling._next {
    margin-left: -8px;
}
.doctors .slick-active.__next {
    margin-left: calc(-8px * 2);
}
.doctors__arrows {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% + 140px);
    transform: translateX(-70px);
    position: absolute;
    top: 50%;
    left: 0;
}
.doctors__arrow {
    background-color: transparent;
    border: 0;
    width: 45px;
    height: 45px;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}
.doctors__arrow._left {
    background-image: url("/img/arrow-left.svg");
}
.doctors__arrow._right {
    background-image: url("/img/arrow-right.svg");
}
.doctors__wrap {
    position: relative;
}
.doctors__slider {
    display: none;
}
.doctors__slider._init {
    display: block;
}
.doctors .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    margin-top: 20px;
}
.doctors .slick-dots li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    cursor: pointer;
    margin: 0 6px;
    transition: all .3s;
}
.doctors .slick-dots button {
    font-size: 0;
    background-color: #2AB1E6;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all .3s;
}
.doctors .slick-dots .slick-active,
.doctors .slick-dots .slick-active button {
    width: 23px;
    height: 23px;
}
.doctors .slick-dots .dot-slick-sibling,
.doctors .slick-dots .dot-slick-sibling button {
    width: 17px;
    height: 17px;
}
.doctors .slick-slide {
    transition: all 1s;
}
.doctors .doctors__slider .slick-slide:not(.slick-active) {
    opacity: 0;
}
.doctors .doctors__slider.no-slider {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}

@media screen and (max-width: 1200px) {
    .doctors h2 {
        margin-bottom: 24px;
    }
    .doctors h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .doctors__i p {
        margin-bottom: 20px;
    }
    .doctors__i-inner {
        padding: 12px;
    }
    .doctors__arrow {
        width: 28px;
        height: 28px;
    }
    .doctors__arrows {
        width: calc(100% + 70px);
        transform: translateX(-30px);
    }
    .doctors .slick-dots {
        margin-top: 12px;
    }
}

@media screen and (max-width: 800px) {
    .doctors h3 {
        font-size: 14px;
    }
    .doctors__i .doctor-services-btn {
        font-size: 12px;
    }
    .doctors__arrows {
        display: none;
    }
    .doctors .slick-dots {
        display: none !important;
    }
    .doctors .slick-slider {
        padding: 0;
        margin: 0;
    }
    .doctors .doctors__i.slick-active.slick-sibling,
    .doctors .slick-slide,
    .doctors .slick-center {
        transform: scale(1) !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .doctors .slick-list {
        padding: 0 !important;
    }
    .doctors__i-inner {
        min-width: initial;
    }
}

/* Попап */
.doctor-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}
.doctor-popup__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}
.doctor-popup__content {
    background: #DBF5FF;
    padding: 40px;
    border-radius: 20px;
    max-width: 740px;
    /*width: 90%;*/

    position: relative;
    margin: 40px auto;
    z-index: 1001;
    /*position: fixed;*/
    /*top: 50%;*/
    /*left: 50%;*/
    /*transform: translate(-50%, -50%);*/
}
.doctor-popup__close {
    cursor: pointer;
}
.doctor-popup__top {
    display: flex;
    margin-bottom: 30px;
}
.doctor-popup-img {
    margin-right: 30px;
}
.doctor-popup h3 {
    font-size: 30px;
    margin-bottom: 8px;
}
.doctor-popup {
    font-size: 18px;
}
.doctor-popup__bottom-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}
.doctor-popup-medical-code {
    font-size: 16px;
    margin-bottom: 26px;
}
.doctor-popup__close {
    padding: 0;
    cursor: pointer;
    border: 0;
    background-color: transparent;
    color: #0575A6;
    text-decoration: underline;
    font-size: 21px ;
}
.doctor-popup__close._appointment {
    background-color: white;
    padding: 30px 40px;
    border-radius: 14px;
    color: #253774;
    text-decoration: none;
}

@media screen and (max-width: 1200px) {
    .doctor-popup__top {
        flex-direction: column;
        margin-bottom: 12px;
    }
    .doctor-popup-img {
        margin-right: 0;
        margin-bottom: 8px;
        align-self: center;
    }
    .doctor-popup h3 {
        font-size: 25px;
    }
    .doctor-popup-medical-code {
        margin-bottom: 12px;
    }
    .doctor-popup__bottom {
        font-size: 16px;
    }
    .doctor-popup__bottom-btns {
        flex-direction: column;
    }
    .doctor-popup__close._appointment {
        padding: 12px;
        text-align: center;
        margin-bottom: 12px;
    }
    .doctor-popup__close:last-child {
        align-self: flex-start;
    }
}