:root {
    --colorBlack: #343434;
    --colorMain: #EA910B;
    --colorMainRGB: 234, 145, 11;
    --colorSecondary: #6B3D26;
    --colorSecondaryRGB: 107, 61, 38;
    --colorLink: #000000;
    --colorGray: #8f8f8f;
    --colorRed: #e50f12;
    --colorRedRGB: 229, 15, 18;
    --colorGreen: #068d44;
    --colorGreenRGB: 6, 141, 68;
    --colorWarning: #ffa429;
    --colorWarningRGB: 255, 164, 41;
    --colorGold: #f1af0f;
    --colorSigninBg: #eee;
    --colorCallBtn: #143277;
    --colorWhatsappBtn: #25d366;
    --colorFeaturedProductsBg: #192271;
    --colorFeaturedProductsTitle: #fff;
    --colorFeaturedProductsTitleIconBg: rgba(234, 145, 11, 0.15);
    --colorFeaturedProductsTitleIcon: #EA910B;
    --colorFeaturedProductsBtn: #EA910B;
    --colorFeaturedProductsArrows: #3a45b2;
    --colorFeaturedProductsArrowsIcon: #fff;
    --colorBlogSectionBg: #ddd;
    --colorBlogSectionTitle: #111;
    --colorBlogSectionLink: #111
  }
  
  ::-moz-selection {
    color: #fff;
    background: var(--colorMain)
  }
  
  ::selection {
    color: #fff;
    background: var(--colorMain)
  }
  
  .custom-container {
    width: 1400px;
    margin: 0 auto
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0)
    }
  
    0% {
      transform: rotate(-360deg)
    }
  }
  
  .section-title {
    color: #111;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: start
  }
  
  .section-title .icon {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: var(--colorFeaturedProductsTitleIconBg);
    color: var(--colorFeaturedProductsTitleIcon);
    font-size: 17px
  }
  
  .box {
    box-shadow: 0 0 20px rgba(0, 0, 0, .13);
    padding: 20px;
    border-radius: 5px;
    background: #fff
  }
  
  .box-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 20px;
    border-radius: 7px;
    width: 100%;
    border: 1px solid #eee;
    box-shadow: inset 6px 0 10px rgba(var(--colorMainRGB), .1);
    transition: 350ms;
    cursor: default
  }
  
  .box-icon:hover {
    transform: translate(0, -3px);
    box-shadow: 6px 0 10px rgba(var(--colorMainRGB), .2);
    border-color: transparent
  }
  
  .box-icon:hover .title {
    color: var(--colorMain)
  }
  
  .box-icon i {
    font-size: 30px;
    color: #939393;
    margin-right: 10px
  }
  
  .box-icon img {
    width: 40px;
    height: 40px;
    margin-right: 15px
  }
  
  .box-icon .title {
    transition: 350ms;
    font-weight: 300;
    font-size: 17px;
    color: var(--colorBlack)
  }
  
  .custom-icon-btn {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    font-size: 17px;
    color: #fff;
    background: var(--colorMain);
    text-align: center;
    border: 1px solid transparent;
    position: relative;
    border-radius: 50%;
    text-decoration: none;
    transition: 250ms
  }
  
  .custom-icon-btn i {
    position: relative;
    z-index: 1
  }
  
  .custom-icon-btn:before {
    display: inline-block;
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    border-radius: 50%;
    transition: 250ms;
    background: #fff
  }
  
  .custom-icon-btn:hover:before {
    width: 100%;
    height: 100%;
    opacity: 1
  }
  
  .custom-icon-btn:hover {
    color: var(--colorMain)
  }
  
  .signin-body {
    background: var(--colorSigninBg)
  }
  
  .signin-page {
    position: fixed;
    width: 100%;
    display: flex;
    height: 100%
  }
  
  @keyframes spin {
    0% {
      -webkit-transform: rotate(-360deg);
      -moz-transform: rotate(-360deg);
      -ms-transform: rotate(-360deg);
      -o-transform: rotate(-360deg);
      transform: rotate(-360deg)
    }
  
    100% {
      -webkit-transform: rotate(0);
      -moz-transform: rotate(0);
      -ms-transform: rotate(0);
      -o-transform: rotate(0);
      transform: rotate(0)
    }
  }
  
  .img50 {
    width: 50px;
    height: auto
  }
  
  .w-0 {
    width: 0 !important
  }
  
  .h-0 {
    height: 0 !important
  }
  
  .tag-item {
    display: inline-block;
    font-size: 13px;
    color: #777;
    font-weight: 300
  }
  
  .tag-item:hover {
    color: var(--colorMain)
  }
  
  .content-body {
    font-family: dana, sans-serif !important
  }
  
  .content-body img {
    max-width: 100%;
    height: auto
  }
  
  .content-body h1,
  .content-body h2,
  .content-body h3,
  .content-body h4,
  .content-body h5,
  .content-body h6 {
    margin: 25px 0 15px
  }
  
  .content-area {
    line-height: 27px
  }
  
  .content-area h1,
  .content-area h2,
  .content-area h3,
  .content-area h4,
  .content-area h5,
  .content-area h6 {
    display: block;
    margin: 30px 0 15px;
    font-size: 22px;
    font-weight: 800
  }
  
  .content-area p {
    margin-bottom: 25px;
    line-height: 28px;
    font-size: 15px
  }
  
  .content-area img {
    max-width: 100%;
    display: inline-block;
    margin: 15px 0;
    height: auto
  }
  
  .content-area blockquote {
    padding: 20px;
    border-left: 5px solid var(--colorMain);
    background: #f9f9f9;
    display: inline-block;
    width: auto;
    font-size: 18px;
    line-height: 32px
  }
  
  .content-area ol {
    margin: 15px 0 25px 0;
    padding: 0
  }
  
  .content-area li {
    display: block;
    padding: 5px 0
  }
  
  .content-area li:before {
    content: "\f00c"; /* FontAwesome Unicode */
    font-family: "Font Awesome 5 Pro";
    display: inline-block;
    color: #bbb;
    margin-right: 8px
  }
  
  .content-area li:hover:before {
    color: var(--colorMain)
  }
  
  .content-area a {
    color: var(--colorMain)
  }
  
  .content-area a:hover {
    color: var(--colorSecondary)
  }
  
  .post-item {
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 30px #00000021;
    border-radius: 5px;
    transition: .4s
  }
  
  .post-item:hover {
    transform: translate(0, -3px)
  }
  
  .post-title {
    display: block;
    font-weight: 800;
    color: #111;
    font-size: 22px;
    margin: 30px 0;
    line-height: 35px
  }
  
  .post-title:hover {
    color: var(--colorMain)
  }
  
  .post-details {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    width: 100%;
    border-top: 1px solid #ddd;
    padding-top: 18px
  }
  
  .text-with-icon {
    display: inline-block
  }
  
  .text-with-icon i {
    color: #777
  }
  
  .text-with-icon span {
    display: inline-block
  }
  
  .text-with-icon {
    color: #111;
    font-size: 14px
  }
  
  .btn-label-main {
    padding: 10px 20px;
    color: var(--colorMain);
    background: rgba(var(--colorMainRGB), .15);
    font-weight: 700;
    font-size: 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: .1s
  }
  
  .btn-label-main:hover {
    background: rgba(var(--colorMainRGB), .5);
    color: #fff
  }
  
  .btn-label-main.btn-label-secondary {
    background: rgba(var(--colorSecondaryRGB), .15);
    color: var(--colorSecondary)
  }
  
  .btn-label-main.btn-label-secondary:hover {
    background: rgba(var(--colorSecondaryRGB), .2)
  }
  
  .post-item-h {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px
  }
  
  .post-item-h:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0
  }
  
  .post-item-h .post-title {
    margin: 0 0 5px;
    font-size: 15px;
    line-height: 28px
  }
  
  .post-page .post-title {
    color: #111 !important
  }
  
  .breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 13px
  }
  
  @media (min-width:1460px) {
    .col-xl-25 {
      flex: 0 0 auto;
      width: 20%
    }
  }
  
  @media (max-width:1460px) {
    .custom-container {
      width: 1200px !important
    }
  }
  
  @media (max-width:1240px) {
    .post-details .text-with-icon {
      margin: 0 10px 10px 0 !important
    }
  
    .custom-container {
      width: calc(100% - 60px) !important
    }
  }
  
  @media (max-width:1200px) {
    .flex1200 {
      display: flex !important
    }
  }
  
  @media (max-width:992px) {
    .breadcrumb-container {
      white-space: nowrap;
      width: 100%;
      overflow-y: hidden;
      overflow-x: auto
    }
  
    .breadcrumb-container .breadcrumb {
      width: max-content
    }
  
    .flex992 {
      display: flex !important
    }
  
    .box-icon .title {
      font-weight: 400;
      font-size: 14px
    }
  
    .signin-page {
      position: static;
      height: auto
    }
  
    .box-icon {
      width: calc(50% - 4px);
      margin: 0 0 10px;
      padding: 20px 10px;
      min-height: 90px
    }
  
    .page-content {
      padding-top: 70px
    }
  
    .custom-container {
      width: calc(100% - 60px) !important
    }
  }
  
  @media (max-width:768px) {
    .post-title {
      font-size: 19px;
      margin: 15px 0
    }
  
    .post-item {
      padding: 15px
    }
  
    .post-details {
      padding-top: 15px
    }
  
    .post-details .text-with-icon {
      margin: 6px !important
    }
  
    .custom-container {
      width: calc(100% - 40px) !important
    }
  }
  
  @media (max-width:576px) {
    .custom-container {
      width: calc(100% - 30px) !important
    }
  }
  
  .navbar-blog ul{
    width: 100%;
  }
  .navbar-blog li{
    border-radius: 5px;
    padding-left: 5px;
    padding-right: 5px;
  }
  
  .navbar-blog li:hover{
    background-color: var(--main-color-one-shadow);
  }
  
  .navbar-blog li:hover a{
    font-weight: bold;
    color: var(--main-color-one) !important;
  }
  
  .blog-news-item{
    position: relative;
  }
  
  .blog-news-item img{
    width: 100%;
    border-radius: 15px;
    height: 285px;
    object-fit: cover;
    box-shadow: var(--shadow-box);
  }
  
  .blog-news-item .desc{
    position: absolute;
    bottom: 7px;
    left: 7px;
    right: 7px;
    background-color: #eeeeeee0;
    border-radius: 15px;
    padding: 5px;
  }
  
  .blog-news-item .desc .title{
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  
  .blog-news-item .desc .date{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 5px;
  }
  
  .blog-news-item .desc .date .text-date{
    font-size: 12px;
  }
  
  .blog-news-item .desc .date i{
    color: var(--main-color-one);
  }
  
  .video-blog-item{
    display: flex;
    align-items: flex-start;   
    justify-content: start;
  }
  
  .video-blog-item .desc{
    margin-left: 10px;
  }
  
  .video-blog-item .title{
    margin-bottom: 10px;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  
  .video-blog-item img{
    max-width: 100px;
    object-fit: cover;
    border-radius: 5px;
  }
  .video-blog-item .image{
    position: relative;
    margin-bottom: 10px;
  }
  
  .video-blog-item .image::before{
    content: '\f4f2';
    color: #fff;
    font-size: 22px;
    font-family: 'bootstrap-icons' !important;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
  
  }
  
  .video-blog-item:not(:last-child){
    margin-bottom: 10px;
  }
  
  .tv-blog-item{
    position: relative;
  }
  
  .tv-blog-item::before {
    content: '\f4f2';
    color: #fff;
    font-size: 60px;
    font-family: 'bootstrap-icons' !important;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    z-index: 100;
    color: var(--main-color-two);
  }
  
  .tv-blog-item .desc{
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 10px;
    border-radius: 10px;
    background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
  }
  
  .tv-blog-item .desc .date span,.tv-blog-item .desc .date i{
    color: #fff;
  }
  
  .tv-blog-item .desc .title{
    margin-bottom: 10px;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: #fff;
  }
  
  .tv-blog-item img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    filter: grayscale(100%);
  }
  
  .blog-post-title-items {
    margin-top: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .blog-post-title-item {
    margin-top: 10px;
    margin-right: 20px;
    display: flex;
    align-items: center;
  }
  
  .blog-post-title-item img {
    width: 30px;
    height: 30px;
  }
  
  .blog-post-title-item p {
    margin-left: 5px;
    font-weight: bold;
    margin-bottom: 0;
  }
  
  .blog-post-content{
    padding: 20px 0;
  }
  
  .blog-post-content p{
    line-height: 36px;
  }
  
  .blog-post-content img{
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
  
  img{
    max-width: 100%;
  }
  
  .mini-blog-item{
    display: flex;
    align-items: flex-start;   
    justify-content: start;
  }
  
  .mini-blog-item .desc{
    margin-left: 10px;
  }
  
  .mini-blog-item .title{
    margin-bottom: 10px;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  
  .mini-blog-item img{
    max-width: 100px;
    object-fit: cover;
    border-radius: 5px;
  }
  .mini-blog-item .image{
    position: relative;
    margin-bottom: 10px;
  }
  
  .mini-blog-item:not(:last-child){
    margin-bottom: 10px;
  }
  
  .comment-item-desc {
    padding: 20px;
    border: 1px solid #ddd;
    width: 100%;
    border-radius: 7px;
  }
  
  .comment-item p{
    margin: 0;
  }
  
  .comment-item {
    padding: 20px 0;
    display: flex;
  }
  
  .comment-item-avatar {
    margin: 10px 10px 0 0;
  }
  
  .comment-item-avatar-img a img {
    display: flex;
    border: 4px solid #e6e6e6;
  }
  
  .comment-item-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .comment-date {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .comment-date-speractor {
    margin: 0 10px !important;
    font-size: 17px;
    font-weight: bolder;
  }
  
  .comment-date-date {
    font-size: 14px;
  }
  
  .comment-item-rating {
    display: flex;
  }
  
  .comment-item-rating i {
    color: #eaaf00;
    font-size: 20px;
  }
  
  .comment-item-content {
    padding: 20px 0;
  }
  
  .form-inline {
    width: 49.7%;
  }
  
  #commentEmail::placeholder {
    text-align: left;
  }
  
  .comment-form .form-check label {
    font-size: 14px;
  }
  
  .com-response{
    background-color: var(--main-color-one-shadow);
  }
  
  .nav-link {
    color: var(--color-site) !important
  }
  
  .blog-item {
    background-color: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: var(--shadow-box)
  }
  
  .blog-item .title {
    padding: 10px
  }
  
  .nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
  }
  
  .nav-link {
    display: block;
    padding: .5rem 1rem;
    color: #0d6efd;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out
  }
  
  @media (prefers-reduced-motion:reduce) {
    .nav-link {
      transition: none
    }
  }
  
  .nav-link:focus,
  .nav-link:hover {
    color: #0a58ca
  }
  
  .navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: .5rem;
    padding-bottom: .5rem
  }
  
  .navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
  }
  
  .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0
  }
  
  .navbar-text {
    padding-top: .5rem;
    padding-bottom: .5rem
  }
  
  .search-filed{
    position: relative;
  }
  
  .search-filed .search-input{
    border-radius: 30px;
    background-color: #f4f4f4;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 14px;
    border-color: #eee;
  }
  
  .search-filed .search-input:focus{
    border: 1px solid #aaa;
    box-shadow: var(--shadow-sm);
  }
  
  .search-filed .search-btn {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
  }
  
  .search-filed .search-btn i{
    color: #fff;
  }
  
  .breadcrumb-item+.breadcrumb-item::before {
    content: var(--bs-breadcrumb-divider, "›");
  }