<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{ 
    margin:0px; 
    font-family: "Libre Franklin", sans-serif; 
    font-size:14px; 
    line-height: 24px;  
    color: #333;
    font-weight: 400; 
    height:100%; 
    position:relative;
    letter-spacing: 0.5px;
    background-color: #ffffff;
}
a{
    color: #333;
}
.wrapper {
    clear: both;
    margin: 0 auto;
    overflow: hidden;
}
.main{
    position:relative; 
    z-index:1;
    width: 100%;
}
.container {
    position: relative;
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
    padding: 0 15px;
    max-width: 1330px;
}
#spinner{
    background: #fff url(../image/loading.gif) no-repeat scroll center center;
    bottom: 0;
    left: 0;
    margin: auto;
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 999;
    display: none;
}

/************** Header Section CSS ****************/
.header{
    float: left;
    width: 100%;
    background: url(../image/body-bkg.jpg) no-repeat scroll top left #eff4ee;
    background-size: cover;
    min-height: 923px;
}
.header-section{
    padding-top: 20px;
    padding-bottom: 15px;
    float: left;
    width: 100%;
    position: absolute;
    box-sizing: border-box;
    background: #ffffffe0;
}
.header-section .header-left{
    float: left;
}
.header-section .header-left .logo { 
   width: auto;
    position: relative;
    z-index: 99;
    padding-top: 5px;
}
.header-section .header-left .logo img {
    vertical-align: middle;
    max-width: 200px;
}
.header-section .header-right{
     float: right;
}

@keyframes slide-down {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

@-webkit-keyframes fixedAnim {
    0% {
        top: -100%
    }
    100% {
        top: 0
    }
}

@-moz-keyframes fixedAnim {
    0% {
        top: -100%
    }
    100% {
        top: 0
    }
}

@keyframes fixedAnim {
    0% {
        top: -100%
    }
    100% {
        top: 0
    }
}
.header-section.fixed {
    position: fixed;
    background: #ffffff;
    -webkit-box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
    -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
    padding: 20px 0 15px;    
    z-index: 999;
    animation: 0.9s ease 0s normal both 1 running fixedAnim;
    -webkit-animation: 0.9s ease 0s normal both 1 running fixedAnim;
    -moz-animation: 0.9s ease 0s normal both 1 running fixedAnim;
    -o-animation: 0.9s ease 0s normal both 1 running fixedAnim;
}
.header-section.fixed .header-right{
   
}


/************** Theme Menu Section CSS ****************/
.header-section .header-right ul.navbar-nav{
     padding: 0;
}
.header-section .header-right ul.navbar-nav li{
     display: inline-block;
}
.header-section .header-right ul.navbar-nav li a{
     font-size: 17px;
    line-height: 24px;
    font-weight: 400;
    padding: 10px 15px;;
    text-decoration: none;
    border-radius: 50px;    
    color: #000;
}
.header-section .header-right ul.navbar-nav li.active a,
.header-section .header-right ul.navbar-nav li a:hover{
    color: #82a843;
}

.header-section .navbar-toggler {   
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    cursor: pointer;
}
.header-section .navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #000000;
    margin: 5px 0;
    display: block;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.header-section .navbar-toggler.active .toggler-icon:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px;
}

.header-section .navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0;
}

.header-section .navbar-toggler.active .toggler-icon:nth-of-type(3) {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    top: -7px;
}
@media (min-width: 992px) {
    .header-section .navbar-toggler{
        display: none;
    }
}
@media (max-width: 991px) {
    .header-section .navbar-collapse {
        position: absolute;
        display: none;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        z-index: 8;
        margin: 54px 10px 10px;
        padding: 10px 16px;
        -webkit-box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
        -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
        box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
    }
    .header-section .navbar-collapse.show{
        display: block;
    }
    .header-section .header-right ul.navbar-nav li{
        display: block;
    }
    .header-section .header-right ul.navbar-nav li a{
        padding: 6px 0;
        display: block;
        border: 0;
        margin: 0;
    }
}


