@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root{
    --primary: #F2A93B;
}
.btn-primary, .btn-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}
.installers{
    & > div{
        border-bottom: 1px solid black;
    }
    & .row{
        align-items: end;
        margin-top: 20px;
        margin-bottom: 15px;

        & .col:nth-child(2){
            display: flex;
            gap: 20px;
            justify-content: end;
            flex-wrap: wrap;
        }
    }
    & h4{
        font-size: 20px;
        font-weight: 700;
    }
    & h5{
        font-size: 14px;
        margin-bottom: 0px;
    }
    & a{
        display: inline-flex;
        justify-content: space-between;
        align-items: center;
        width: 150px;
        height: 35px;
        background-color: var(--primary);
        border-radius: 5px;
        color: white;
        text-decoration: none;
        padding: 4px 14px;

        &::after{
            content: '';
            background-image: url(/images/download-icon.svg);
            display: inline-block;
            height: 20px;
            width: 20px;
        }
    }
}
#teconsent{
    & a{
        color: black;
    }
}
