.start {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.start__overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 200px;
    width: 100%;
    background: linear-gradient(180deg, rgba(245, 245, 245, 0) 0%, rgba(245, 245, 245, 0.4) 40%, rgba(245, 245, 245, 0.8) 80%, #f5f5f5 100%);
}

.start__header {
    position: fixed;
    width: 100%;
    z-index: 100;
    background-color: #FFF;
    padding: 24px 43px 10px 43px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 10px 10px #ffffff;
}

.start__nav {
    display: flex;
    align-items: center;
    color: #353535;
    gap: 32px;
}

.start__nav a {
    text-decoration: none;
    color: #353535 !important;
    font-size: 18px;
    font-weight: 400;
}

.start__nav a:hover {
    color: #559BED !important;
}

.start__button {
    display: flex;
    align-items: center;
    gap: 18px;
}

.start__button-link {
    height: 41px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px #E3F1FF solid;
    border-radius: 2rem;
    cursor: pointer;
    gap: 6px;
    padding: 0 16px;
}

.start__button-link .start__button-text {
    color: #559BED;
    font-size: 16px;
    font-weight: 600;
    margin-top: -2px;
}

.start__button-mobile {
    display: none;
}

.start__button-link:hover {
    background-color: #E3F1FF;
}

.start__header .logo {
    display: flex;
}

.start__header .email-icon,
.start__header .menu-icon {
    display: none; /* Скрываем иконки для больших экранов */
}

.start__header .dropdown {
    display: none; /* Скрываем dropdown по умолчанию */
    position: absolute;
    background-color: #fff;
    left: 0px;
    top: 50px;
    z-index: 100;
    color: #5B5B5B;
    width: 100%;
}

.start__header .dropdown a {
    display: block;
    padding: 10px;
    text-decoration: none;
}

.start__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 177px 20px;
}

.start__title {
    font-weight: 700;
    font-size: 48px;
    text-align: center;
}

.start__descr {
    font-size: 24px;
    color: #5F5E5E;
    text-align: center;
    max-width: 950px;
}

.start__descr span {
    color: #5F5E5E;
    font-weight: 600;
}

.start__btns {
    display: flex;
    gap: 40px;
}

.start__btn_patient {
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    gap: 13px;
}

.start__btn_org {
    border-radius: 25px;
    font-weight: 600;
    color: #000;
    display: flex;
    gap: 10px;
    background: #fff;
    border: 1px solid #E3F1FF;
}

.start__btn_org:hover {
    background: #e9e9e9;
}

.start__man {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

@media screen and (max-width: 1200px) {
    .reviews-link {
        display: none;
    }
}

@media screen and (max-width: 1100px) {
    .start__button-link {
        width: 41px;
        padding: 0;
    }

    .start__button-text {
        display: none;
    }
}

@media screen and (max-width: 750px) {
    .start {
        max-height: 700px;
    }

    .start__man {
        position: absolute;
        bottom: 50px;
        height: 50%;
        z-index: -100;
        left: 50%;
        transform: translateX(-30%);
        scale: 1.5;
    }

    .start__overlay {
        position: absolute;
        left: 0;
        height: 100px;
        width: 100%;
        background: linear-gradient(180deg, rgba(245, 245, 245, 0) 0%, rgba(245, 245, 245, 0.3) 50%, rgba(245, 245, 245, 0.7) 80%, #f5f5f5 100%);
    }

    .start__header {
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 20px 13px 15px 13px;
    }

    .start__header .logo {
        order: 1;
    }


    .menu-icon {
        display: block !important;
        position: absolute;
        z-index: 100;
    }

    .menu-icon img {
        width: 25px;
        height: 25px;
    }

    .email-icon {
        background-color: #54C1FB;
        width: 35px;
        height: 35px;
        align-items: center;
        justify-content: center;
        border-radius: 100px;
        display: flex !important;
        z-index: 100;
    }

    .email-icon a {
        display: flex;
        width: 20px;
        height: 20px;
    }

    .menu-icon {
        left: 10px;
    }


    .start__nav {
        display: none;
    }


    .start__nav .dropdown {
        display: block;
    }

    .start__header .dropdown a {
        padding: 12px 20px;
    }

    .start__info {
        padding-top: 20%;
        margin: 0 40px;
        align-items: start;
    }

    .start__title {
        font-size: 28px;
        text-align: left;
    }

    .start__descr {
        font-size: 16px;
        text-align: left;
    }

    .start__btns {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .start__btn_patient {
        font-size: 14px;
        border-radius: 25px;
        font-weight: 600;
        display: flex;
        gap: 13px;
    }
    .start__button {
        position: absolute;
        right: 10px;
        display: flex;
        gap: 10px;
    }

    .start__button-link {
        width: 35px;
        height: 35px;
        padding: 0;
    }

    .start__button-img {
        display: none;
    }

    .start__button-mobile {
        width: 16px;
        height: 16px;
        display: block;
    }
    
    .start__btn_org {
        font-size: 14px;
        border-radius: 25px;
        font-weight: 600;
        color: #000;
        display: flex;
        gap: 10px;
        background: #fff;
        border: 1px solid #E3F1FF;
    }
    
    .start__btn_org:hover {
        background: #e9e9e9;
    }
}

@media screen and (max-width: 500px) {
    .start__man {
        bottom: -10px;
    }
}


.start__copy-notification {
    position: fixed;
    left: 30px;
    bottom: -50px;
    padding: 12px 20px;
    background: #E3F1FF;
    color: #5B5B5B;
    font-size: 22px;
    border-radius: 4px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}
  
.start__copy-notification.show {
    bottom: 30px;
    opacity: 1;
}
