.about {
    margin-bottom: 30px;
}
.aboutContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-left: 50px;
    margin-bottom: 40px;
}
.tg-block-expert {
    padding-bottom: 20px;
}
.aboutText {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.register {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 25px 50px;
    background: #f7fff3;
    margin-bottom: 40px;
}
.registerTitle {
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 400;
}
.registerText {
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 500;
    white-space: nowrap;
}
.registerContent {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.registerInput {
    padding: 12px;
    border-radius: 2px;
    font-size: 16px;
    outline: none;
    border: 1px solid #d9d9d9;
}
.registerInput:placeholder {
    color: #00000040;
}
.registerInputError {
    border-color: rgb(255, 136, 136);
}
.registerForm {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.aboutInfo {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 50px;
}
.aboutInfoGroup {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.aboutInfoList li {
    font-size: clamp(14px, 3vw, 16px);
}
.opportunity {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: #fff;
    padding: 65px 45px;
    border-radius: 25px 25px 0 0;
    margin-bottom: 40px;
}
.opportunityContent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 50px;
}
.opportunityItem {
    display: flex;
    align-items: center;
    gap: 40px;
}
.opportunityItemGroup {
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.opportunityItemTitle {
    font-size: clamp(16px, 3vw, 20px);
    color: var(--green);
    font-size: 500;
}
.opportunityItemText {
    font-size: clamp(14px, 3vw, 20px);
}
.opportunityButton {
    width: max-content;
    margin-left: auto;
}
.note {
    font-size: clamp(10px, 3vw, 12px);
    color: #00000099;
    margin-bottom: 30px;
    line-height: clamp(16px, 3vw, 22px);
}
.aboutLink {
    margin-left: auto;
}
.aboutLink:hover {
    background-color: #047a1f;
}
.aboutLink:active {
    background-color: #047a1f;
}
.button {
    border-radius: 10px;
    padding: 9px 20px;
    background-color: var(--green);
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    transition: 0.3s ease;
    height: max-content;
    white-space: nowrap;
    text-align: center;
}
.login {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}
.registerLink {
    font-size: 18px;
    color: var(--green);
    transition: 0.3s ease;
}
.registerLink:hover {
    color: #047a1f;
}
.loader {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-block;
    animation: spin 1s linear infinite;
    vertical-align: middle;
}
.registerBtn:disabled {
    background-color: #005c1d;
    width: 150px;
}
.expertsValue {
    display: flex;
    align-items: center;
    gap: 20px;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1024px) {
    .opportunityContent {
        display: flex;
        flex-direction: column;
    }
    .opportunityButton {
        margin: 0 auto;
    }
}
@media (max-width: 920px) {
    .aboutContent {
        flex-direction: column;
        align-items: flex-start;
    }
    .aboutText {
        margin: 0;
    }
    .aboutInfo {
        padding: 0;
    }
}
@media (max-width: 768px) {
    .register {
        padding: 20px;
    }
    .registerContent {
        flex-direction: column;
        align-items: flex-start;
    }
    .registerForm {
        width: 100%;
        flex-direction: column;
    }
    .aboutText {
        gap: 25px;
    }
    .aboutContent {
        padding: 0;
        margin-bottom: 30px;
    }
    .aboutInfo {
        text-align: center;
    }
    .aboutInfoGroup {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .opportunityContent {
        align-items: center;
    }
    .opportunityItem {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        text-align: center;
    }
    .opportunityItemImage {
        width: 190px;
    }
    .opportunity {
        padding: 25px;
        margin-bottom: 20px;
    }
    .expertsValue {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .opportunityItemImage {
        width: 90px;
    }
}