/************** Theme Intro Section CSS ****************/
.theme-section {
    float: left;
    width: 100%;
    padding: 178px 0 0px;
}
.theme-section .container{
    max-width: 1830px;
}
.theme-section .image-content{
    float: right;  
    width: 55%;
}
.theme-section .image-content img{
    max-width: 100%;
    margin-bottom: -7px;
}
.theme-section .right-content {
    width: 37%;
    text-align: left;
    color: #000;
}
.theme-section .right-content .theme_detail {
    width: 100%;
    padding: 100px 0px 20px 25px;
    position: relative;
}
.theme-section .right-content .theme_title{
    font-size: 55px;
    font-weight: 400;
    line-height: 60px;
    text-transform: capitalize;
    padding: 10px 0 20px;
}
.theme-section .right-content .theme_title span{
    font-weight: 600;
    color: #82a843;
}
.theme-section .right-content .sub-title {
    font-size: 26px;
    font-weight: 400;
    line-height: 32px;
    text-transform: capitalize;
    margin-bottom: 20px;
    margin-top: 20px;
    color: #888;
    letter-spacing: 0.5px;
}
.theme-section .right-content .sub-title.elite-title{    
    color: #f38844;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 10px;
    background: #000;
    padding: 7px 15px;
    display: inline;
}
.theme-section .right-content .buynow_button {
    padding-top: 30px;
}
.button {
    background-color: #82a843;
    color: #ffffff;
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 15px 35px;
    line-height: normal;
    position: relative;
    text-align: center;
    top: 5px;
    text-decoration: none;
    text-transform: capitalize;
    z-index: 99;
    transition: all 0.4s ease 0s;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    max-width: 562px;
}
.button:hover {
    background-color: #000000;
    color: #fff;;
}

/************** Noticebar Section CSS ****************/
.noticebar{  
    clear: both;
    padding: 24px 25px;
    background: #82a843;
    color: #ffffff;
    text-align: center;
    font-size: 26px;
    line-height: 30px;
    bottom: 0;
    z-index: 99;
}
.noticebar strong{   
    background: #000;
    padding: 5px 9px;
}
.noticebar a{
    text-decoration: underline;
    color: #fff;
}
.noticebar a:hover{
    text-decoration: none;
}

.site_topbar{
    background: #367e62;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    padding: 11px 10px;
    text-align: center;
}
.site_topbar span{
    background: rgba(0,0,0,.2);
    border-radius: 16px;
    line-height: 18px;
    margin-right: 12px;
    padding: 6px 16px;
}

/************** Footer Section CSS ****************/
.footer{
    text-align: center;
    background: #111111;
    clear: both;
}
.footer .footer-top{
    padding: 50px 0px 40px;
    color: #fff;
}
.footer .footer-top .title{
	margin: 0;
    text-transform: capitalize;
    padding: 10px 0 15px;
    font-weight: 600;	
    font-size: 40px;
    line-height: 45px;
}
.footer .footer-top .subtitle{
    font-size: 20px;
    line-height: 30px;
    margin: 0;
}
.footer .footer-top .purchase_button{
    padding: 20px 0;
}
.footer .footer-top .purchase_button .button{
    background-color: #82a843;
}
.footer .footer-bottom {
	padding: 15px 10px;
    background: #82a843;
    color: #fff;
    font-size: 16px;
    line-height: 22px;
}
.footer .footer-bottom a{
    color:  inherit;
}
.back-to-top {
    font-size: 20px;
    color: #FFF;
    position: fixed;
    right: 26px;
    bottom: 20px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    border-radius: 50%;
    background: url(../image/back_to_top.png) no-repeat scroll center center #111111;
    text-align: center;
    z-index: 99;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    display: none;
}

.section{
    padding: 50px 0;
    text-align: center;
}
.section-headding{
    text-align: center;
    width: 70%;
    margin: 0 auto 35px;
}
.section-title {
    color: #222;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: .01em;
    text-align: center;
    margin: 20px 0 15px;
    text-transform: capitalize;
    line-height: 40px;
}
.section-subtitle {
    font-size: 17px;
    line-height: 25px;
}

