.nero {
    display: flex;
    min-height: 100vh;
    margin: 0;

}

.nero__main {
    min-height: 100vh;
    background-image: url("img/main-bg.png");
    background-color: #040a2d;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    flex: 1 1 auto;
    margin-left: 68px;
    margin-right: 68px;
}

.nero__side-wrapper {
    position: fixed;
    top: 0;
    width: 68px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.nero__side-wrapper--left {
    left: 0;
}

.nero__side-wrapper--right {
    right: 0;
}

.nero__side {
    position: relative;
    width: 68px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #040a2d;
    padding-bottom: 23px;
    z-index: 5;
}

.nero__side::before {
    content: "";
    display: block;
    width: 37px;
    height: 37px;
    position: absolute;
    top: 0;
    background-repeat: no-repeat;
    background-size: 37px 37px;
    background-position: center;
}

.nero__side--left {
    background-color: #30a561;
    box-shadow: 0px 4px 14px 0px rgba(42, 142, 92, 0.56);

}

.nero__side--left::before {
    left: 68px;
    background-image: url("img/menu-d-l.png");
}

.nero__side--right {
    background-color: #3055a5;
    box-shadow: 0px 4px 14px 0px rgba(59, 42, 142, 0.56);

}

.nero__side--right::before {
    right: 67px;
    background-image: url("img/menu-d-r.png");
}


.nero__menu-btn {
    width: 100%;
    height: 68px;
    margin-top: 23px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.nero__menu-icon {
    width: 27px;
    height: 24px;
}

.nero__menu-icon--mirror {
    transform: scaleX(-1);
}

.nero__menu-text {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    color: #ffffff;
    font-family: "Geologica", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    transform: translate(-50%, -50%) rotate(-90deg);
    transform-origin: center;
    white-space: nowrap;
    pointer-events: none;
}

.nero__header .nero__header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 68px;
    height: 100px;
    width: 100%;;
}

.nero__header-archive {
    font-family: Geologica;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;

    line-height: 100%;
    letter-spacing: 3%;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
}

.nero__event-banner {
    padding-top: 183px;
    padding-left: 80px;
    padding-right: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
}

.nero__event-banner-title {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 3%;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 37px;
}

.nero__event-banner-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 16px;

}

.nero__event-banner-info-item {
    display: flex;
    align-items: center;
    gap: 19px;
    background: rgba(255, 255, 255, 0.06);
    padding: 12px 20px;
    border-radius: 10px;
}

.nero__event-banner-info-item-text {
    font-family: Geologica;
    font-weight: 300;
    font-size: 24px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #fff;

}

.nero__event-banner-btn {
    text-decoration: none;
    font-family: Geologica;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 5%;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(15, 171, 148, 1);
    padding: 17px 20px;
    border-radius: 48px;
    display: inline-block;
    margin-top: 49px;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.nero__event-banner-btn:hover {
    background: rgba(15, 171, 148, 0.8);
    box-shadow: 0 4px 16px rgba(3, 78, 0, 0.4);
}

.nero__drawer {
    position: fixed;
    bottom: 0;
    width: 285px;
    height: 353px;

    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 3;
}

.nero__drawer--left {
    left: 68px;
    background: rgba(48, 165, 97, 1);
    border-top-right-radius: 120px;
    transform: translateX(-110%);
    padding: 40px 30px 40px 65px;
}

.nero__drawer--right {
    right: 68px;
    background: rgba(48, 85, 165, 1);
    border-top-left-radius: 120px;
    transform: translateX(110%);

    padding: 40px 65px 40px 30px;
}

.nero__side-wrapper:hover .nero__drawer,
.nero__drawer:hover {
    transform: translateX(0);
    opacity: 0.8;
    pointer-events: auto;
}

.nero__drawer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.nero__drawer-link {
    display: block;
    width: 100%;
    text-align: right;
    text-decoration: none;
    font-family: "Geologica", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
}

.nero__drawer--left .nero__drawer-link {
    text-align: left;
}

.nero__main--reg {
    background-image: url("img/reg-bg.png");
    display: flex;
    flex-direction: column;
}

.nero__reg-content {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex: 1 1 auto;
    padding: 55px;
    gap: 110px;
    margin-top: auto;
    margin-bottom: auto;
}

.nero__reg-content-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nero__reg-content-right {
    width: 50%;
}

.nero__reg-content-right-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(255, 255, 255, 0.11);
    border-radius: 30px;
    padding: 60px 51px;
}

