@import url(./fonts.css);
@import url(./reset.css);
@import url(./globals.css);
@import url(./veriables.css);

/* header */

.header {
    width: 100%;
    display: inline-flex;
    align-items: center;
    height: 100px;
    box-shadow: var(--box-shadow-header);
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--background-color-white);
}
.header__row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
    padding-inline: var(--padd-x);
}
.header__logo {
    z-index: 102;
}
.logo__ellips {
    fill: var(--background-color-light);
}
.logo__path {
    fill: var(--color-black);
}
.header__logo--2 {
    display: none;
}
.header__menu {
    display: flex;
    align-items: center;
    column-gap: clamp(10px, 2.22vw, 30px);
}
.header__menu-list {
    display: flex;
    column-gap: clamp(10px, 3.12vw, 60px);
}
.header__menu-link {
    font-weight: 500;
    position: relative;
    padding-bottom: 3px;
}
.header__menu-link:hover {
    color: var(--color-accent);
}
.active {
    color: var(--color-accent);
}
.header__button,
.overlay__button {
    height: 50px;
    border: 1px solid var(--color-black);
    color: var(--color-black);
    border-radius: var(--border-radius-30);
}
.header__button:hover,
.overlay__button:hover {
    border: var(--border-none);
    color: var(--color-white);
    background-color: var(--background-color-accent);
}
/* header-theme */
.theme-toggle {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--background-color-white);
    border-radius: var(--border-radius-100);
    border: var(--border-none);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 102;
}
.theme-toggle img {
    transition: transform 0.5s ease, opacity 0.3s ease;
    position: absolute;
}
.swap-light {
    transform: rotate(0deg);
    opacity: 0;
}
.swap-dark {
    transform: rotate(0deg);
    opacity: 1;
}
.dark-theme .swap-light {
    transform: rotate(360deg);
    opacity: 1;
}
.dark-theme .swap-dark {
    transform: rotate(-360deg);
    opacity: 0;
}
/* header-buger */
.header__burger {
    order: 1;
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    display: none;
    flex-direction: column;
    justify-content: space-around;   
    background-color: transparent;                                               
    padding-right: 5px;
    cursor: pointer;
    z-index: 102;
    border: var(--border-none);
    padding: 0;
}
.header__burger-line {
    width: 90%;
    border: 2px solid var(--color-black);
    transition: var(--transition-duration);
}
.header__burger.active .header__burger-line:nth-child(1) {
    transform: translateY(14px) rotate(45deg);
}
.header__burger.active .header__burger-line:nth-child(2) {
    opacity: 0;
}
.header__burger.active .header__burger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
/* header-overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-duration);
    color: var(--color-black);
}
.overlay.active {
    opacity: 1;
    visibility: visible;
}
.overlay__menu-item {
    margin: 2.5rem 0;
}
.overlay__contact {
    margin-top: 30px;
}

/* section 1 - info */

.info__container {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}
.info__row {
    display: flex;
    justify-content: space-between;
    gap: clamp(10px, 2.6vw, 50px);
}

/* swiper */

