


/* Section Tag */
.section-tag {
    color: #ff3b30;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-heading {
    font-size: 46px;
    font-weight: 600;
    color: #002964;
    margin: 15px 0;
    line-height: 1.3;
}

.section-heading span {
    color: #ff3b30;
}

/* ====================================
Refrigerator Freezer Banner
====================================*/

 .freezer-banner-section{

    padding:90px 0;

    min-height:700px;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

background-image: url('/assets/images/temperature-conversions/banner-image.png');

    background-size:cover;

    background-position:center right;

    background-repeat:no-repeat;

}

/* Decorative Circle */
 
.freezer-banner-section::before{

    content:"";

    width:420px;

    height:420px;

    background:#ff3b3008;

    border-radius:50%;

    position:absolute;

    top:-180px;

    left:-180px;

}

/* Content */

 .freezer-banner-section .banner-content-wrapper{

    position:relative;

    z-index:2;

}

.freezer-banner-section .banner-sub-heading{

    display:inline-block;

    font-size:14px;

    font-weight:700;

    color:#ff3b30;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.freezer-banner-section .banner-heading{

    font-size:56px;

    line-height:1.25;

    font-weight:600;

    color:#002964;

    margin-bottom:25px;

}

.freezer-banner-section .banner-heading span{

    color:#ff3b30;

}

.freezer-banner-section .banner-content{

    max-width:610px;

    font-size:18px;

    color:#646F88;

    line-height:1.8;

    margin-bottom:40px;

} 

/* Buttons */

.freezer-banner-section .banner-buttons{

    display:flex;

    gap:16px;

    margin-bottom:45px;

}

.freezer-banner-section .banner-buttons a{

    padding:15px 28px;

    border-radius:5px;

    text-decoration:none;  

    font-size:15px;

    font-weight:600;

    transition:.3s;
    

}

.freezer-banner-section .explore-btn{

    background:#ff3b30;

    color:#fff;

}

.freezer-banner-section .explore-btn:hover{

    background:#e02a20;

}

.freezer-banner-section .quote-btn{

    border:1px solid #ff3b30;

    color:#ff3b30;

    background:#fff;

}

.freezer-banner-section .quote-btn:hover{

    background:#ff3b30;

    color:#fff;

} 

/* Feature Boxes */

 .banner-features{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

}

.banner-features .feature-box{

    display:flex;

    align-items:center;

    gap:12px;

    padding:14px 20px;

    background:#fff;

    border:1px solid #E5EBF5;

    border-radius:10px;

    transition:.35s;

}

.banner-features .feature-box:hover{

    transform:translateY(-6px);

    border-color:#002964;

    box-shadow:0 18px 40px rgba(6,46,130,.08);

}

.banner-features .feature-box i{

    color:#ff3b30;

    font-size:18px;

}

.banner-features .feature-box span{

    font-size:15px;

    color:#002964;

    font-weight:500;

}

/* Responsive */

@media(max-width:991px){

.freezer-banner-section{

min-height:auto;

padding:80px 0;

background-position:center;

}

.freezer-banner-section .banner-heading{

font-size:42px;

}

.banner-features{

flex-direction:column;

}

.banner-features .feature-box{

width:100%;

}

.banner-buttons{

flex-wrap:wrap;

}

} 
.temperature-tool-section{

    padding:90px 0;

    background:
    linear-gradient(135deg,#f5f9ff,#ffffff);

}


.tool-header{

    text-align:center;

    margin-bottom:50px;

}


.tool-header span{

    display:inline-block;

    background:#fff1f0;

    color:#ff3b30;

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    letter-spacing:.5px;

}



.tool-header h1{

    margin:20px 0 10px;

    font-size:48px;

    font-family:'Poppins',sans-serif;

    color:#002964;

    font-weight:600;

}


.tool-header h1 strong{

    color:#ff3b30;

}



.tool-header h2{

    font-size:30px;

    color:#002964;

    font-family:'Poppins',sans-serif;

    font-weight:600;

}



/* Card */


.tool-card{

    max-width:750px;

    margin:auto;

    display:flex;

    align-items:center;

    gap:30px;

    padding:35px;

    background:#ffffff;

    border-radius:25px;

    box-shadow:

    0 25px 60px rgba(0,41,100,.12);

    border:1px solid #e5edf8;

    transition:.4s;

}


.tool-card:hover{

    transform:translateY(-8px);

    box-shadow:

    0 35px 80px rgba(0,41,100,.18);

}



.tool-icon{

    width:90px;

    height:90px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#002964;

    border-radius:20px;

    font-size:42px;

}



.tool-content h3{

    margin:0 0 10px;

    color:#002964;

    font-size:26px;

   

}


.tool-content p{

    color:#646f88;
     margin-bottom:20px;

}



.tool-content a{

    display:inline-flex;

    align-items:center;

    gap:15px;

    background:#ff3b30;

    color:#fff;

    padding:13px 25px;

    border-radius:8px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}



.tool-content a:hover{

    background:#002964;

}



/* Responsive */


@media(max-width:768px){

    .tool-header h1{

        font-size:34px;

    }


    .tool-header h2{

        font-size:22px;

    }


    .tool-card{

        flex-direction:column;

        text-align:center;

    }

}