.nero__input-group {
    display: flex;
    align-items: center;
    height: 58px;
    margin-bottom: 10px;
}

.nero__reg-content-right-form .input-group-label {
    flex: 0 0 40%;
    font-family: Geologica, sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

.nero__input-group .input-group-field {
    flex: 0 0 60%;
    width: 100%;
}

.nero__input-group--checkbox .input-group-field {
    flex: 1 1 auto;
    width: auto;
}

.nero__reg-content-right-form .form-control,
.nero__reg-content-right-form select.form-control {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 10px;
    padding: 16px;
    color: #ffffff;
    font-family: Geologica, sans-serif;
}

.nero__reg-content-right-form select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("img/select-arrow-ico.png");
    background-repeat: no-repeat;
    background-size: 9px 5px;
    background-position: right 24px center;
    padding-right: 48px;
}

.nero__reg-content-right-form select.form-control option {
    background: #040a2d;
    color: #ffffff;
}

.nero__reg-content-right-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.nero__input-group--checkbox {
    align-items: center;
    gap: 10px;
}

.nero__input-group--checkbox .input-group-label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 0 0 auto;
}

.nero__reg-content-right-form .form-control-checkbox {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 4px;
    background-color: transparent;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    cursor: pointer;
}

.nero__reg-content-right-form .form-control-checkbox:checked {
    background-color: rgba(255, 255, 255, 1);
}

.nero__reg-content-right-form .form-control-checkbox:checked::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 12px;
    border: solid #040a2d;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg);
}

.input-group-field--checkbox-text {
    flex: 1 1 auto;
    font-family: Geologica, sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 140%;
    color: #ffffff;
}

.nero__reg-content-right-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px;
    border-radius: 48px;
    background: rgba(15, 171, 148, 1);
    border: none;
    text-decoration: none;
    font-family: Geologica, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.nero__reg-content-right-btn:hover {
    background: rgba(15, 171, 148, 0.8);
    box-shadow: 0 4px 16px rgba(3, 78, 0, 0.4);
}

.nero__reg-errors {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.5);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.nero__reg-errors ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nero__reg-errors li {
    color: #ff4444;
    margin-bottom: 10px;
    font-size: 14px;
}

.nero__reg-content-right-form .form-control.error,
.nero__reg-content-right-form select.form-control.error {
    border-color: #ff4444 !important;
    box-shadow: 0 0 0 1px #ff4444;
}

.nero__reg-content-right-form .form-control-checkbox.error {
    border-color: #ff4444 !important;
    box-shadow: 0 0 0 1px #ff4444;
}

/* Успешное сообщение (регистрация / тезисы) */
.nero__reg-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.5);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.nero__reg-success ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nero__reg-success li {
    color: #4CAF50;
    margin-bottom: 10px;
    font-size: 14px;
}

/* Блок "Прием тезисов завершен" */
.nero__thesis-closed {
    padding: 40px 20px;
    text-align: center;
}

.nero__thesis-closed-title {
    font-family: Geologica, sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: rgba(50, 71, 81, 1);
}

.nero__thesis-closed-text {
    font-family: Geologica, sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.4;
    color: rgba(80, 89, 103, 1);
}

/* Форма конкурса молодых ученых */
.nero__form-wrapper--young {
    margin-top: 32px;
}

.young-section-title {
    font-family: Geologica, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    margin: 24px 0 16px;
    color: rgba(50, 71, 81, 1);
}

.young-publications {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    flex: 0 0 75%;
}

.young-publications-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    width: calc(33.333% - 16px);
    height: 100%;
}

.young-publications-item span {
    flex: 1 1 auto;
    font-family: Geologica, sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.3;
    color: rgba(80, 89, 103, 1);
}

.young-publications-item .form-control {
    flex: 0 0 120px;
}
/* Ошибки в форме тезисов */
.nero__form-wrapper .form-control.error,
.nero__form-wrapper select.form-control.error,
.nero__form-wrapper textarea.form-control.error {
    border-color: #ff4444 !important;
    box-shadow: 0 0 0 1px #ff4444;
}

