.first-section img {
    width: 70%;
}
.second-section .extra-content a::after {
    content: url(../images/design/arrow-right-solid.svg);
    display: inline-block;
    width: 14px;
    padding-left: 6px;
    top: 2px;
    position: relative;
}
.second-section li {
    display: flex;
    width: 100%;
}
.second-section li {
    border-bottom: 1px solid #BECCE6;
    margin-bottom: 16px;
    padding-bottom: 16px;
}
.second-section .li-inner-wrapper {
    display: flex;
    width: 100%;
    flex-direction: column;
}
.second-section .collapse-content {
    row-gap: 8px;
    display: flex;
    flex-direction: column;
}
.third-section li strong {
    font-weight: 500;
}
.fourth-section {
    padding: 60px 40px;
}
.fourth-section h2 {
    font-size: 52px;
}
.fourth-section .li-inner-wrapper {
    padding-bottom: 12px;
    border-bottom: 1px solid #DFDFDF;
}
.fourth-section .collapse-content {
    color: var(--gray);
    margin-top: 8px;
}
.fourth-section .section-main-content {
    width: 100%;
    max-width: 800px;
    padding-bottom: 0;
}
#asset-manager-form {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
#asset-manager-form .inner-wrapper {
    margin: 80px 40px;
    padding: 45px 90px;
    border-radius: 8px;
    max-width: 600px;
}
#asset-manager-form .subtitle {
    margin: 8px 0;
}
#asset-manager-form input, #asset-manager-form textarea, #asset-manager-form select {
    background: #F8F8F8;
    border: 1px solid #DFDFDF;
    border-radius: 6px;
    margin-top: 4px;
    padding: 10px;
    flex: 1;
}
textarea, input, select, ::placeholder {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 300;
}
#asset-manager-form h2 {
    font-size: 32px;
}
#asset-manager-form label {
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    margin-bottom: 2px;
}
#asset-manager-form .disclaimer {
    font-size: 14px;
    line-height: 20px;
    color: var(--gray);
    margin-bottom: 0;
}
.form-field {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    width: 100%;
}
.name-form-field-row {
    display: flex;
    column-gap: 12px;
    margin-top: 24px;
}
#asset-manager-form button {
    margin-top: 8px;
}
#asset-manager-form textarea {
    resize: none;
}
#asset-manager-form a {
    color: var(--blue);
}
.success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}
.icon-bg {
    background: #5890f940;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px
}
.icon {
    width: 50px;
    height: 50px;
    background-image: url('../images/design/check-solid.svg');
    background-size: contain;
    background-repeat: no-repeat;
    left: 2px;
    position: relative;
}
#error-message {
    color: #FD6157;
}

@media (max-width: 1200px) {
    #asset-manager-form img {
        display: none;
    }
}
@media (min-width: 900px) {
    .second-section {
        align-items: flex-start;
    }
    .second-section img {
        position: relative;
        top: 40px;
    }
}
@media (max-width: 800px) {
    #asset-manager-form .inner-wrapper  {
        margin: 40px;
        padding: 40px;
    }
}
@media (max-width: 600px){
    #asset-manager-form .inner-wrapper  {
        margin: 40px 20px;
        padding: 20px;
    }
    #asset-manager-form h2 {
        font-size: 26px;
    }
    .name-form-field-row {
        flex-direction: column;
    }
    .fourth-section {
        padding: 40px 20px;
    }
    .fourth-section h2 {
        font-size: 42px;
    }
}