/* Draxter site sections */
.draxter-container {
  max-width: var(--site-container-width, 1440px);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  box-sizing: border-box;
}

/* delivery */
/* #region */
.delivery-block {
    padding:160px 0;
}

.delivery-block .draxter-container{
    display:flex;
    flex-direction:column;
    gap:70px;
}

.delivery-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:24px;
}

.delivery-head h2{
    margin:0;
    max-width:665px;
    font-family:'SONGER SemiExpanded', sans-serif;
    font-weight:900;
    font-size:40px;
    line-height:1.1;
    text-transform:uppercase;
}

.delivery-head a{
    display:flex;
    align-items:center;
    gap:8px;
    color:#102631;
    font-size:22px;
    font-weight:400;
    line-height:1.5;
    flex-shrink:0;
    text-decoration:none;
    transition:color 0.2s ease;
}

.delivery-head a:hover{
    color:#3033ff;
}

.delivery-head svg{
    width:24px;
    height:24px;
    flex-shrink:0;
    transition:transform 0.2s ease, color 0.2s ease;
}

.delivery-head a:hover svg{
    transform:translateX(4px);
}

.delivery-body{
    display:grid;
    grid-template-columns:582px 1fr;
    gap:40px;
    align-items:start;
}

.delivery-body > p{
    margin:0;
    font-size:22px;
    line-height:1.5;
    max-width:582px;
}

.delivery-logos{
    display:inline-flex;
    flex-direction:column;
    gap:24px;
    margin-left:auto;
}

.delivery-logos-row{
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:28px;
}

.delivery-logos-row img{
    width:auto;
    height:28px;
    max-width:140px;
    object-fit:contain;
}

.delivery-map{
    width:100%;
    aspect-ratio:1440 / 548;
}

/* #endregion */

/* about */
/* #region */
.about-block {
    padding:140px 0 0;
}

.about-block .draxter-container{
    display:flex;
    flex-direction:column;
    gap:52px;
}

.about-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:116px;
}

.about-info{
    flex:1;
    max-width:612px;
    display:flex;
    flex-direction:column;
    gap:52px;
}

.about-title-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
}

.about-title-row h2{
    margin:0;
    font-family:'SONGER SemiExpanded', sans-serif;
    font-weight:900;
    font-size:40px;
    line-height:1.1;
    text-transform:uppercase;
}

.about-title-row a{
    display:none;
    align-items:center;
    gap:8px;
    font-size:14px;
    line-height:1.3;
}

.about-title-row svg{
    width:24px;
    height:24px;
    color:#8e8e8e;
}

.about-info > p{
    margin:0;
    max-width:574px;
}

.about-stats{
    flex:1;
    max-width:664px;
    display:flex;
    flex-direction:column;
    gap:40px;
}

.stats-row{
    display:flex;
    gap:32px;
}

.stat{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.stat-num{
    margin:0;
    font-family:'SONGER SemiExpanded', sans-serif;
    font-weight:900;
    font-size:32px;
    line-height:1.1;
    text-transform:uppercase;
}

.stat-text{
    margin:0;
}

.about-photo{
    width:100%;
    border-radius:28px;
    object-fit:cover;
    aspect-ratio:1440 / 568;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:32px;
}

.feature{
    display:flex;
    flex-direction:column;
    gap:32px;
    max-width:336px;
}

.feature img{
    width:128px;
    height:128px;
    object-fit:contain;
}

.feature:nth-child(4) img{
    width:138px;
    height:138px;
}

.feature h3{
    margin:0 0 20px;
    font-family:'SONGER SemiExpanded', sans-serif;
    font-weight:900;
    font-size:24px;
    line-height:1.2;
    text-transform:uppercase;
}

.feature p{
    margin:0;
}

/* #endregion */
/* адаптив */
/* #region */
@media (max-width: 1439px){
    .draxter-container{
        padding:0;
    }

    .delivery-body{
        grid-template-columns:1fr 1fr;
    }

    .delivery-body > p{
        max-width:none;
    }

    .delivery-logos{
        justify-content:start;
    }

    .about-top{
        gap:64px;
    }
}

@media (max-width: 1023px){
    .draxter-container{
        padding:0 10px;
    }

    .delivery-head{
        flex-direction:column;
    }

    .delivery-body{
        grid-template-columns:1fr;
        gap:48px;
    }

    .about-top{
        flex-direction:column;
        align-items:stretch;
        gap:48px;
    }

    .about-info{
        max-width:none;
        gap:32px;
    }

    .about-stats{
        max-width:none;
    }

    .about-features{
        grid-template-columns:repeat(2, 1fr);
    }

    .feature{
        max-width:none;
    }
}

@media (max-width: 767px){
    body{
        font-size:12px;
        line-height:1.5;
    }

    .draxter-container{
        padding:0 16px;
    }

    .delivery,
    .about{
        padding:40px 0;
    }

    .delivery-block .draxter-container,
    .about-block .draxter-container{
        gap:24px;
    }

    .delivery-head{
        gap:0;
    }

    .delivery-head h2{
        font-size:18px;
    }

    .delivery-head a{
        display:none;
    }

    .delivery-body{
        gap:20px;
    }

    .delivery-body > p{
        font-size:12px;
    }

    .delivery-logos{
        gap:14px;
    }

    .delivery-logos-row{
        gap:14px;
    }

    .delivery-logos-row img{
        height:19px;
        max-width:95px;
    }

    .delivery-map{
        aspect-ratio:328 / 147;
        object-fit:cover;
    }

    .about-title-row a{
        display:flex;
    }

    .about-title-row h2{
        font-size:18px;
    }

    .about-info{
        gap:24px;
    }

    .about-top{
        gap:24px;
    }

    .about-stats{
        gap:20px;
    }

    .stats-row{
        gap:20px;
    }

    .stat{
        gap:8px;
    }

    .stat-num{
        font-size:14px;
    }

    .about-photo{
        width:calc(100% + 32px);
        max-width:none;
        margin-inline:-16px;
        border-radius:0;
        aspect-ratio:360 / 142;
        object-fit:cover;
        object-position:center;
    }

    .about-features{
        grid-template-columns:1fr;
        gap:20px;
    }

    .feature{
        flex-direction:row;
        gap:20px;
        max-width:none;
    }

    .feature img,
    .feature:nth-child(4) img{
        width:62px;
        height:62px;
    }

    .feature h3{
        margin-bottom:8px;
        font-size:12px;
    }
}

/* #endregion */