.nero__form-wrapper .agreement .form-control-checkbox.error {
    border-color: #ff4444 !important;
    box-shadow: 0 0 0 1px #ff4444;
}

.nero__reg-content-left h3 {
    font-family: Geologica;
    font-weight: 300;
    font-style: Light;
    font-size: 19px;
    line-height: 100%;
    letter-spacing: 5%;
    color: #ffffff;
    margin-bottom: 29px;
}

.nero__reg-content-left h1 {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 28px;
    color: #ffffff;
    line-height: 40px;
    letter-spacing: 3%;
    text-transform: uppercase;
    margin-bottom: 29px;
}

.nero__main--content {
    background: none;
}

.nero__main--content .nero__header {
    background: url("img/reg-bg.png");
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.nero__main--content .nero__header-title {
    font-family: Geologica;
    font-weight: 300;

    font-size: 19px;
    line-height: 100%;

    text-align: center;
    color: #ffffff;
    margin-bottom: 29px;
}

.nero__main--content .nero__header-subtitle {
    font-family: "PT Serif", serif;
    font-weight: 400;

    font-size: 14px;
    line-height: 100%;

    text-align: center;
    text-transform: uppercase;
    color: #ffffff;

}

.nero__main--content .nero__header {
    padding-bottom: 86px;
}

.nero__main--content  .nero__header-event-title {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 29px;
}

.nero__main--content .nero__event-banner-info-item-text {
    font-family: Geologica;
    font-weight: 300;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
}
.nero__main--content  .nero__event-banner-info-item-img {
    width: 16px;
}

.nero__content {
    margin-top: 32px;
}

.nero__content p{
    font-family: Geologica;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #000;
    margin-bottom: 24px;
}

.nero__content h2 {
    font-family: Geologica;
    font-weight: 700;
    font-style: Bold;
    font-size: 26px;
    margin-bottom: 24px;
    line-height: 32px;
}

.nero__content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}

.nero__content ul > li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    color: rgba(80, 89, 103, 1);
    font-family: Geologica, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
}

.nero__content ul > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(22px / 2);
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: rgba(48, 165, 97, 1);
    border-radius: 0;
}

.nero__content ul ul {
    margin-top: 12px;
    margin-bottom: 12px;
    padding-left: 0;
}

.nero__content ul ul > li {
    padding-left: 21px;
    border-left: 1px solid rgba(208, 215, 222, 1);
    margin-bottom: 0px;
    line-height: 26px;
    font-size: 16px;
}

.nero__content ul ul > li::before {
    display: none;
}

.nero__alert-box {
    border: 1px solid rgba(239, 162, 141, 1);
    border-radius: 30px;
    background: rgba(255, 250, 241, 1);
    padding: 36px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 48px;
    margin-bottom: 40px;
}

.nero__alert-box p {
    margin: 0;
    color:  rgba(80, 89, 103, 1);
    font-family: Geologica;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
}

.nero__alert-box p b {
    color: rgba(224, 107, 60, 1);

}

.nero__form-wrapper {
    border: 1px solid rgba(213, 220, 230, 1);
    background: rgba(248, 249, 253, 1);
    border-radius: 30px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 81px;
}

.nero__form-wrapper h2 {
    font-family: Geologica;
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    margin-bottom: 24px;
}

.nero__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nero__form-wrapper .group-inputs {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.nero__form-wrapper .group-inputs label {
    flex: 0 0 25%;
    font-family: Geologica, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: rgba(80, 89, 103, 1);
    margin: 0;
}

.nero__form-wrapper .group-inputs .label-wrapper {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
}

.nero__form-wrapper .group-inputs .label-wrapper label {
    flex: 0 0 auto;
}

.nero__form-wrapper .group-inputs .form-control {
    flex: 0 0 75%;
    width: 100%;
    background: transparent;
    border: 1px solid rgba(50, 71, 81, 1);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: Geologica, sans-serif;
    font-size: 16px;
    color: rgba(50, 71, 81, 1);
}

.nero__form-wrapper .group-inputs select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("img/select-arrow-ico-dark.png");
    background-repeat: no-repeat;
    background-size: 9px 4.5px;
    background-position: right 24px center;
    padding-right: 48px;
}

