* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
input, textarea {
    color: #2a2a2a;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #B7B7B7;
}
button {
    cursor: pointer;
}
:root {
    --wrapper-width: calc(100% - 25px);
}
body {
    background: #F1F1F1;
}
html {
    font-family: 'Inter', sans-serif;
}
.wrapper {
    width: var(--wrapper-width);
    margin: 0 auto;
}
header {
    width: 100%;
    padding-top: 15px;
}
header .title {
    font-size: clamp(15px, 5vw, 30px);
    font-weight: 600;
    text-align: center;
    margin-top: 15px;
}
header .logo {
    width: 20%;
    margin: 0 auto;

}
@media screen and (max-width: 750px) {
    header .logo.success {
        width: 20%;
    }
}
@media screen and (max-width: 450px) {
    header .logo.success {
        width: 25%;
    }
}
@media screen and (min-width: 750px) {
    header .logo.success {
        width: 10%;
    }
}
header .logo img{
    width: 100%;
}
main {
    width: 100%;
    min-height: 0px;
    margin-top: 20px;
}
form {
    display: flex;
    flex-direction: column;
}
form textarea {
    height: 140px;
}
@keyframes moveRight {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(100%);
    }
}
main .graduation {
    width: 100%;
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 0px 3px 8px -3px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 3px 8px -3px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 3px 8px -3px rgba(34, 60, 80, 0.2);
}
@keyframes imageChange {
    from {
      background-image: url('../img/svg/nostar.webp');
    }
    60% {
        transform: scale(1.2);
    }
    to {
        background-image: url('../img/svg/star.webp');
    }
}
main .graduation .grade:nth-child(1).animate {
    animation: imageChange 0.4s forwards;
}
main .graduation .grade:nth-child(2).animate {
    animation: imageChange 0.6s forwards;
}
main .graduation .grade:nth-child(3).animate {
    animation: imageChange 0.8s forwards;
}
main .graduation .grade:nth-child(4).animate {
    animation: imageChange 1s forwards;
}
main .graduation .grade:nth-child(5).animate {
    animation: imageChange 1.2s forwards;
}
main .graduation .grade {
    width: 35px;
    height: 35px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/svg/nostar.webp') center no-repeat;
    background-size: 35px;
    transition: all 0.15s ease;
}
main .graduation .grade.active {
    background: url('../img/svg/star.webp') center no-repeat;
    background-size: 35px;
}
main .graduation .grade:hover {
    transform: scale(1.1);
}
.data_input {
    width: 100%;
    margin-top: 24px;
}
.data_input-item:nth-child(1) {
    -webkit-box-shadow: 0px 3px 8px -3px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 3px 8px -3px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 3px 8px -3px rgba(34, 60, 80, 0.2);
}
.data_input-item {
    margin-bottom: 34px;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    position: relative;
}
.data_input-item input {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    color: rgb(56, 56, 56);
    border: none;
    padding: 0 15px;
    background: rgba(255, 255, 255, 0.6);
    font-size: clamp(15px, 5vw, 20px);
    -webkit-box-shadow: 0px 3px 8px -3px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 3px 8px -3px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 3px 8px -3px rgba(34, 60, 80, 0.2);
}
.data_input-item button {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.6);
    text-align: start;
    position: relative;
    display: flex;
    align-items: center;
    color: rgb(56, 56, 56);
    border: none;
    padding: 0 15px;
    font-size: clamp(15px, 5vw, 17px);
    -webkit-box-shadow: 0px 3px 8px -3px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 3px 8px -3px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 3px 8px -3px rgba(34, 60, 80, 0.2);
}
.button_submit {
    margin-top: 100px;
    margin-bottom: 10px;
    width: 100%;   
    /* position: fixed; */
    bottom: 15px;
}
.button_submit button {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    border: none;
    background: #bf0000;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(20px, 5vw, 27px);
}
.select_adviser {
    font-size: clamp(18px, 5vw, 25px);
}

.data_input-item button svg {
    position: absolute;
    right: 10px;
    transform: scale(1.3);
}

.data_input-item textarea {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 50px;
    border: none;
    font-size: clamp(15px, 5vw, 20px);
    padding: 15px;
    resize: none;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.6);
    -webkit-box-shadow: 0px 3px 8px -3px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 3px 8px -3px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 3px 8px -3px rgba(34, 60, 80, 0.2);
}
.consultant_menu {
    display: none;
}
.consultant_menu.active {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    top: 12px;
    border-radius: 10px;
    width: calc(100% - 25px);
    height: calc(100vh - 80px);
    z-index: 1;
    background: white;
    padding: 15px;
    transition: all 0.15s ease;
}
.list_consultant {
    width: 100%;
    padding: 15px 0;
    height: calc(100vh - 165px);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: scroll;
    overflow-x: hidden;
}
.consultant_item {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    color: #2a2a2a;
    background: #F1F1F1;
    border-radius: 10px;
    /* padding: 0 5px; */
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    border: 2px solid #e0e0e0;
    overflow: hidden;
}
.consultant_item.active {
    border: 2px solid #bf0000;
}
.consultant_item .consultant_logo {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 8px 0 0 8px;
}
.consultant_item .consultant_logo img{
    height: 100%;
}
.consultant_item span {
    margin-left: 10px;
    font-size: clamp(13px, 5vw, 20px);
}
.button_select_consultant {
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.button_select_consultant button {
    width: 100%;
    height: 40px;
    background: #bf0000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.title_item-data {
    position: absolute;
    left: 20px;
    top: -25px;
    font-size: 15.5px;
    color: #868686;
}
.button_select {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 7px;
}
.button_select img {
    height: 100%;
}
.menu_consultant_title {
    display: flex;
    width: 100%;
    height: 30px;
    align-items: center;
    justify-content: space-between;
    font-size: 25px;
    margin-bottom: 15px;
}
.close_menu_button {
    width: 30px;
    height: 30px;
    cursor: pointer;
}