@media (max-width: 1459px) {
    .header{
        min-height: 720px;
    }
    .theme-section .right-content .theme_detail{
        padding-top: 50px; 
    }
    .theme-section .right-content .theme_title {
        font-size: 45px;
        line-height: 50px;
    }
    .theme-section .right-content .sub-title {
          font-size: 24px;
          line-height: 34px;
          margin-top: 10px;
        }
    .theme-section .right-content .buynow_button {
        padding-top: 10px;
    }
}
@media (max-width: 1300px) {
    .container { max-width: 1200px; }
    .header {
        min-height: 650px;
    }
    .theme-section .right-content .theme_detail { padding-top: 0px; }
}
@media (max-width: 1199px) {
    .header {
        min-height: 550px;
    }
    .theme-section .right-content .theme_title {
        font-size: 36px;
        line-height: 40px;
        padding-bottom: 10px;
    }
    .theme-section .right-content .sub-title {
        font-size: 20px;
        line-height: 30px;
    }
    .theme-section .right-content .sub-title.elite-title{ 
        margin-bottom: 10px;   
        font-size: 20px;
    }
}
@media (max-width: 991px) {
    .theme-section { 
        padding-bottom: 0px; 
        padding-top: 160px;
    }
    .theme-section .right-content { width: 50%; }

    .theme-section .right-content .theme_detail{ padding-left: 15px;  }
    .theme-section .right-content .theme_detail .prestashop-logo {   display: none;}

    .theme-section .right-content .sub-title{
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 15px;
        margin-top: 5px;
    }
    .theme-section .right-content .sub-title.elite-title{
        font-size: 18px;
        margin-bottom: 10px;
    }
    .theme-section .right-content .buynow_button {
        padding-top: 20px;
    }
    .theme-section .right-content ul {
        margin: 30px 0 10px;
    }
    .theme-section .right-content ul li {
        font-size: 20px;
        line-height: 30px;
        padding-bottom: 20px;
    } 

    .footer .footer-top .purchase_button {
        padding: 20px 0;
    }
    .footer .footer-top .title{
        font-size: 35px;
    }
    .noticebar{        
        font-size: 20px;
        padding-bottom: 15px;
        padding-top: 15px
    }
}
@media (max-width: 767px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .header{
        background: #eff4ee;  
        min-height: auto;
    }
    .theme-section{
        padding-top: 100px;
    }
    .header-section .header-left .logo img { max-height: 25px; }
    .section-headding {
        width: 100%;
        margin-top: 20px;
        margin-bottom: 35px;
    }
    .section-title{
        font-size: 30px;
        line-height: 36px;
        margin-top: 0;
    }
    .section-subtitle {
        font-size: 15px;
        line-height: 23px;
    }
    .theme-section .image-content{ display: none;  }
    .theme-section .right-content { width: 100%; padding-top: 0px; }   
    .theme-section .right-content .theme_detail{ 
        text-align: center;  
        padding-bottom: 60px;    
        padding-top: 30px;
        padding-left: 0;
    }
    .theme-section .right-content .theme_title{    
        font-size: 40px;
        padding-bottom: 20px;
        line-height: 45px;
    }
    .theme-section .right-content .sub-title {
        font-size: 23px;
        margin-bottom: 10px;
    }
    .theme-section .right-content .sub-title.elite-title{
        font-size: 18px;
    }
    .footer .footer-top .title{
        font-size: 30px;
    }
    .footer .footer-top {
        padding: 40px 0px 30px;
    }
    .site_topbar{
        display: none;
    }
}
@media (max-width: 480px) {
    .theme-section .right-content .theme_title {
        font-size: 32px;
        line-height: 40px;
    }
    .theme-section .right-content .sub-title {
        font-size: 20px;
    }
    .button{
        font-size: 17px;
        padding: 13px 25px;
    }
    .section {
        padding: 30px 0;
    }
    .section-title {
        font-size: 26px;
        line-height: 32px;
    }
    .footer .footer-top {
        padding: 30px 0px 20px;
    }
    .footer .footer-top .title {
        font-size: 24px;
        line-height: 32px;
    } 
    .footer .footer-top .subtitle {
        font-size: 18px;
        line-height: 27px;
    }
    .noticebar{
        font-size: 20px;
        padding: 20px 15px;
    }
}



