<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root{
    --contentWidth: 1200px;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
img{
    max-width: 100%;
}
p{
    line-height: 20px;
}
.container{
    width: 100%;
    max-width: var(--contentWidth);
    margin: 0 auto;
    padding: 10px;
}
.top, .top-right, .top-sm{
    display: flex;
    align-items: center;
    justify-content: center;
}
.top{
    width: 100%;
    max-width: var(--contentWidth);
    justify-content: space-between;
    margin: 0 auto;
    padding: 16px;
    font-size: 14px;
    display: none;
}
.top-right{
    gap: 20px;
}
.bar{
    width: 2px;
    height: 14px;
    background-color: #ccc;
}
.top-sm{
    font-size: 18px;
    gap: 10px;
}
.top-sm a{
    color: #333;
}

.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.header-cont{
    background-color: #fff;
    position: sticky;
    top: 0;;
    z-index: 9999;
    border-top: 1px solid #eee;
}
footer{
    padding-top: 80px;
    margin-top: 60px;
    background-image: linear-gradient(rgb(0, 0, 40), rgb(34, 34, 167));
    color: #fff;
    position: relative;
}
.fooImg{
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    height: 80px;
    width: auto;
    background-color: #fff;
    border-radius: 50%;
    padding: 15px 10px;
    box-shadow: 0 0px 20px -10px rgb(34, 34, 167);
}
footer td, footer th{
    border: none;
}
.footer{
    display: flex;flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.footCol{
    max-width: 400px;
    padding: 20px;
}
.footCol h1{
    margin-bottom: 20px;
}
.cname{
    color: #79edff;
}
.footerTable td{
    padding: 10px;
    line-height: 20px;
}
.footerCopyright{
    text-align: center;
    background-color: #001694;
    padding: 10px;
}
@media only screen and (min-width:800px) {
    .footer{
        flex-direction: row;
        align-items: flex-start;
    }
}
.slider{
    width: 100%;
    aspect-ratio: 160/42;
    overflow: hidden;
}
.swiper-slide{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}
.swiper-slide h1{
    color: #fff;
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translateY(-50%);
    transition: .5s;
}
.feature{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
    margin: 20px auto;
}
.feature-indiv{
    max-width: 280px;
    padding: 20px;
    border: 1px solid #d9d9d9;
    transition: .3s;
    cursor: pointer;
    position: relative;
    background-color: #7eca31;
}
.feature-indiv i{
    font-size: 32px;
    margin-bottom: 15px;
    color: #004014;
}
.feature-indiv::after{
    content: "";
    width: 0;
    height: 4px;
    background-color: #004014;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .3s;
}
.feature-indiv:hover::after{
    width: 100%;
}
.feature-indiv:hover{
    transform: translateY(-30px);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .2);
}

.feature-indiv:hover h3{
    color: #00af75;
}
.feature-indiv h3{
    margin-bottom: 20px;
    color: #004014;
    text-transform: uppercase;
}
.feature-indiv p{
    font-size: 13px;
    line-height: 22px;
    color: #006d23;
}
.tagline{
    text-align: center;
    margin: 10px 0 20px;
    font-weight: initial;
    font-size: 36px;
}
.hilit{
    color: #006d23;
}
.aboutUs{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 40px auto;
    gap: 40px;
}
.about-img{
    max-width: 450px;
    position: relative;
    background-color: #d2ffd2;
    border-radius: 50%;
}
.about-cont h1{
    font-weight: initial
}
.about-cont&gt;*{
    margin-bottom: 20px;
}
.polygon{
    position: absolute;
    right: 10px;
    top: 0;
    background-color: #79edff;
    width: 120px;
    height: 120px;
    clip-path: polygon(0 0, 100% 10%, 100% 85%, 0 100%);
    border-radius: 30px;
}
.polygon2{
    position: relative;
    top: 5px;
    left: 5px;
    background-color: #7b014c;
    border-radius: 30px;
    height: 100%;
    width: 100%;
    clip-path: polygon(0 0, 100% 10%, 100% 85%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
}
.flex-opp{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}
.whyDRH{
    gap: 36px;
    margin-bottom: 30px;
}
.whyDRH img{
    display: block;
    box-shadow: 6px 10px 25px -15px #000;
}
.whyDRH p{
    text-align: justify;
    margin-top: 20px;
    line-height: 26px;
    font-size: 16px;
}
@media only screen and (min-width:800px) {
    .footer{
        flex-direction: row;
        align-items: flex-start;
    }
    .swiper-slide h1{
        font-size: 64px;
    }
    .aboutUs{
        flex-direction: row;
    }
    .flex-opp{
        flex-direction: row-reverse;
    }
    .flex-opp &gt; *{
        max-width: 50%;
    }
}</pre></body></html>