.section_7{
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    gap: 20px;
    padding: 40px 10%;
    margin: 150px 50px auto;
}

.section_7 .col1{
    display: flex;
    flex-direction: column;
    width: calc(50% - 10px);
    gap: 20px;
}
.section_7 .col1 .title{
    font-weight: bold;
    font-size: 2em;
    margin-bottom: 20px;
}
.section_7 .col1 .item i{
    color: white;
    padding: 20px;
    background-color: #667599;
    border-radius: .25rem;
    margin-right: 10px;
    font-size: 1.2em;
}
.section_7 .col1 .item{
    display: flex;
    align-items: center;
    font-size: 1.2em;
    height: 60px;
}
.section_7 .col2{
    display: flex;
    align-items: center;
    width: calc(50% - 10px);
}
.section_7 .col2 form{
    display: flex;
    flex-direction: column;

    margin: 0 auto;
    max-width: 320px;
    background-color: white;
    padding: 20px;
    border-radius: .25rem;
}
.section_7 .col2 form .title{
    font-weight: bold;
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
}
.section_7 .col2 form .label{}
.section_7 .col2 form .label input{}
.section_7 .col2 form .buttons{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
    margin-top: 50px;
}
.section_7 .col2 form .buttons .h-btn{
    padding: 14px 24px;
    border-radius: .25rem;
    cursor: pointer;
    user-select: none;
    font-weight: 500;
    width: 100%;
    background-color: var(--bg_blue);
    color: whitesmoke;
    text-align: center;
}
.section_7 .col2 form .buttons .h-btn:hover{
    transition: .2s;
    background-color: #7b8eb5;
}
.section_7 .bg_color{
    position: absolute;
    width: 50%;
    height: 100%;
    background-color: #99a9c0;
    z-index: -1;
    right: 0;
    top: 0;
}



@media screen and (max-width: 1025px) {
    .section_7 .col1{
        width: calc(60% - 10px);
    }
    .section_7 .col2{
        width: calc(40% - 10px);
    }

}
@media screen and (max-width: 769px) {
    .section_7{
        position: relative;
        display: flex;
        flex-direction: column;
    }
    .section_7 .col1{
        width: 100%;
    }
    .section_7 .col2{
        width: 100%;
    }
    .section_7 .bg_color{
        position: absolute;
        width: 100%;
        height: 50%;
        background-color: #99a9c0;
        z-index: -1;
        left: 0;
        top: 50%;
    }

}
@media screen and (max-width: 426px) {

}
@media screen and (max-width: 321px) {

}