/******** Demo Theme Layout Section design ***************/
.demolayout-wrapper {
    width: 100%; 
    margin:0 auto;
    padding-top: 20px;
    display:inline-block; 
    text-align:center; 
    position: relative; 
    clear: both;
}
.demolayout-section .section-title span {
    color: #fa6755;
    font-size: 20px;
    display: block;
    font-weight: 400;
}
.demo_layout{    
      text-align: center;
      width: 43.75%;
      margin-bottom: 10px;
      padding: 0px 20px 10px;
      position: relative;
      display: inline-block;
}
.demo_layout .image-wrapper{
    position: relative;
    padding: 15px;
    background: #ddd;
    box-sizing: border-box;
}
.demo_layout .image-wrapper .demo_image {
    min-height: 600px;
    overflow: hidden;
    position: relative;
}
.demo_layout .image-wrapper .demo_image img {
    left: 0;
    position: absolute;
    top: 0px;
    right:0;
    margin-left:auto;
    margin-right:auto;
    transition-duration: 5s;
    -webkit-transition-duration: 5s;
    -moz-transition-duration:  5s;
    -ms-transition-duration:  5s;
    -o-transition-duration:  5s;
    max-width: 100%;
}
.demo_layout .image-wrapper:hover .demo_image img {
    top: -650px;
}
.image-shop-scroll:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.05);
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    transition: all 300ms ease 0s;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}
.demo_layout:hover .image-wrapper .image-shop-scroll:after{
   opacity:1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    transition: all 300ms ease 0s;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}
.demo_layout .image-wrapper .demo_image .label {
    color: #fff;
    text-transform: capitalize;
    position: absolute;
    top: 0;
    right: 0px;
    font-style: italic;
    width: 123px;
    height: 124px;
}
.demo_layout .image-wrapper .demo_image .new_label {
    background: url(../image/new-lable.png) 0 0 no-repeat;
}
.demo_layout .image-wrapper .demo_image .trending_label {
    background: url(../image/trending-lable.png) 0 0 no-repeat;
}
.demo_layout .image-wrapper .demo_image .updated_label {
    background: url(../image/updated-label.png) 0 0 no-repeat;
}

.demo_layout .demo_content {
    display: block;
    position: relative;
    margin-top: 25px;
}
.demo_layout .demo_content .demo_title{
    margin: 0;
    padding-bottom: 5px;
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    color: #222;
}
.demo_layout .demo_content .demo_title span{
    color: #777;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    display: block;
    margin-top: 7px;
    margin-bottom: 0;
}
.demo_layout .demo_content .button {
    display: inline-block;
    padding: 13px 24px;
    font-size: 17px;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;   
    opacity: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
}
.demo_layout .demo_content .button:hover {
    
}
.demo_layout:hover .demo_content .button {
    opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
     transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
}
.demo_layout .demo_content .buynow_button{
}
.demo_layout.coming-soon {
    min-height: 520px;
    overflow: hidden;
    position: relative;
    background: #fff;
}

@media only screen and (max-width: 1300px){
    .demo_layout .image-wrapper:hover .demo_image img {
        top: 0px;
    }
}
@media only screen and (max-width: 1199px){
   .demo_layout{
        width: 35.75%;
        padding-left: 1.5%;
        padding-right: 1.5%;
    }  
    .demo_layout .image-wrapper .demo_image {
        min-height: 450px; 
    }
}
@media only screen and (max-width:992px){
    .demo_layout{
        width: 44%;  
        padding-left: 2.5%;
        padding-right: 2.5%;
    }  
    .demo_layout .image-wrapper .demo_image {
        min-height: 400px; 
    }
}
@media only screen and (max-width: 767px){
    .demo_layout{
        width: 65%;
        margin-bottom: 35px;
    } 
    .demo_layout .demo_content .button{
         opacity: 1;
        -webkit-opacity: 1;
        -moz-opacity: 1;
        -khtml-opacity: 1;
    }
}
@media only screen and (max-width: 600px){
    .demo_layout{
        width: 80%;
    }
}
@media only screen and (max-width: 480px){
    .demo_layout{
        width: 90%;
    }  
    .demo_layout .image-wrapper .demo_image {
        min-height: 300px; 
    }
    .demolayout-section .section-title span {
        font-size: 18px;
    }
}

/************** Features Section CSS ****************/
.feature-section {
    background: #f9f9f9;
}
.feature-section .container {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    box-sizing: border-box;
    max-width: 1530px;
}
.feature-item {
	width: 19%;
    display: inline-block;
    vertical-align: top;
    margin-top: 2px;
    margin-right: 2px;
    margin-bottom: 2px;
}
.feature-description {
    margin: 0;
    color: #555;
    overflow: hidden;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.5px;
    min-height: 170px;
}
.feature-part {
    background: #ffffff;
    border-radius: 5px;
    transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    position: relative;
    padding: 15px 15px;
    text-align: center;
    border: 3px solid #f9f9f9;
}

