@charset "utf-8";
body > .rel_wrap,body form > .rel_wrap{
    margin-top: 238px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    display: grid;
    grid-template-columns: 384px 792px;
    grid-template-rows: repeat(3, auto);
    gap: 30px 24px;
}
body > .rel_wrap nav .box,body form > .rel_wrap nav .box{
    padding: 0;
}
body > .rel_wrap nav ul,body form > .rel_wrap nav ul{
    list-style-type: none;
}
body > .rel_wrap nav li a,body form > .rel_wrap nav li a{
    display: block;
    padding: 20px;
    position: relative;
    font-size: 16px;
    font-weight: 600;
}
body > .rel_wrap nav li a::after,body form > .rel_wrap nav li a::after{
    display: block;
    position:  absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    content: "";
    width: 6px;
    height: 8px;
    background-image: url(../img/nav_arrow.svg);
}
body > .rel_wrap nav ul li:not(:last-child) a::before,body form > .rel_wrap nav ul li:not(:last-child) a::before{
    display: block;
    position: absolute;
    bottom: 0;
    left: 20px;
    width: calc(100% - 40px);
    height: 1px;
    background-color: #eee;
    content: "";
}
body > .rel_wrap nav ul li span,body form > .rel_wrap nav ul li span{
    position: relative;
}
body > .rel_wrap nav ul li.active span::after,body form > .rel_wrap nav ul li.active span::after{
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 8px;
    background-color: var(--main_color);
    z-index: -1;
    left: 0;
    bottom: 0;
    border-radius: 5px;
}
section .content_section:not(:last-child){
    margin-bottom: 30px;
}
.visual{
    position: absolute;
    top: 139px;
    height: 200px;
    width: 100%;
}
@media screen and (max-width: 1199px) {
    body > .rel_wrap,body form > .rel_wrap{
        grid-template-columns: 100%;
        gap: 0;
    }
    body > .rel_wrap aside,body form > .rel_wrap aside{
        display: none;
    }
    body > .rel_wrap nav,body form > .rel_wrap nav{
        display: none;
    }
    body > .rel_wrap section,body form > .rel_wrap section{
        grid-column: 1;
        grid-row: 1 / span 1;
    }
}