.desktop-header_content{
    padding: 25px 30px 25px 45px;
    border-radius: 20px 20px 0 0;
}
.desktop-header_content:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 45px;
    width: calc(100% - 75px);
    height: 1px;
    background: #D3D3D3;
}
.desktop-header_content:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 20px;
    transform: translate(-100%, 0);
    background: radial-gradient(circle at 0% 0%, white, white 20px, transparent 20px), var(--light-gray);
}
.mobile-header_logo{
    margin: 0 20px 10px 0;
}

.top .container{
    background: var(--light-gray);
    padding: 0 50px 30px 50px;
    border-radius: 20px 0 20px 20px;
    overflow: auto;
}
.top_title{
    font-size: clamp(40px, calc(15px + 6vw), 120px);
    margin: 0 0 35px 0;
}
/*.breadcrumbs{
    margin: 0 0 50px 0;
}*/
.top_subtitle{
    color: var(--green);
    font-size: 24px;
    font-weight: 500;
}
.top_txt{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    line-height: 1.6em;
}
.top_hexagon-list{
    display: grid;
    grid-template-columns: 300px 300px 300px 1fr;
    align-items: flex-start;
    gap: 15px;
    margin: 60px 0 0 0;
}
.top_hexagon-wrapper{
    position: relative;
}
.top_hexagon{
    width: 100%;
    object-fit: contain;
}
.top_hexagon-txt{
    position: absolute;
    font-size: 20px;
    color: var(--gray);
    line-height: 1em;
}
.top_hexagon-txt:before{
    content: '';
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--green);
    position: absolute;
}
.top_become-dealer{
    width: 180px;
    margin: -50px 0 0 -40px;
}
.top_become-dealer.mobile{
    display: none;
    width: 120px;
    margin: 0 0 -85px 0;
    font-size: 14px;
    line-height: 1.2em;
}
:nth-child(1 of .top_hexagon-wrapper){
    .top_hexagon-txt{
        bottom: 0;
        right: -20px;
    }
    .top_hexagon-txt:before{
        bottom: calc(100% - 3px);
        right: calc(100% + 10px);
    }
}
:nth-child(2 of .top_hexagon-wrapper){
    .top_hexagon-txt{
        top: 0;
        left: -70px;
    }
    .top_hexagon-txt:before{
        top: calc(100% + 5px);
        left: calc(100% + 8px);
    }
}
:nth-child(3 of .top_hexagon-wrapper){
    .top_hexagon-txt{
        top: calc(100% - .5em);
        left: 196px;
        width: 162px;
    }
    .top_hexagon-txt:before{
        bottom: calc(100% + 0px);
        right:  calc(100% + 15px);
    }
}

@media (max-width: 1295px){
    .top .container{
        background: transparent;
        padding: 30px var(--mobile-gap) 0 var(--mobile-gap);
    }
    .top_subtitle{
        font-size: 18px;
        margin: 0 0 10px 0;
    }
    .top_become-dealer{
        display: none;
    }
    .top_become-dealer.mobile{
        display: grid;
    }
    .top_hexagon-list {
        grid-template-columns: 100%;
    }
    .top_hexagon-wrapper:nth-of-type(2n){
        margin: -75px 0;
    }
    .top_hexagon-wrapper:nth-of-type(2n - 1){
        width: 170px;
        margin: 0 0 0 85px;
    }
    .top_hexagon-wrapper:nth-of-type(2n){
        width: 140px;
    }
    .top_hexagon-txt{
        font-size: 14px;
        line-height: 1.2em;
        z-index: 2;
    }
    :nth-child(1 of .top_hexagon-wrapper){
        .top_hexagon-txt{
            top: auto;
            bottom: calc(100% + 5px);
            left: 65px;
            right: auto;
        }
        .top_hexagon-txt:before{
            top: calc(100% + 5px);
            left: 0;
        }
    }
    :nth-child(n + 2 of .top_hexagon-wrapper){
        .top_hexagon-txt{
            top: 70%;
            bottom: auto;
            left: 100%;
            right: auto;
        }
        .top_hexagon-txt:before{
            top: -5px;
            left: auto;
            right: calc(100% + 7px);
            bottom: auto;
        }
    }
}
@media (max-width: 800px) {
    .top_txt{
        grid-template-columns: 100%;
    }
    :nth-child(3 of .top_hexagon-wrapper) .top_hexagon-txt {
        top: calc(100% - 2em);
        left: 135px;
        width: fit-content;
    }
}