html {
    /* Scales the base font fluidly between 16px and 18px */
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
}

h1 {
    /* Scales large headings proportionally between 32px and 64px */
    font-size: clamp(2rem, 1.5rem + 3vw, 2rem);
}

h2 {
    /* Scales large headings proportionally between 32px and 64px */
    font-size: clamp(2rem, 1.5rem + 3vw, 1.5rem);
}

.figtree_font p, .figtree_font ul, .figtree_font a{
    font-family: "Figtree", sans-serif;
    font-size: 0.9rem;
}

a {
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.6;
}

section {
    padding: 80px 0;
}

.hero {
    background: #1d1d1d;
    background-size: cover;
    background-position: center;
    background-image: url('../images/force/force_tools.png');
}

.lead {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem) !important;
    line-height:1.3;
}

.tool-image {
    position: relative;
    display: inline-block;
}

.red-box {
    width: 75%;
    height: 75%;
    background: #d11d1d;
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50px;
}

.black-box {
    width: 44%;
    height: 100%;
    background: #000000;
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50px;
}

.toolbox {
    position: relative;
    z-index: 2;
}

.why-force,
.performance,
.working-conditions {
    background: #2a2a2a;
    background-image: url(../images/force/force_background.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size:cover;
}

.why-force {
    max-height: 480px;
}

.chrome-moly,
.chrome-vanadium {
    position: relative;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.chrome-moly {
    background-image: url(../images/force/ChromeMoly.png);
    background-position: right;
}

.chrome-vanadium {
    background-image: url(../images/force/Toolboxes-ForceTools-1.png);
    background-position: center;
}

.chrome-moly .overlay,
.chrome-vanadium .overlay {
    background: rgba(0,0,0,.65);
    padding: 100px 0;
    position: relative;
}

.force-cards .card-body{
    position:relative;
}

.force-cards .icon {
    max-width:70px;
    padding-bottom:15px;
}

.force-cards h5 {
    font-size: 1.2rem;
    color: #ED1C24;
    font-weight:800;
    line-height:1;
    padding-bottom:15px;
}

.force-cards p {
    font-size: clamp(0.9rem, 0.95rem + 0.25vw, 0.9rem);
    color: #000000;
    font-weight: 500;
    text-transform: inherit;
    padding-top: 15px;
}

.btn-danger {
    border-radius: 50px;
    padding: .8rem 2rem;
}

.card {
    border-radius: 18px;
    border: 1px solid #ED1C24;    
}

img {
    max-width: 100%;
}

.customList {
    width: 30px;
    height: 30px;
    border: 2px solid #090a0d;
    border-radius: 50%;
    color: #6bcc4e;
    background: #454756;
    font-size: 17px;
    text-align: center;
    line-height: 30px;
    margin-right:10px;
}

.why-force-section {
    position: relative;
    padding: 40px 0;
}

.red-tool-image {
    position: absolute;
    right: -10%;
    top:23%;
    transform: translateY(-30px);
    z-index: 0; 
}

.border-danger {
    border: 1px solid #ED1C24;
}

.cardBody {
    font-family: "Figtree", sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
}

.working-conditions{
    max-height:500px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
}

.feature-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: #474b63;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
    margin-top: 3px;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

    .feature-icon i {
        color: #77d353;
        font-size: 14px;
        font-weight: bold;
    }

.feature-text {
    font-size: clamp(0.9rem, 0.95rem + 0.25vw, 0.9rem);
    font-family: "Figtree", sans-serif;
    line-height: 1;
    color: #000;
    font-weight: 500;
}

@media (max-width: 480px) {
    .why-force {
        max-height: 100%;
    }
    .red-tool-image {
        position: inherit;
        right: 0;
        transform: translateY(0px);
    }
    .working-conditions {
        max-height: 100%;
    }

    .working-conditions img {
        margin-top: 0 !important;
    }

    .performance img {
        max-width: 100% !important;
        position: absolute;
        left: -40% !important;
        top: -78px !important;
    }
}