
.gh-pf,
.gh-pf *,
.gh-pf *::before,
.gh-pf *::after{
    box-sizing:border-box;
}

.gh-pf{
    width:100%;
    padding:70px 42px;
    background:#f5f5f3;
    color:#25292d;
    font-family:"Titillium Web",Arial,sans-serif;
}

.gh-pf__inner{
    width:100%;
    max-width:1500px;
    margin:0 auto;
}

.gh-pf__main{
    --gh-pf-gallery-width:48%;
    display:grid;
    grid-template-columns:minmax(0,1fr) var(--gh-pf-gallery-width);
    gap:70px;
    align-items:center;
}

.gh-pf__content{
    min-width:0;
}

.gh-pf__eyebrow{
    margin-bottom:12px;
    color:#ef3123;
    font-family:"Tungsten","Arial Narrow",sans-serif;
    font-size:22px;
    line-height:1;
    text-transform:uppercase;
    font-weight:700;
    letter-spacing:.03em;
}

.gh-pf__heading,
.gh-pf__feature-title,
.gh-pf__trust-item{
    font-family:"Tungsten","Arial Narrow",sans-serif;
    text-transform:uppercase;
    font-weight:700;
}

.gh-pf__heading{
    margin:0;
    font-size:clamp(48px,4.4vw,82px);
    line-height:.9;
}

.gh-pf__divider{
    display:block;
    width:58px;
    height:4px;
    margin:22px 0 26px;
    background:#ef3123;
}

.gh-pf__intro{
    max-width:700px;
    margin-bottom:28px;
    font-size:18px;
    line-height:1.55;
}

.gh-pf__features{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
}

.gh-pf__feature{
    min-width:0;
    padding:18px;
    background:#fff;
    display:grid;
    grid-template-columns:42px minmax(0,1fr);
    gap:14px;
    align-items:center;
    border:1px solid rgba(0,0,0,.08);
}

.gh-pf__feature-icon{
    width:42px;
    height:42px;
    border:1px solid currentColor;
    border-radius:50%;
    color:#ef3123;
    display:flex;
    align-items:center;
    justify-content:center;
}

.gh-pf__feature-icon i{
    color:inherit;
    font-size:18px;
}

.gh-pf__feature-icon svg,
.gh-pf__feature-icon .e-font-icon-svg{
    width:20px;
    height:20px;
    color:inherit;
    display:block;
}

.gh-pf__feature-icon svg [fill]:not([fill="none"]){
    fill:currentColor;
}

.gh-pf__feature-icon svg [stroke]:not([stroke="none"]){
    stroke:currentColor;
}

.gh-pf__feature-copy{
    min-width:0;
    display:grid;
    gap:4px;
}

.gh-pf__feature-title{
    font-size:23px;
    line-height:1;
}

.gh-pf__feature-description{
    line-height:1.4;
}

.gh-pf__gallery{
    min-width:0;
}

.gh-pf__main-image{
    width:100%;
    height:500px;
    background:#ddd;
    overflow:hidden;
}

.gh-pf__main-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.gh-pf__placeholder{
    width:100%;
    height:100%;
    padding:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#666;
}

.gh-pf__thumbs{
    margin-top:12px;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
}

.gh-pf__thumb{
    height:105px;
    padding:0;
    border:3px solid transparent;
    background:none;
    overflow:hidden;
    cursor:pointer;
}

.gh-pf__thumb.is-active{
    border-color:#ef3123;
}

.gh-pf__thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.gh-pf__trust{
    margin-top:34px;
    padding:22px 28px;
    background:#080808;
    color:#fff;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
}

.gh-pf__trust-item{
    min-width:0;
    padding:6px 18px;
    display:flex;
    gap:12px;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-size:21px;
    line-height:1;
}

.gh-pf__trust-item + .gh-pf__trust-item{
    border-left:1px solid rgba(255,255,255,.24);
}

.gh-pf__trust-icon{
    color:#ef3123;
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
}

.gh-pf__trust-icon i{
    color:inherit;
}

.gh-pf__trust-icon svg,
.gh-pf__trust-icon .e-font-icon-svg{
    width:20px;
    height:20px;
    color:inherit;
    display:block;
}

.gh-pf__trust-icon svg [fill]:not([fill="none"]){
    fill:currentColor;
}

.gh-pf__trust-icon svg [stroke]:not([stroke="none"]){
    stroke:currentColor;
}

@media(max-width:1024px){
    .gh-pf__main{
        grid-template-columns:1fr;
    }

    .gh-pf__gallery{
        order:-1;
    }

    .gh-pf__main-image{
        height:430px;
    }

    .gh-pf__trust{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .gh-pf__trust-item:nth-child(3){
        border-left:0;
    }

    .gh-pf__trust-item:nth-child(n+3){
        border-top:1px solid rgba(255,255,255,.24);
    }
}

@media(max-width:767px){
    .gh-pf{
        padding-left:20px;
        padding-right:20px;
    }

    .gh-pf__main-image{
        height:320px;
    }

    .gh-pf__features{
        grid-template-columns:1fr;
    }

    .gh-pf__thumbs{
        grid-template-columns:repeat(3,minmax(0,1fr));
        gap:8px;
    }

    .gh-pf__thumb{
        height:78px;
    }

    .gh-pf__trust{
        grid-template-columns:1fr;
        padding:10px 20px;
    }

    .gh-pf__trust-item{
        padding:16px 0;
        justify-content:flex-start;
        text-align:left;
    }

    .gh-pf__trust-item + .gh-pf__trust-item,
    .gh-pf__trust-item:nth-child(n+3){
        border-left:0;
        border-top:1px solid rgba(255,255,255,.24);
    }
}