.info__swiper {
    width: clamp(400px, 58vw, 870px);
    height: clamp(300px, 43.46vw, 652px);
    border-radius: var(--border-radius-15);
    cursor: grab;
}
.swiper__info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
}
.info__swiper-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-15);
}
.swiper__item {
    display: inline-flex;
    align-items: center;
    column-gap: 25px;
    height: 60px;
    background-color: var(--background-color-light);
    border-radius: var(--border-radius-30);
    padding-inline: 15px;
}
/* custom-button prev-next */
.custom-button-prev,
.custom-button-next {
    width: 25px;
    height: 25px;
    cursor: var(--cursor-light-pointer);
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-button-prev::after,
.custom-button-next::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid var(--color-light-gray);
    border-right: 3px solid var(--color-light-gray);
}
.custom-button-prev::after {
    transform: rotate(-135deg);
    margin-left: 4px;
}
.custom-button-next::after {
    transform: rotate(45deg);
    margin-right: 4px;
}
/* pagination */
.swiper-pagination-custom {
    display: flex;
    justify-content: space-between;
    column-gap: 10px;
}
.swiper-pagination-bullet {
    width: 15px !important;
    height: 15px !important;
    flex-shrink: 0;
    background-color: var(--color-light-gray) !important;
    border-radius: 50%;
    cursor: var(--cursor-light-pointer) !important;
    transition: var(--transition-duration);
}
.swiper-pagination-bullet-active {
    background: var(--color-black) !important;
}
/* swiper END */
.info__details {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 2.6vw, 50px);
}
.info__details-list,
.contacts__list {
    background-color: var(--background-color-light);
    padding: 25px 35px;
    border-radius: var(--border-radius-15);
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    box-shadow: var(--box-shadow-block);
}
.info__details-item,
.span-column,
.contacts__list-item {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.info__details-item-accent,
.contacts__item-accent {
    color: var(--color-accent);
}
.info__details-item-regular,
.contacts__item-regular {
    text-indent: 15px;
    white-space: nowrap;
}
.info__soc1al {
    display: block;
    align-content: center;
    padding: 25px 29px;
    background-color: var(--background-color-light);
    border-radius: var(--border-radius-15);
    max-height: 110px;
    box-shadow: var(--box-shadow-block);
}
.info__soc1al-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 12px;
}
.info__soc1al-text {
    display: flex;
    flex-direction: column;
    row-gap: 7px;
    text-align: center;
    white-space: nowrap;
}
.info__soc1al-text-accent {
    color: var(--color-accent);
}
.info__soc1al-text-regular:first-child {
    font-weight: 500;
}
.info__soc1al-text-regular:last-child {
    color: var(--color-light-gray);
    font-size: clamp(18px, 1.80vw, 22px);
}
.info__soc1al-button,
.recommendation__link {
    height: 47px;
    background-color: var(--background-color-accent);
    border-radius: var(--border-radius-23);
    color: var(--color-white);
    transition: var(--transition-duration);
}
.info__soc1al-button:hover,
.recommendation__link:hover {
    background-color: transparent;
    outline: 1px solid var(--background-color-accent);
    color: var(--color-black);
}
.info-description {
    font-weight: 300;
    font-size: clamp(18px, 1.87vw, 25px);
    text-align: justify;
    line-height: 150%;
}

/* section-2 advantages */

.advantages {
    background-color: var(--background-color-light);
}
.advantages__inner {
    display: flex;
    flex-direction: column;
    row-gap: 35px;
}
.advantages__list {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}
.advantages-details {
    border: var(--border-details);
    border-radius: var(--border-radius-10);
}
.advantages-details[open] .advantages-summary {
    color: var(--color-accent);
}
.advantages-details[open] .advantages-summary::after {
    transform: rotate(-45deg);
}
.advantages-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
    padding-inline: 20px;
    cursor: var(--cursor-light-pointer);
}
.advantages-summary::marker {
    content: '';
}
.advantages-summary::after {
    content: '+';
    appearance: none;
    font-size: 50px;
    font-weight: 100;
    transition: var(--transition-duration);
}
.advantages-description {
    font-weight: 300;
    font-size: 18px;
    line-height: 140%;
    padding: 0 50px 20px 20px;
}

/* recommendation */

.recommendation__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.recommendation__description {
    max-width: 750px;
    line-height: 150%;
    margin-top: 15px;
}
.recommendation__link {
    margin-top: 20px;
}

/* footer */

