<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ======== CSS Document =================== */
:root {
    --main-color:#FC4D00;
    --linear: linear-gradient(180deg, rgba(252, 77, 0, 0.05) 0%, rgba(68, 172, 0, 0.05) 37.6%, rgba(68, 172, 0, 0.05) 68.33%, rgba(191, 108, 0, 0.05) 100%);
    --border-radius: 10px;
    --black : #000;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Exo 2';
}
body{
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
}
*::before,
*::after{
    box-sizing: border-box;
}
img{
    max-width: 100%;
}
ul,li,ol{
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}
a,
a:hover,
a:visited,
a:focus
{
    text-decoration: none;
}
a:hover{
    color: #000;
}
p{
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0 0 15px 0;
}
p:last-child{
    margin-bottom: 0;
}
.heading-area{
    display: block;
    width: 100%;
    margin: 0 0 20px 0;
}
.heading-area.center{
    text-align: center;
}
.heading-area.center &gt; *{
    display: block;
    text-align: center;
}
.sub-title{
    color: var(--black);
    font-size: 22px;
    font-weight: bold;
    line-height: normal;
    text-transform: uppercase;
    position: relative;
    display: inline-flex;
    align-items: center;
    margin: 0 0 20px 0;
    width: 100%;
}
.sub-title::before{
    content: '';
    display: block;
    background: var(--black);
    width: 40px;
    height: 2px;
    margin-right: 13px;
}
.main-title{
    color: var(--black);
    font-size: 46px;
    font-weight: bold;
    line-height: normal;
    text-transform: capitalize;
    display: block;
}
.orange-color{
    color: var(--main-color);
}
.heading-area.white &gt; *{
    color: #fff;
}
main{
    max-width: 1920px;
    margin: 80px auto 0 auto;
}
main &gt; *{
    padding: 40px 0;
}
.bg-color1{
    background-color: rgba(239, 230, 230, 0.8);
}
.bg-color2{
    background-color: rgba(233, 241, 241, 0.8);
}
#main {
    display: block;
    float: none;
    width: 100%;
}
/* ====================================== */
.banner{
    background: var(--linear);
}
.banner_inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 15px;
    max-width: 1310px;
    margin: 0 auto;
    align-items: center;
}
.banner_left{
    width: 60%;
}
.banner h1{
    color: var(--black);
    font-size: 46px;
    font-weight: bold;
    text-transform: capitalize;
    margin: -8px 0 10px 0;
    line-height: 1em;
}

.banner b{
    color: var(--black);
    font-size: 26px;
    font-weight: 700;
    line-height: normal;
    display: block;
    margin: 0 0 10px 0;
    text-transform: capitalize;
}
.banner_right {
    width: 37%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.enquire_inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
}

