: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-left: 10px
}

.box-icon img {
  width: 40px;
  height: 40px;
  margin-left: 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;
  right: 0;
  left: 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-right: 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-left: 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 0 10px 10px !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
  }
}

.blog-item {
  background-color: #fff;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: var(--shadow-box)
}

.blog-item:hover .image img {
  filter: grayscale(0)
}

.blog-item:hover .title h4 {
  color: var(--main-color-one)
}

.blog-item .title {
  padding: 10px
}

.blog-item .image img {
  border-radius: 20px;
  filter: grayscale(0);
  transition: .4s all ease-in-out;
  height: 210px;
  object-fit: cover;
  width: 100%
}

.blog-item .title-item {
  border-radius: 10px;
  padding: 2px 7px
}

.blog-item .title-item i {
  font-size: 16px
}

.blog-item h4 {
  margin-top: 15px;
  font-family: var(--main-font)
}

.video-blog-item {
  display: flex;
  align-items: flex-start;
  justify-content: start
}

.video-blog-item .image {
  position: relative;
  margin-bottom: 10px
}

.video-blog-item img {
  max-width: 100px;
  object-fit: cover;
  border-radius: 5px
}

.nav-link {
  color: var(--color-site) !important
}

.blog-item {
  background-color: #fff;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: var(--shadow-box)
}

.blog-item .title {
  padding: 10px
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-right: 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-right: 0;
  margin-bottom: 0;
  list-style: none
}

.navbar-nav .nav-link {
  padding-left: 0;
  padding-right: 0
}

.navbar-text {
  padding-top: .5rem;
  padding-bottom: .5rem
}