.feature-image img {
    display: inline-block;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
	border-radius:10px;
	-webkit-border-radius:10px;
	-khtml-border-radius:10px;
	-moz-border-radius:10px;
}

.title-feature {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.5px;
    overflow-wrap: break-word;
    margin: 10px 0 10px;
    color: #333;
    font-weight: 600;
    text-transform: capitalize;
}
.feature-item:hover .feature-part {
	box-shadow: 0 2px 6px rgb(0 0 0 / 20%);
    -webkit-box-shadow: 0 2px 6px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    -ms-box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    -o-box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
}

@media only screen and (max-width: 1450px){
    .feature-item{width:23%}
}
@media only screen and (max-width: 1199px){
    .feature-item{width:31%}
}
@media only screen and (max-width: 767px){
    .feature-item{width:49%}
}
@media only screen and (max-width: 479px){
    .feature-item{width:100%}
    .feature-description{ padding-bottom: 15px;  min-height: auto;}
}


/************** Responsive Section CSS ****************/

.responsive-section{
    background: url(../image/responsive_background.jpg) #2d394b;
    overflow: hidden;
    color: #fff;
}
.responsive-section .section-title{
    color: #fff;
}
.responsive-section .section-subtitle{  
    color: #a0acbd;
}
.responsive-section .responsive-wrapper {
    width: 85%;
    margin: 50px auto 20px;
    overflow: hidden;
}
.responsive-section .responsive-wrapper .responsive-image{
    width: 72%;
    float: right;
    text-align: right;
}
.responsive-section .responsive-wrapper .responsive-image img{
    max-width: 100%;
}
.responsive-section .responsive-wrapper .responsive-content{
    width: 28%; 
    float: left;
}
.responsive-section .responsive-wrapper .responsive-content ul{
    padding-top: 40px;
}
.responsive-section .responsive-wrapper .responsive-content ul li{
    padding-bottom: 30px;
    text-align: left;
    font-size: 20px;
    line-height: 30px;
    text-transform: capitalize;
    list-style: auto;
}
@media only screen and (max-width: 991px){
    .responsive-section .responsive-wrapper{
        width: 100%;
        margin-bottom: 0;
    }
    .responsive-section .responsive-wrapper .responsive-image,
    .responsive-section .responsive-wrapper .responsive-content {
        float: none;
        width: 100%;
    }
    .responsive-section .responsive-wrapper .responsive-image{
        text-align: center;
    }
    .responsive-section .responsive-wrapper .responsive-content ul{
        padding-left: 0px;
    }
    .responsive-section .responsive-wrapper .responsive-content ul li{
        display: inline-block;
        padding: 5px 15px;
        text-align: center;
        font-size: 18px;
    }
}

/************** Testimonial Section CSS ****************/

.testimonial-section .item{
    padding: 30px 30px;
    background: #f9f9f9;
}
.testimonial-section .testimonial-content{
    font-size: 16px;
    line-height: 25px;
}
.testimonial-section .testimonial-content .testimonial-text{
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.testimonial-section .owl-carousel .owl-stage-outer{
    padding: 15px 0 25px;
}
.testimonial-section .owl-carousel .owl-nav button.owl-prev,
.testimonial-section .owl-carousel .owl-nav button.owl-next {
    font-size: 35px;
}

/************** BestSeller Theme Section CSS ****************/
.bestseller-section{
    background: #f7f7f7;
}
.bestseller-section .slide-image {
    background: #fff;
    border-radius: 5px;
    box-shadow: 2px 7px 15px rgb(0 0 0 / 5%);
    padding: 14px 14px 17px;
}
.bestseller-section .slide-image .view-detail{
    padding-top: 15px;
    font-size: 15px;
}
.bestseller-section .slide-image .view-detail a:hover{
    text-decoration: none;
}
.bestseller-section .owl-carousel .owl-stage-outer{
    padding: 15px 0 25px;
}
.bestseller-section .owl-carousel .owl-nav button.owl-prev,
.bestseller-section .owl-carousel .owl-nav button.owl-next {
    font-size: 35px;
}

/************** Theme Package Included Section CSS ****************/
.themepackage-section{
    padding: 50px 0 70px;
}</pre></body></html>