.container{
    width: min(100%, 1440px);
    margin: auto;
}

/* header */
.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 165px;
    background-color: #FFFFFF;
}
.nav_ul{
    display: flex;
    column-gap: 37px;
}
.nav_a{
    font-family: DM Sans;
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 2px;
    color: #000000;
}
.header_btn{
    padding: 12px 24px;
    font-family: DM Sans;
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 2px;
    color: #FFFFFF;
    background-color: #000000;
    border: none;
    cursor: pointer;
}

/* main */
.main{
    display: flex;
}
.main_leftSide{
    padding: 173px 111px;
    background-color: #000000;
    position: relative;
}
.box{
    position: absolute;
    width: 6px;
    height: 304px;
    top: 50%;
    left: 0;
    opacity: 1;
    transform: translate(-50%, -50%);
    background: linear-gradient(26.57deg, #FFC593 0%, #BC7198 43.29%, #5A77FF 83.33%);
}
.main_h1{
    font-family: DM Sans;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 4.17px;
    text-transform: uppercase;
    margin-bottom: 21px;
    color: #FFFFFF;
}
.main_p{
    font-family: DM Sans;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0px;
    margin-bottom: 48px;
    opacity: 0.6;
    color: #FFFFFF;
}
.main_btn{
    font-family: DM Sans;
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 2px;
    color: #FFFFFF;
}
.main_btn::after{
    content: url(../images/Group\ 6.svg);
    margin-left: 18px;
    cursor: pointer;
}