.footer {
    margin-top: 100px;
    box-shadow: var(--box-shadow-footer);
    background-color: var(--background-color-white);
}
.footer__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 50px;
}
.footer__body-contacts {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 25px;
}
.footer__targetAction {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.footer__targetAction-name {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.footer__targetAction-name p {
    text-wrap: nowrap;
    font-size: clamp(21px, 1.8vw, 24px);
    line-height: 120%;
}
.footer__button {
    height: 50px;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    border-radius: var(--border-radius-30);
    border: 1px solid var(--color-black);
    color: var(--color-black);
}
.footer__button:hover {
    border: var(--border-none);
    color: var(--color-white);
    background-color: var(--background-color-accent);
}
.footer__menu {
    display: flex;
    justify-content: space-between;
}
.footer__menu-navigations {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.allocated p {
    font-weight: 600;
    font-size: clamp(24px, 2.4vw, 32px);
}
.footer__menu-link {
    line-height: 150%;
    transition: var(--transition-duration);
}
.footer__menu-link:hover {
    color: var(--color-accent);
}
.footer__menu-item:nth-child(2) {
    padding-top: 5px;
}
.footer__body-copyright p {
    text-align: center;
    line-height: 150%;
    font-size: clamp(18px, 1.8vw, 24px);
}

/* contacts */

.contacts__inner {
    padding-block: 50px;
}
.contacts__row {
    padding-top: 20px;
    max-width: 1588px;
    display: flex;
    justify-content: space-between;
    column-gap: 10px;
    margin-top: 25px;
    padding-inline: var(--padd-x);
    margin: 0 auto;
}
.contacts__list {
    padding: 30px;
    max-width: 500px;
}
.contacts__list-item p {
    line-height: 110%;
    white-space: wrap !important;
}
.contacts__map {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: var(--border-radius-15);
    height: auto;
    padding-inline: 15px;
}
.contacts__map-title {
    color: var(--color-accent);
    font-size: 32px;
    text-align: center;
    padding: 25px 25px;
}
.contacts__map div {
    width: clamp(400px, 61.72vw, 1000px);
    height: 100%;
    padding: 15px;
    border-radius: var(--border-radius-15);
    box-shadow: 0px 0px 10px 2px rgba(53, 126, 214, 0.38) inset;
}
.contacts__map div iframe {
    border-radius: var(--border-radius-10);
    width: 100%;
    height: 100%;
}

/* specialties */

.specialties {
    margin-top: 30px;
}
.specialties__inner {
    padding-top: 40px;
}
.specialties__grid-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(10px, 2.25vw, 30px);
}
.specialties__grid-item {
    max-width: 650px;
    border-radius: var(--border-radius-23);
    transition: var(--transition-duration);
}
.first-card {
    background-color: rgba(81, 205, 56, 0.1);
    border: 2px solid rgba(81, 205, 56, 0.1);
    color: #51cd38;
}
.second-card {
    background-color: rgba(56, 195, 205, 0.1);
    border: 2px solid rgba(56, 195, 205, 0.1);
    color: #38c3cd;
}
.third-card {
    background-color: rgba(56, 205, 170, 0.1);
    border: 2px solid rgba(56, 205, 170, 0.1);
    color: #38cdaa;
}
.fourth-card {
    background-color: rgba(205, 200, 56, 0.1);
    border: 2px solid rgba(205, 200, 56, 0.1);
    color: #cdc838;
}
.fifth-card {
    background-color: rgba(56, 122, 205, 0.1);
    border: 2px solid rgba(56, 122, 205, 0.1);  
    color: #387acd;
}
.sixth-card {
    background-color: rgba(249, 173, 50, 0.1);
    border: 2px solid rgba(249, 173, 50, 0.1);
    color: #f9ad32;
}
.seventh-card {
    background-color: rgba(56, 63, 205, 0.1);
    border: 2px solid rgba(56, 63, 205, 0.1);
    color: #383fcd;
}
.eighth-card {
    background-color: rgba(99, 105, 147, 0.1);
    border: 2px solid rgba(99, 105, 147, 0.1);
    color: #636993;
}
.ninth-card {
    background-color: rgba(205, 56, 56, 0.1);
    border: 2px solid rgba(205, 56, 56, 0.1);
    color: #cd3838;
}
.tenth-card {
    background-color: rgba(128, 56, 205, 0.1);
    border: 2px solid rgba(128, 56, 205, 0.1);
    color: #8038cd;
}
.specialties__grid-link {
    white-space: wrap;
}
.specialties__card {
    padding-inline: 40px;
    padding-block: 30px;
}
.specialties__card-id {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.specialties__id {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding-inline: 20px;
    background-color: var(--background-color-in-ellips);
    border-radius: var(--border-radius-30);
}
.specialties__id p {
    font-weight: 600;
    font-size: clamp(20px, 1.8vw, 24px);
    color: var(--color-black);
}
.specialties__icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--background-color-in-ellips);
    border-radius: var(--border-radius-100);
    flex-shrink: 0;
}
.specialties__icon svg {
    display: flex;
}
.specialties__card-subtitle {
    max-width: 566px;
    padding-top: 10px;
    font-weight: 600;
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 120%;
}
.specialties__card-description {
    padding-top: 15px;
    font-size: clamp(16px, 1.5vw, 20px);
    color: var(--color-light-gray);
    line-height: 120%;
}

/* apply */

.apply {
    line-height: 200%;
}
.apply__inner {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}
.apply__form {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.form__subtitle-where {
    font-size: clamp(20px, 1.8vw, 24px);
    font-weight: 700;
    text-align: right;
    line-height: 120%;
}
.d-flex {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
label {
    color: var(--color-accent);
    font-weight: 500;
}
input, select {
    display: inline-flex;
    align-items: center;
    height: 50px;
    background-color: transparent;
    border: 1px solid var(--color-black);
    border-radius: var(--border-radius-10);
    font-family: inherit;
    font-size: inherit;
    padding-left: 10px;
    max-width: 350px;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: var(--color-black);
    cursor: inherit;
}
select {
    margin-block: 10px;
}
input[type="checkbox"],
input[type="radio"] {
    width: 20px;
    height: 20px;
}
.form__statement,
.form__aboutus,
.form__applications {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.form__subtitle {
    text-transform: uppercase;
    text-align: center;
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 700;
}
.d-column {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.passport-details__list {
    width: 100%;
}
.passport-details__list input[type="number"] {
    max-width: 85px;
}
.applications__list {
    list-style-type: decimal;
    padding-left: var(--padd-x);
}
.form__button {
    padding: 0;
    color: var(--color-black);
}
.form__button:hover {
    background-color: var(--background-color-accent);
    border: var(--border-none);
    color: var(--color-white);
}

/* test */

:root {
    --test-secondary: #3b82f6;
    --test-dark: #1e40af;
    --test-success: #10b981;
    --test-border: #d1d5db;
    --test-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}
.header__test-inner {
    padding-bottom: 0;
}
.header__test {
    text-align: center;
}
.test-title {
    color: var(--color-accent);
}
.test-subtitle {
    line-height: 125%;
    margin-top: 10px;
}
.test-navigation, .result-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.progress-bar {
    margin-top: 20px;
    height: 8px;
    background-color: var(--background-color-light);
    border-radius: 4px;
    margin-bottom: 15px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent), var(--test-secondary));
    width: 10%;
    border-radius: 4px;
    transition: width 0.3s ease;
}
.progress-text {
    color: var(--color-light-gray);
    text-align: left;
}
.question-card {
    border-radius: var(--border-radius-15);
    padding: 40px;
    box-shadow: var(--test-shadow);
    margin-bottom: 30px;
    border: 1px solid var(--test-border);
    transition: transform 0.2s ease;
}
.question-card:hover {
    transform: translateY(-2px);
}
.question-text {
    margin-bottom: 30px;
    line-height: 1.4;
    font-weight: 600;
}
.options-container {
    display: grid;
    gap: 15px;
}
.option {
    padding: 18px 20px;
    background: var(--background-color-in-ellips);
    border: 2px solid var(--test-border);
    border-radius: var(--border-radius-10);
    cursor: var(--cursor-light-pointer);
    transition: all 0.2s ease;
    text-align: left;
    position: relative;
    text-wrap: wrap;
}
.option:hover {
    background: #dbeafe;
    border-color: var(--color-accent);
    transform: translateX(5px);
}
.option.selected {
    background: linear-gradient(135deg, #dbeafe);
    border-color: var(--color-accent);
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.2);
}
.option-number {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: var(--color-accent);
    color: white;
    border-radius: var(--border-radius-100);
    text-align: center;
    line-height: 28px;
    margin-right: 12px;
    font-weight: 600;
    font-size: 0.9rem;
}
.result-card {
    line-height: 120%;
    border-radius: var(--border-radius-15);
    padding: 40px;
    box-shadow: var(--test-shadow);
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid var(--test-border);
}
.result-title {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 30px;
    font-weight: 700;
}
.specialty-match {
    color: var(--test-success);
    margin-bottom: 25px;
    font-weight: 600;
    padding: 15px;
    background: #f0fdf4;
    border-radius: var(--border-radius-10);
    border: 2px solid #bbf7d0;
}
.specialties-container {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}
.specialty-card {
    line-height: 120%;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: var(--border-radius-10);
    padding: 25px;
    border-left: 5px solid var(--color-accent);
    transition: all 0.3s ease;
    text-align: left;
    border: 2px solid var(--test-border);
}
.specialty-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--color-accent);
}
.specialty-code {
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.specialty-name {
    color: #1f2937;
    margin-bottom: 10px;
    font-weight: 600;
}
.specialty-desc {
    color: var(--color-black);
    line-height: 1.5;
}
.specialty-match-percentage {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 35px;
    background: var(--test-success);
    color: var(--color-white);
    border-radius: var(--border-radius-23);
    font-weight: 600;
    margin-top: 10px;
}
.prev-btn, .next-btn, .submit-btn, .retry-btn, .clear-results-btn, .goto-specialties-btn {
    height: 50px;
    border-radius: var(--border-radius-15);
    border: 2px solid var(--color-accent);
}
.prev-btn {
    background: white;
    color: var(--color-accent);
}
.prev-btn:hover:not(:disabled) {
    background: var(--background-color-accent);
    color: var(--color-white);
    border: var(--border-none);
}
.prev-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.next-btn, .submit-btn, .retry-btn, .goto-specialties-btn {
    background-color: var(--background-color-accent);
    color: var(--color-white);
}
.next-btn:hover, .submit-btn:hover, .retry-btn:hover, .goto-specialties-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}
.retry-btn {
    margin-top: 20px;
    background: linear-gradient(135deg, #10b981, #34d399) !important;
    border-color: #10b981 !important;
}
.clear-results-btn {
    margin-left: 10px;
    border: var(--border-none);
    background-color: rgb(233, 70, 70);
    color: var(--color-white);
}
.clear-results-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 60, 37, 0.3);
}

