.service-order {
    margin-top: 60px;
}

.order-card {
    background: linear-gradient(23deg, rgba(232, 239, 255, 1) 0%, rgba(233, 240, 254, 1) 100%);
    max-width: 1360px;
    height: auto;
    border-radius: 50px;
    opacity: 0.8;
    display: flex;
    justify-content: center;
}

.order-card-container {
    display: flex;
    padding: 50px 0 60px 0;
    width: 90%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.order-card-form {
    width: 55%;
    height: 90%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.order-card-form-body {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.order-card-img {
    width: 40%;
    height: 90%;
}

.order-card-img img {
    width: 100%;
    height: auto;
    border-radius: 30px;

}

.order-card-heading h2 {
    font-size: 44px;
    font-weight: 600;
    line-height: 52px;
    letter-spacing: 0em;
    color: #056DFA;
}

.order-card-groups {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.personal-data-heading h4 {
    font-size: 28px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 0em;
    color: #13307E;
}

.order-group {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.personal-data-inputs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.data-input-group {
    display: flex;
    gap: 20px;
}

.personal-data-inputs input {
    height: 52px;
    border-radius: 16px !important;
    border: 1px solid #056DFA80;
    padding: 0 25px;
    width: 100%;
}

.personal-data-inputs select {
    height: 52px;
    border-radius: 16px;
    border: 1px solid #056DFA80;
    padding: 0 25px;
    width: 100%;
    background-color: #FFFFFF;
    color: #13307E;
    appearance: none;
}

.data-input-group input::placeholder {
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    color: #13307E;
    opacity: 0.5;
}

.order-amount-card {
    max-width: 670px;
    height: 111px;
    border-radius: 16px;
    border: 1px solid #056DFA80;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.order-amount-card-container {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

.order-amount-heading sub {
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
    letter-spacing: 0em;
    color: #056DFA;
}

.order-amount-body {
    display: flex;
    justify-content: space-between;
}

.order-amount-body sub {
    font-size: 18px;
    font-weight: 600;
    line-height: 23px;
    letter-spacing: 0em;
    color: #13307E;
}

.order-card-form hr {
    max-width: 670px;
    height: 2px;
    opacity: 0.1;
    color: #13307E;

}

.order-button {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.order-button button {
    width: 50%;
    height: 52px;
    border-radius: 16px;
    background-color: #056DFA;
    border: 1px solid transparent;
    color: #FFFFFF;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: center;
    cursor: pointer;
    transition: .3s;
}


.order-button button:hover {
    background-color: #13307E;
    border: 1px solid #13307E;
    color: #FFFFFF;
    transition: .3s;
}