.enquire_inner form{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 25px;
    border: 1px solid #DBDBDB;
    border-radius: var(--border-radius);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    -ms-border-radius: var(--border-radius);
    -o-border-radius: var(--border-radius);
}
.enquire_left{
    width: 47%;
}
.enquire_left {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.enquire_left em{
    display: block;
    color: #AAA;
    font-size: 16px;
    font-weight: 400;
    line-height: 23.605px;
    font-style:normal ;
    text-transform: capitalize;
    margin: 0 0 4px 0;
}
.enquire_left input,
.enquire_left select,
.enquire_left textarea{
    border: 0;
    border-bottom: 1px solid #C1C1C1;
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    line-height: 1em;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    width: 100%;
    padding: 0px 0 10px;
}
.enquire_left select {
    padding-bottom: 8px;
}
.chapcha-code{
    margin: 0;
}
.submit-but-enquire-now {
    display: inline-block;
}
.enquire_left input[type="submit"] {
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 0;
    text-transform: capitalize;
    border-radius: 5px;
    border: 0;
    outline: none;
    box-shadow: none;
    background: url(arrow-6.svg) no-repeat calc(100% - 17px) 55%;
    padding: 15.5px 25px 15.5px 15px;
    background-size: 20px;
    background-color: var(--main-color);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    width: 175px;
    height: 47px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
.enquire_left input[type="submit"]:hover{
    background-color: var(--black);
}

.d-flex{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    gap: 20px;
}

.bestselling-row{
    width: 50%;
    border-radius: 7.884px;
    background: var(--white, #FFF);
    box-shadow: 0px 0px 23.653px -3.942px rgba(0, 0, 0, 0.15);
    padding: 22px;
}

.bestselling-row-inner {
    height: 661px;
    overflow-y: auto;
}
.bestselling-inner  {
    min-height: 100%;
}

.bestselling-column{
    border-bottom: 1px solid #C1C1C1;
    width: 100%;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.bestselling-column:last-child{
    margin: 0;
    padding: 0;
    border: 0;
}
.bestselling-head {
    cursor: pointer;
}
.productseltitle{
    color: var(--black);
    font-size: 22px;
    font-weight: bold;
    line-height: 32.194px;
    margin: 0 0 15px 0;
}
.bestselling-head .input-row input[type="radio"] {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}
.bestselling-head .input-row {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.bestselling-head .input-row .radioMark {
    position: absolute;
    width: 25.306px;
    height: 25.306px;
    background-color: #fff;
    left: 0;
    top: 7px;
    margin-top: 0;
    pointer-events: none;
    box-shadow: 0 0 0 1px #DDD inset;
    border-radius: 3.29px;
}
.bestselling-head .input-row input[type="radio"]:checked~.radioMark {
    background-color: #ff6e00;
    background-image: url(tick.svg);
    background-repeat: no-repeat;
    background-size: 14px auto;
    background-position: center;
    box-shadow: 0 0 0 0 #fff inset;
}
.bestselling-content {
    padding-left: 40px;
    min-height: 100%;
    position: relative;
    pointer-events: none;
}
.bestselling-content strong {
    color: #7E7E7E;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    display: block;
}

.bestselling-head label {
    margin: 0 0 5px 0;
    padding: 0 0 0 40px;
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    display: block;
}
.enquire-detail{
    padding-top: 0;
}
.enquire-detail-inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.inner-box{
    border-radius: 7.884px;
    background: var(--white, #FFF);
    box-shadow: 0px 0px 23.653px -3.942px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 0px 23.653px -3.942px rgba(0, 0, 0, 0.15);
    padding: 22px;
    -webkit-border-radius: 7.884px;
    -moz-border-radius: 7.884px;
    -ms-border-radius: 7.884px;
    -o-border-radius: 7.884px;
}
.inner-box i {
    display: block;
    margin: 0 0 10px 0;
}
.inner-box i img{
    width: 50px;
    height: 50px;
    display: inline-block;
}
.inner-box .strong-title{
    color: var(--black);
    font-size: 22px;
    font-weight: bold;
    line-height: 1em;
    display: block;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}
.inner-box h4{
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    line-height: 1em;
    margin: 0 0 5px 0;
}
.inner-box h4 b,
.inner-box p b
{
    color: #7E7E7E;
    font-size: 14px;
    font-weight: 400;
    line-height: 32.194px;
}
.inner-box p a{
    color: #FC4D00;
    font-weight: bold;
}
.inner-box p{
    margin-bottom: 8px;
}
.inner-box p:last-child{
    margin-bottom: 0;
}
.black{
    color: #000 !important;
    font-weight: 500 !important;
}
.black:hover{
    color: #ff6e00 !important;
}

@media (max-width:991px) {
    .banner_left {
        width: 100%;
    }
    .banner h1 {
        font-size: 36px;
    }
    .banner b {
        font-size: 21px;
    }
    .banner_right {
        width: 100%;
        text-align: center;
        align-items: center;
        margin: 0 0 25px 0;
    }
    .enquire_left{
        width: 100%;
        margin: 0 0 25px 0;
    }
    .bestselling-row{
        width: 100%;
    }
    .enquire-detail-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:630px) {
    main &gt; *{
        padding: 30px 0;
    }
    .bestselling-row-inner{
        height: auto;
    }
    .enquire_left{
        gap: 15px;
        display: flex;
        flex-direction: column;
    }
    .bestselling-row{
        padding: 15px;
        margin: 15px 0 10px 0;
    }
    .bestselling-head .input-row .radioMark {
        width: 21.306px;
        height: 21.306px;
    }
    .bestselling-head label {
        padding: 0 0 0 34px;
    }
    .bestselling-content {
        padding-left: 34px;
    }
    .enquire-detail-inner {
        grid-template-columns: 1fr;
    }
    .banner h1 {
        font-size: 30px;
        margin: 0 0 10px;
    }
    .banner b {
        font-size: 18px;
    }
    .productseltitle {
        font-size: 19px;
        line-height: 1em;
    }
    .inner-box .strong-title {
        font-size: 19px;
        margin: 0 0 10px;
    }
    .inner-box p {
        margin-bottom: 0;
    }
    .inner-box {
        padding: 15px;
    }
    .enquire_inner form {
        padding: 0;
        border: none;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
    }
}</pre></body></html>