.nero__form-wrapper .group-inputs .form-control::placeholder {
    color: rgba(50, 71, 81, 0.6);
}

.nero__form-wrapper .group-radio {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nero__form-wrapper .group-radio span {
    font-family: Geologica;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: rgba(80, 89, 103, 1);
    margin-bottom: 24px;
}

.group-radio-item {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.group-radio-item label {
    font-family: Geologica;
    font-weight: 300;
    font-size: 16px;
    line-height: 100%;
    color: rgba(50, 71, 81, 1);
}

.group-radio-item input[type="radio"] {
    width: 18px;
    height: 18px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #ffffff;
    border: 1px solid rgba(50, 71, 81, 1);
    border-radius: 50%;
    margin: 0;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.group-radio-item input[type="radio"]:checked {
    border: 5px solid rgba(48, 165, 97, 1);
    background-color: #ffffff;
}

.authors-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.authors{
    border-top: 1px solid rgba(149, 160, 176, 1);

    padding-top: 26px;
    margin-top: 26px;

}

.authors-item {
    border-bottom: 1px solid rgba(149, 160, 176, 1);
    margin-bottom: 26px;
    padding-bottom: 26px;
}

.nero__form-btn-add-author {
    background: rgba(15, 171, 148, 1);
    font-family: Geologica;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    color: #ffffff;
    display: inline-block;
    padding: 20px 24px;
    border-radius: 48px;
    text-decoration: none;
    display: flex;
    gap: 10px;
    align-items: center;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.nero__form-btn-add-author:hover {
    background: rgba(15, 171, 148, 0.8);
    box-shadow: 0 4px 16px rgba(3, 78, 0, 0.4);
}
.nero__form-btn-add-author img {
    width: 12px;
    height: 12px;
}

.nero__form-btn-add-author-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.nero__form-btn-delete-author-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;

}

.nero__form-btn-delete-author {
    padding: 20px 24px;
    border: 1px solid rgba(219, 125, 125, 1);
    color: rgba(72, 72, 72, 1);
    text-decoration: none;
    display: flex;
    border-radius: 48px;
    font-family: Geologica;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.label-wrapper-text {
    display: block;
    color: rgba(50, 71, 81, 1);
    font-family: Geologica;
    font-weight: 300;
    font-size: 12px;
    line-height: 100%;
    margin-top: 10px;
}

.agreement {
    color: rgba(50, 71, 81, 1);
    font-family: Geologica;
    font-weight: 300;
    font-size: 16px;
    line-height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.nero__form-wrapper .agreement .form-control-checkbox {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(50, 71, 81, 1);
    border-radius: 4px;
    background-color: transparent;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.nero__form-wrapper .agreement .form-control-checkbox:checked {
    background-color: rgba(50, 71, 81, 1);
}

.nero__form-wrapper .agreement .form-control-checkbox:checked::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 12px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg);
}

.nero__form-wrapper .agreement label {
    margin: 0;
    cursor: pointer;
}

.capcha-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.capcha-wrapper input{
    width: auto;
    height: 60px;
    margin-left: 15px;
    text-align: center;
    background: transparent;
    border: 1px solid rgba(50, 71, 81, 1);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: Geologica, sans-serif;
    font-size: 16px;
    color: rgba(50, 71, 81, 1);
}

.send-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 34px;
}

.send-btn-submit {
    background: rgba(15, 171, 148, 1);
    color: #ffffff;
    font-family: Geologica;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    text-transform: uppercase;
    padding: 20px 24px;
    border-radius: 48px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.send-btn-submit:hover {
    background: rgba(15, 171, 148, 0.8);
    box-shadow: 0 4px 16px rgba(3, 78, 0, 0.4);
}

.send-btn-reset {
    background: transparent;
    color: rgba(50, 71, 81, 1);
    font-family: Geologica;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    text-transform: uppercase;
    border: 1px solid rgba(225, 207, 170, 1);
    border-radius: 48px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.send-btn-reset img {
    width: 12px;
    height: 12px;

}

.nero__breadcrumbs {
    margin-bottom: 29px;
}


.nero__breadcrumbs-item {
    font-family: Geologica;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

.nero__breadcrumbs-arrow {
    width: 11px;
    height: 8px;
    margin: 0 10px;
}

.nero__program {
    margin-top: 40px;
}

.nero__program-tabs {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.nero__program-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 21px;
    padding: 32px 40px;
    border: 1px solid #B1CEE8;
    border-radius: 20px;
    background-color: #F5F8F9;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.nero__program-tab--active {
    background-color: #EBF1FF;
    border-color: #B1CEE8;
}

.nero__program-tab-title {
    font-family: Geologica;
    font-weight: 500;
    font-size: 36px;
    line-height: 1.25em;
    letter-spacing: 1%;
    color: #000000;
    margin: 0;
    text-align: left;
}

.nero__program-tab--active .nero__program-tab-title {
    color: #265299;
}

.nero__program-tab-date {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: Geologica;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.25em;
    letter-spacing: 1%;
    color: #000000;
}

.nero__program-tab-dot {
    color: #BFC4CB;
    font-size: 14px;
}

.nero__program-content {
    margin-top: 40px;
}

.nero__program-content-item {
    display: none;
    padding: 30px 100px;
    border: 1px solid rgba(213, 220, 230, 1);
    border-radius: 30px;
    margin-bottom: 150px;
}

.nero__program-content-item--active {
    display: block;
}

.nero__program-content-item {
    position: relative;
}

.nero__program-content-item-img {
    max-width: 100%;
    margin-bottom: 47px;
    position: relative;
}

.nero__program-content-item-img img {
    max-width: 100%;
    height: auto;
}


.nero__program-zoom-btn {
    position: absolute;
    bottom: -47px;
    left: calc(50% - 47px);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.nero__program-zoom-btn:hover {
    transform: scale(1.1);
}

.nero__zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nero__zoom-modal--active {
    opacity: 1;
    visibility: visible;
}

.nero__zoom-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.nero__zoom-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nero__zoom-modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nero__zoom-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
    z-index: 10001;
}

.nero__zoom-modal-close:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

.nero__program-content-item-link {
    background: rgba(15, 171, 148, 1);
    font-family: Geologica;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    color: #ffffff;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 20px 24px;
    border-radius: 48px;
    text-decoration: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.nero__program-content-item-link:hover {
    background: rgba(15, 171, 148, 0.8);
    box-shadow: 0 4px 16px rgba(3, 78, 0, 0.4);
}

.nero__program-content-item-link-icon {
    width: 16px;
    height: 16px;
}

.nero__partners {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 57px;
}

.nero__partners-item {
    background-color: rgba(241, 245, 248, 1);
    border-radius: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px;
    aspect-ratio: 1 / 1;
}

.nero__partners-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.nero__partners-big {
    background: rgba(241, 245, 248, 1);
    border-radius: 31px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    padding: 12px 40px;
    margin-top: 47px;
}

.nero__partners-big-title {
    font-family: Geologica;
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    text-transform: uppercase;
    color: #000000;
}

.nero__contacts {
    display: flex;
    gap: 24px;
}

.nero__contacts-item {
    background: rgba(241, 245, 248, 1);
    border-radius: 31px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-top: 25px;
    margin-bottom: 25px;
    width: 25%;
}

.nero__contacts-item-img {
    width: 130px;
    height: 130px;
    padding: 19px;
    border-radius: 100%;
    background: #fff;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.nero__contacts-item-img img {
    max-width: 100%;
}

.nero__contacts-item-title {
    color: #000;
    font-family: Geologica;
    font-weight: 400;
    font-size: 26px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 24px;
}

.nero__contacts-item-subtitle {
    color: rgba(80, 89, 103, 1);
    font-family: Geologica;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    margin-bottom: 24px;
}

.nero__contacts-item-contact-title {
    color: rgba(144, 153, 168, 1);
    font-family: Geologica;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    margin-bottom: 3px;
    margin-top: 10px;
}

.nero__contacts-item-phone {
    color: rgba(144, 153, 168, 1);
    display: inline-block;
    font-family: Geologica;
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid rgb(225, 227, 231);

    padding-bottom: 24px;
}

.nero__contacts-item-email {
    color: rgba(60, 131, 217, 1);
    font-family: Geologica;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    text-decoration: none;
}