/* 404 page */

.error__inner,
.error {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    row-gap: 10px;
    line-height: 1.2;
}
.error__title {
    font-size: 20vw;
    font-weight: 900;
    color: var(--color-accent);
}
.error__desc {
    font-weight: 600;
}
.error__link {
    color: var(--color-accent);
    margin-top: 5px;
}


/* media */

@media(hover: hover) {
    .specialties__grid-item:hover {
        transform: scale(1.02);
        box-shadow: 0 0 15px currentColor;
    }
}
@media(max-width: 1260px) {
    .contacts__map div {
        width: 100%;
        height: 400px;
    }
    .contacts__row {
        flex-direction: column;
    }
    .contacts__list {
        max-width: 100%;
    }
}
@media(max-width: 1180px) {
    .info__row {
        flex-wrap: wrap;
    }
    .info__details {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
    .info__soc1al {
        max-height: 100%;
    }
    .info__swiper,
    .swiper__info-container {
        width: 100%;
    }
    .info__details-item, 
    .info__details-item .span-column {
        flex-wrap: wrap;
        flex-direction: row;
    }
}
@media(max-width: 1086px) {
    .header {
        height: 100px;
    }
    .header__menu {
        flex-wrap: wrap;
        column-gap: 15px;
        row-gap: 10px;
    }
    .header__menu-list {
        column-gap: 15px;
    }
    .header__logo--2 {
        display: block;
    }
    .header__logo--1 {
        display: none;
    }
    .theme-toggle {
        order: 1;
    }
    .header__button {
        margin-left: auto;
    }
    .specialties__icon {
        width: 55px;
        height: 55px;
    }
    .specialties__icon svg {
        width: 30px;
        height: 30px;
    }
    .apply__form,
    .form__statement,
    .form__aboutus,
    .form__applications {
        row-gap: 10px;
    }
    .d-flex {
        row-gap: 0;
    }
    input, select {
        margin-block: 10px;
    }
}
@media(max-width: 900px) {
    .theme-toggle {
        width: 40px;
        height: 40px;
        margin-left: auto;
    }
    .theme-toggle img {
        width: 35px;
        height: 35px;
    }
}
@media(max-width: 800px) {
    .info__details {
        flex-wrap: wrap;
    }
    .info__soc1al,
    .info__details-list {
        max-width: 100%;
        width: 100%;
        padding: 25px 0;
    }
    .info__details-item, 
    .info__details-item .span-column {
        text-align: center;
        flex-direction: column;
    }
    .info__details-list p {
        text-indent: 0;
    }
}
@media(max-width: 767px) {
    .header {
        height: auto;
        padding: 5px 0 5px 0;
    }
    .logo {
        width: 65px;
        height: 65px;
    }
    .header__row {
        column-gap: 20px;
    }
    .header__menu-list, 
    .header__button {
        display: none;
    }
    .header__burger {
        display: flex;
    }
    .specialties__grid-list {
        width: 100%;
        grid-template-columns: repeat(1, 1fr);
    }
    .specialties__grid-item {
        max-width: 100%;
    }
    .footer__body-contacts {
        flex-wrap: wrap;
    }
    .apply {
        line-height: 120%;
    }
    .form__statement-description {
        line-height: 200%;
    }
    input {
        max-width: 98%;
    }
    .test-container {
        padding: 20px 15px;
    }
    .test-title {
        font-size: 2rem;
    }
    .question-card, .result-card {
        padding: 20px;
    }
    .question-text {
        font-size: 1.3rem;
    }
    .option {
        padding: 15px;
    }
    .navigation {
        flex-direction: column;
        gap: 15px;
    }
    .prev-btn, .next-btn, .submit-btn {
        width: 100%;
        justify-content: center;
    }
    .specialty-card {
        padding: 20px;
    }
}
@media(max-width: 676px) {
    .contacts__map div {
        height: 300px;
    }
    .option {
        font-size: 15px;
    }
}
@media(max-width: 518px) {
    .advantages-summary {
        line-height: 140%;
        padding: 20px;
    }
    .advantages-description {
        padding: 0 20px 20px 20px;
    }
}
@media(max-width: 480px) {
    .contacts__map div {
        height: 250px;
    }
    .info-description {
        text-align: start;
    }
    .specialties__card {
        padding: 20px;
    }
    .test-title {
        font-size: 1.8rem;
    }
    .question-text {
        font-size: 1.2rem;
    }
    .option-number {
        width: 24px;
        height: 24px;
        line-height: 24px;
        margin-right: 8px;
    }
}
@media(max-width: 430px) {
    .footer__targetAction {
        width: 100%;
    }
    .footer__targetAction-name {
        justify-content: space-between;
    }
    .footer__targetAction-name p {
        text-align: right;
    }
}