html {
  font-size: 15px;
}
@media (max-width: 991px) {
  html {
    font-size: 13px;
  }
}

body {
  overflow-x:hidden;
  font-family: "Raleway", sans-serif;
}

a {
  color: #000000;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
a.active, a:hover {
  color: #d1c2ab;
}
a.view-all-link {
  position: relative;
  display: block;
  text-align: center;
}
a.view-all-link::after, a.view-all-link::before {
  content: '';
  position: absolute;
  height: 1px;
  background-color: rgba(105, 105, 105, 0.5);
  width: 42%;
  top: 50%;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  a.view-all-link::after, a.view-all-link::before {
    width: 35%;
  }
}
@media (max-width: 768px) {
  a.view-all-link::after, a.view-all-link::before {
    width: 30%;
  }
}
a.view-all-link::before {
  left: 0;
}
a.view-all-link::after {
  right: 0;
}
a.view-more {
  color: #d1c2ab;
  text-decoration: underline;
  letter-spacing: 3px;
}
a.view-more.active, a.view-more:hover {
  color: #FFFFFF;
}
a.view-all {
  font-weight: 600;
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Rufina", serif;
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
  color: #d1c2ab;
}

.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 400;
}

h2, .h2 {
  font-size: 2.6rem;
}

h3, .h3 {
  font-size: 2rem;
}

h4, .h4 {
  font-size: 1.6rem;
}

.h5, h5 {
  font-size: 1.2rem;
}

.sub-heading {
  font-size: 0.833rem;
  color: #4a4a4a;
  letter-spacing: 11.5px;
}

.sub-title {
  color: #d1c2ab;
}

hr {
  border-top: 1px solid #282829;
}
hr.divider {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  width: 60px;
  border-top: 2px solid #d1c2ab;
}
hr.bold {
  border-top: 4px solid #282829;
}
hr.white {
  border-top: 1px solid #ffffff;
}

.nd-title {
  font-size: 70%;
}

.btn {
  border-radius: 0px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-lg {
  padding: 0.25rem 1.5rem;
  font-size: 1.5rem;
}

.btn-main {
  background-color: transparent;
  color: #000000;
  font-weight: 600;
  border: 2px solid;
  text-transform: uppercase;
  position: relative;
  border-color: #000000;
  display: inline-block;
  z-index: 0;
}
.btn-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  background-color: #000000;
  z-index: -1;
}
.btn-main:hover {
  color: #FFFFFF;
}
.btn-main:hover::before {
  left: 0;
  right: 0;
  opacity: 1;
}
.btn-main.btn-main-light {
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.btn-main.btn-main-light::before {
  background-color: #FFFFFF;
}
.btn-main.btn-main-light:hover {
  color: #d1c2ab;
}

.btn-filled {
  background-color: transparent;
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 0.2rem 1.25rem;
  position: relative;
  border: 2px solid;
  border-color: #000000;
  display: inline-block;
  z-index: 0;
}
.btn-filled::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  background-color: #000000;
  z-index: -1;
}
.btn-filled:hover, .btn-filled.active {
  color: #000000;
}
.btn-filled:hover::before, .btn-filled.active::before {
  left: 50%;
  right: 50%;
  opacity: 0;
}
.btn-filled.btn-filled-light {
  color: #000000;
  border-color: #FFFFFF;
}
.btn-filled.btn-filled-light::before {
  background-color: #FFFFFF;
}
.btn-filled.btn-filled-light:hover {
  color: #FFFFFF;
}

.btn-fav {
  font-size: 2rem;
  padding: 0 0.25em;
  line-height: 1;
}
.btn-fav i {
  position: relative;
}
.btn-fav i::after {
  content: '\f004';
  position: absolute;
  font-weight: 900;
  top: 0;
  left: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-fav:hover i::after, .btn-fav.faved i::after {
  color: #d1c2ab;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.btn-outline {
  font-weight: 300;
  border-radius: 5px;
  border: 1px solid;
}
.btn-outline.active, .btn-outline:hover {
  background-color: #d1c2ab;
}

.bg-dark {
  background-color: #000000 !important;
  color: white;
}
.bg-dark a {
  color: white;
}

.more-title {
  position: relative;
  display: block;
  text-align: center;
}
.more-title::after, .more-title::before {
  content: '';
  position: absolute;
  height: 1px;
  background-color: rgba(105, 105, 105, 0.5);
  width: 42%;
  top: 50%;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .more-title::after, .more-title::before {
    width: 35%;
  }
}
@media (max-width: 768px) {
  .more-title::after, .more-title::before {
    width: 30%;
  }
}
.more-title::before {
  left: 0;
}
.more-title::after {
  right: 0;
}

figure > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
figure.contained > img {
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 1440px) {
  .container {
    max-width: 1260px;
  }
}
/* form style */
.custom-form button.btn-main {
  color: #d1c2ab;
  border: 1px solid;
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
}
@media (min-width: 576px) {
  .custom-form button.btn-main {
    width: 100%;
  }
}
.custom-form.text-light .form-control {
  border-bottom: 1px solid #919191;
  color: #919191;
}
.custom-form.text-light .form-control:focus {
  color: #d1c2ab;
  border-color: #d1c2ab;
}
.custom-form.text-light label {
  color: #919191;
}
.custom-form.text-light button.btn-main:hover {
  color: #919191;
}
.custom-form label > span {
  color: #ff0000;
  font-size: 1.5rem;
  vertical-align: top;
}
.custom-form .form-group {
  z-index: 0;
  position: relative;
}
.custom-form .form-control {
  background: transparent;
  padding: .375rem 0rem;
  border: none;
  border-bottom: 1px solid #8e8e8e;
  font-size: inherit;
  border-radius: 0;
}
.custom-form .form-control:focus {
  color: #000000;
  border-color: #000000;
  background-color: transparent;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.custom-form .form-control:focus + label {
  opacity: 0;
}
.custom-form .form-control:not(textarea) + label {
  position: absolute;
  top: 5px;
  left: 0px;
  cursor: pointer;
  z-index: -1;
}
.custom-form .input-group .input-group-prepend button {
  border-color: #8e8e8e;
  border-right: none;
  padding: .3em 0.75em;
}
.custom-form .input-group .input-group-append button {
  border-color: #8e8e8e;
  border-left: none;
  padding: .3em 0.75em;
}
.custom-form .input-group > input.form-control {
  border-right: none;
  border-left: none;
}
.custom-form select.form-control {
  border-radius: 0;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  background-image: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24'><path fill='black' d='M7.406 7.828l4.594 4.594 4.594-4.594 1.406 1.406-6 6-6-6z'></path></svg>");
  background-position: 100% 50%;
  background-repeat: no-repeat;
}
.custom-form .form-row .form-control:not(textarea) + label {
  padding-left: 5px;
}

form.form-two .form-control {
  border: 1px solid #8e8e8e;
  padding: .3em 1em;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

::-moz-placeholder {
  /* Firefox 19+ */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

:-ms-input-placeholder {
  /* IE 10+ */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

:-moz-placeholder {
  /* Firefox 18- */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* end of form style */
.table .thead-dark th {
  color: #fff;
  background-color: black;
  border-color: black;
}
.table .thead-dark a {
  color: #d1c2ab;
}
.table .thead-dark a:hover {
  color: #d1c2ab;
}
.table thead th {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
.table td, .table th {
  border-top: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
.table td p, .table th p {
  margin: 0;
}
.table.showcase-table th, .table.showcase-table td {
  vertical-align: middle;
}
.table.showcase-table td {
  text-align: center;
}
.table.showcase-table th {
  font-weight: normal;
}
.table.showcase-table thead th {
  padding: 1.5rem .75rem;
}
.table.showcase-table thead th:first-child {
  border-top-left-radius: 20px;
}
.table.showcase-table thead th:last-child {
  border-top-right-radius: 20px;
}
.table.showcase-table thead th:not(:last-child) {
  border-right: 1px solid white;
}
.table.showcase-table tfoot th {
  border-bottom: none;
  padding: 1rem .75rem;
}
.table.showcase-table tfoot th:first-child {
  border-bottom-left-radius: 20px;
}
.table.showcase-table tfoot th:last-child {
  border-bottom-right-radius: 20px;
}
.table.showcase-table tfoot th:not(:last-child) {
  border-right: 1px solid white;
}
nav.navbar{
	z-index: 1111;
}
nav.navbar .navbar-brand {
  max-width: 70%;
}
@media (min-width: 1200px) {
  nav.navbar .navbar-brand {
    max-width: 25%;
  }
}
nav.navbar li a {
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 30px;
}
@media (max-width: 1199px) {
  nav.navbar .navbar-collapse ul.navbar-nav:first-of-type::after, nav.navbar .navbar-collapse ul.navbar-nav:first-of-type::before {
    content: '';
    display: block;
    width: 75px;
    background: #d1c2ab;
    height: 2px;
    margin: auto;
  }
  nav.navbar .navbar-collapse ul.navbar-nav:first-of-type::before {
    margin-bottom: 0.5rem;
  }
  nav.navbar .navbar-collapse ul.navbar-nav:first-of-type::after {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
nav.navbar .navbar-collapse ul.navbar-nav li > a {
  text-transform: uppercase;
  display: block;
  padding: .1rem 1rem;
  position: relative;
}
@media (max-width: 1199px) {
  nav.navbar .navbar-collapse ul.navbar-nav li > a {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  nav.navbar .navbar-collapse ul.navbar-nav li > a {
    padding: 3rem 1rem;
  }
  nav.navbar .navbar-collapse ul.navbar-nav li.dropdown:hover > .dropdown-menu {
    display: block;
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
}
nav.navbar .navbar-collapse ul.navbar-nav .dropdown-menu {
  background: #FFFFFF;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border: none;
  margin: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (min-width: 992px) {
  nav.navbar .navbar-collapse ul.navbar-nav .dropdown-menu {
    top: 50%;
    display: block;
    opacity: 0;
    visibility: hidden;
  }
}
nav.navbar .navbar-collapse ul.navbar-nav .dropdown-menu.show {
  top: 100%;
}
nav.navbar .navbar-collapse ul.navbar-nav .dropdown-menu a {
  padding: .25rem 1.5rem;
  white-space: nowrap;
  display: block;
  font-weight: normal;
}
nav.navbar .navbar-collapse ul.navbar-nav.other-links li > a {
  font-size: 1rem;
/*   padding: .25rem 1rem; */
}
@media (min-width: 1200px) {
  nav.navbar .navbar-collapse ul.navbar-nav.other-links li > a {
    font-size: 1.3125rem;
  }
}
nav.navbar .navbar-collapse ul.navbar-nav.other-links li > a img {
  margin-bottom: 5px;
}
@media (max-width: 1199px) {
  nav.navbar .navbar-collapse ul.navbar-nav.other-links li > a img {
    display: none;
  }
	.top-links{
		display: none;
	}
}


button.navbar-toggler {
  border: none;
  font-size: 0.6rem;
  color: white;
  position: relative;
  outline: none;
}
button.navbar-toggler .navbar-toggler-icon {
  width: 3em;
  height: 2em;
  border-bottom: 2px solid;
  position: relative;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
button.navbar-toggler .navbar-toggler-icon:before, button.navbar-toggler .navbar-toggler-icon:after {
  content: '';
  display: block;
  border-top: 2px solid;
  position: absolute;
  right: 0;
  width: 100%;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
button.navbar-toggler .navbar-toggler-icon::before {
  top: 0%;
}
button.navbar-toggler .navbar-toggler-icon:after {
  top: 50%;
}
button.navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
  border-color: transparent;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
button.navbar-toggler[aria-expanded=true] .navbar-toggler-icon:before {
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}
button.navbar-toggler[aria-expanded=true] .navbar-toggler-icon:after {
  width: 100%;
  -webkit-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
}
button.navbar-toggler[aria-expanded=true] .navbar-toggler-icon:before, button.navbar-toggler[aria-expanded=true] .navbar-toggler-icon:after {
  top: 50%;
}

.navbar-toggler:after {
  content: '';
  position: fixed;
  opacity: 0;
  visibility: hidden;
  top: 0px;
  right: 0px;
  z-index: -1;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

@media (max-width: 1200px){
.navbar-toggler[aria-expanded=true]:after {
  opacity: 1;
  visibility: visible;
  background-color: #1D1D1D;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  top: 0px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
}

@media (max-width: 1199px) {
  nav.navbar li a {
    color: #ffffff;
  }

  .navbar-collapse.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height .35s ease;
    transition: height .35s ease;
    position: fixed;
  }

  .navbar-collapse {
    text-align: center;
    position: fixed;
    top: 55%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }

  .navbar-nav .dropdown-menu {
    text-align: center;
  }
}
/* Owl Carousel Settings */
.owl-carousel .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.owl-carousel .owl-stage .owl-item .item {
  position: relative;
  display: block;
  height: 100%;
}
.owl-carousel .owl-stage .owl-item .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.slider-section {
  position: relative;
}

/* End Owl Carousel Settings */
/* Custom Slider Arrows */
.owl-carousel .owl-dots {
  position: absolute;
  width: 100%;
  bottom: 10px;
}
.owl-carousel .owl-dots button.owl-dot:focus {
  outline: none;
}
.owl-carousel .owl-dots button.owl-dot:hover span {
  background-color: #000000;
}
.owl-carousel .owl-dots button.owl-dot span {
  background: #777777;
  -webkit-box-shadow: 0px 0px 2px 1px #efefef;
          box-shadow: 0px 0px 2px 1px #efefef;
}
.owl-carousel .owl-dots button.owl-dot.active span {
  background: #000000;
}
.owl-carousel .owl-nav {
  font-family: "Raleway", sans-serif;
  font-size: 4.5rem;
}
.owl-carousel .owl-nav [class*=owl-] {
  position: absolute;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-radius: 0;
}
.owl-carousel .owl-nav [class*=owl-]:focus {
  outline: none;
}
.owl-carousel .owl-nav [class*=owl-].owl-prev {
  left: 140px;
}
@media (max-width: 1199px) {
  .owl-carousel .owl-nav [class*=owl-].owl-prev {
    left: 80px;
  }
}
@media (max-width: 768px) {
  .owl-carousel .owl-nav [class*=owl-].owl-prev {
    left: 10px;
  }
}
.owl-carousel .owl-nav [class*=owl-].owl-next {
  right: 140px;
}
@media (max-width: 1199px) {
  .owl-carousel .owl-nav [class*=owl-].owl-next {
    right: 80px;
  }
}
@media (max-width: 768px) {
  .owl-carousel .owl-nav [class*=owl-].owl-next {
    right: 10px;
  }
}
.owl-carousel .owl-nav [class*=owl-]:hover {
  color: #d1c2ab;
  background-color: transparent;
}

.spotlight-carousel.owl-carousel .owl-nav [class*=owl-].owl-prev {
  left: -40px;
}
@media (max-width: 1199px) {
  .spotlight-carousel.owl-carousel .owl-nav [class*=owl-].owl-prev {
    left: 0px;
    color: white;
    opacity: 0.7;
  }
}
.spotlight-carousel.owl-carousel .owl-nav [class*=owl-].owl-next {
  right: -40px;
}
@media (max-width: 1199px) {
  .spotlight-carousel.owl-carousel .owl-nav [class*=owl-].owl-next {
    right: 0px;
    color: white;
    opacity: 0.7;
  }
}
/* Custom Slider Arrows End */
/* Custom Slider Arrows */
.owl-controls {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.owl-controls .btn {
  bottom: 50%;
  padding: 0.25em 0.8em;
  border-radius: 0;
  color: #d1c2ab;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-size: 2rem;
  background-color: #EFEFEF;
}
.owl-controls .btn.customPrevBtn {
  left: 25px;
}
.owl-controls .btn.customNextBtn {
  right: 25px;
}
.owl-controls .btn:hover {
  background-color: #ddd;
}

/* Custom Slider Arrows End */
.page-banner {
  min-height: 450px;
  overflow: hidden;
}
.page-banner > img.bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

header .header-top {
  font-weight: 300;
  letter-spacing: 1px;
}
header .header-top a img {
  margin-bottom: 3px;
}
@media (max-width: 1199px){
	header .header-top {
		display: none !important;
	}	
}

.search-banner {
  position: relative;
  z-index: 0;
}
.search-banner img.bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
.search-banner .dest-links a {
  text-transform: uppercase;
  margin: 5px;
  border-color: white;
}
.search-banner .dest-links a:hover {
  color: white;
}

.search-tabs nav a {
  text-transform: uppercase;
  background: #000000;
}
.search-tabs nav a:hover {
  background: #d1c2ab;
  position: relative;
}
.search-tabs nav a.active {
  background: #d1c2ab;
  position: relative;
}
.search-tabs nav a.active::after {
  content: '';
  position: absolute;
  height: 0;
  width: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 6px solid #ffffff;
}
.search-tabs .tab-content .input-group {
  background: white;
  z-index: 1;
}
.search-tabs .tab-content .input-group .form-control {
  border: none;
  padding: .375rem .75rem;
  height: 38px;
}
.search-tabs .tab-content .input-group .form-control + label {
  color: #B5B5B5;
  margin-left: .75rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.search-tabs .tab-content .input-group button {
  border: none;
}
.search-tabs .tab-content .input-group button:hover {
  background: #eeeeee;
}

.article-carousel {
  font-size: 1.0666666667rem;
}
.article-carousel .owl-stage {
  display: block;
}
.article-carousel img.article-img {
  margin-bottom: 1rem;
}
.article-carousel .owl-stage .owl-item .item img.article-img{
	height: 300px;
}
@media (min-width: 576px){
	.article-carousel .owl-stage .owl-item .item img.article-img{
		height: 420px;
	}
}
@media (min-width: 991px){
	.article-carousel .owl-stage .owl-item .item img.article-img{
		height: 480px;
	}
}
@media (min-width: 1200px){
	.article-carousel .owl-stage .owl-item .item img.article-img{
		height: 400px;
	}
}
.article-carousel .owl-dots {
  position: static;
}
.article-carousel .owl-dots button.owl-dot span {
  height: 16px;
  width: 16px;
  border: 1px solid #000000;
  background: transparent;
  -webkit-box-shadow: 0px 0px 2px 1px #efefef;
          box-shadow: 0px 0px 2px 1px #efefef;
}
.article-carousel .owl-dots button.owl-dot.active span {
  background: #000000 !important;
}
.article-carousel .owl-dots button.owl-dot:hover span {
  background: #777777;
}

.sm-blog-list {
  margin-bottom: 1rem;
}
.sm-blog-list .media:not(:last-child) {
  border-bottom: 1px solid #B7B7B7;
  padding-bottom: 1rem;
}
.sm-blog-list .media:not(:first-child) {
  padding-top: 1rem;
}
.sm-blog-list .media > img {
  width: 86px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}
.sm-blog-list .media .title {
  line-height: 1.1rem;
  margin-bottom: 1rem;
}
.sm-blog-list .media p {
  margin: 0;
}

.ad-list a.ad-link {
  display: block;
  text-align: center;
}
.ad-list a.ad-link:not(:last-child) {
  margin-bottom: 10px;
}
.ad-list a.ad-link:hover {
  opacity: 0.8;
}

.supplier-spotlight a.item {
  position: relative;
  text-align: center;
  background: #000000;
  display: block;
  margin: 1rem 0;
}
.supplier-spotlight a.item > img {
  opacity: 0.7;
  width: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.supplier-spotlight a.item .title {
  font-size: 1.0666666667rem;
  color: white;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  padding: 0.25rem;
  margin-bottom: 0;
}
.supplier-spotlight a.item:hover > img {
  opacity: 0.5;
}

.featured-articles {
  font-size: 1.0666666667rem;
}
.featured-articles a.item {
  display: block;
}
.featured-articles a.item + p {
  margin-bottom: 2rem;
}
.featured-articles a.item > img {
  width: 100%;
  margin-bottom: 0.5rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
	object-fit: cover;
	height: 340px;
}
@media (min-width: 768px){
	.featured-articles a.item > img {
		height: 180px
	}
}
.featured-articles a.item:hover > img {
  opacity: 0.7;
}
.featured-articles .article-date {
  color: #d1c2ab;
}

.article-display-block {
  font-size: 1.0666666667rem;
}
.article-display-block a.item {
  display: block;
  margin-bottom: 1rem;
}
.article-display-block a.item h6 {
  font-size: 1.0666666667rem;
}
.article-display-block a.item + p {
  margin-bottom: 2rem;
}
.article-display-block a.item > img {
  width: 100%;
  margin-bottom: 0.5rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
	object-fit: cover;
	height: 180px;
}
@media (min-width: 768px){
	.article-display-block a.item > img {
		height: 280px
	}
}

.article-display-block a.item.item-big > img {
	height: 520px;
}
.article-display-block a.item:hover > img {
  opacity: 0.7;
}

.cta-section {
  position: relative;
  z-index: 0;
  font-size: 1.2rem;
  overflow: hidden;
}
.cta-section img.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: -1;
}
.cta-section .title {
  color: white;
}

/* Directory Slider */
.directory-details .directory-cat {
  color: #d1c2ab;
}
.directory-details .owl-carousel .owl-item.active > .item {
  opacity: 1;
}
.directory-details .owl-carousel .owl-item .item {
  height: 450px;
  opacity: 0.3;
}

.directory-reviews .section-title {
  border-bottom: 5px solid #000000;
  font-weight: 500;
}

.directory-contacts .section-title {
  border-bottom: 5px solid #000000;
  font-weight: 500;
}
.directory-contacts a {
  text-decoration: underline;
}
.directory-contacts .c-details li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 0;
}
.directory-contacts .c-details li i {
  margin: 5px 10px 5px 0;
}
.directory-contacts .social-icons {
  font-size: 1.5rem;
}
.directory-contacts form .form-group {
  margin-bottom: 5px;
}
.directory-contacts form p, .directory-contacts form .form-check > label {
  font-size: 0.8rem;
}

/* Directory Slider End */
.star-rating {
  color: #d1c2ab;
  display: inline-block;
}
.star-rating:not(:last-child) {
  margin-right: 1rem;
}

.directory-reviews .reviews {
  padding: 2rem 0;
  border-bottom: 1px solid black;
}
.directory-reviews .reviews .reviewer-img {
  max-width: 50px;
  margin-bottom: 1.5rem;
}
.directory-reviews .reviews .title {
  color: #d1c2ab;
}
.directory-reviews .reviews .title .star-rating {
  margin-left: 2rem;
}
.directory-reviews .reviews .review-text {
  font-size: 0.8rem;
}

footer {
  background-color: #000000;
  color: #FFFFFF;
  letter-spacing: 1px;
  overflow-y: hidden;
}
footer > .container {
  position: relative;
  z-index: 0;
}
footer > .container > img.ww-icon {
  position: absolute;
  top: -100px;
  right: 10%;
  z-index: -1;
  width: 380px;
  opacity: 0.2;
}
@media (max-width: 991px){
	footer > .container > img.ww-icon {
		right:0;
	}
}
footer .title {
  text-transform: uppercase;
  position: relative;
  font-family: "Raleway", sans-serif;
}
footer .title::after {
  content: '';
  display: block;
  height: 2px;
  width: 40px;
  background-color: #d1c2ab;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 575px) {
  footer .title::after {
    margin: 1rem auto;
  }
}
footer a {
  color: #FFFFFF;
}
footer a:hover {
  color: #d1c2ab;
}
footer .copyright {
  font-size: 0.8rem;
  font-weight: 300;
  background-color: white;
  color: black;
}
footer .copyright p {
  margin: 0;
}

.social-icons {
  color: white;
  font-size: 1rem;
}
.social-icons li {
  display: inline-block;
  margin: 0 2px;
}
.social-icons li:first-child {
  margin-left: 0;
}
.social-icons li:last-child {
  margin-right: 0;
}

a#back-to-top {
  line-height: 20px;
  padding: 2px 10px;
  text-align: center;
  color: white;
  text-transform: uppercase;
  text-decoration: underline;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
@media (min-width: 576px){
	a#back-to-top {
	  position: fixed;
	  bottom: 80px;
	  right: -150px;
	  z-index: 19;
	}
	a#back-to-top.show {
	  right: 15px;
	}
}
a#back-to-top img {
    margin-top: 10px;
    margin-bottom: 20px;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  vertical-align: baseline;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
a#back-to-top:hover {
  text-decoration: none;
}
a#back-to-top:hover img {
    margin-top: 20px;
    margin-bottom: 10px;
}

.reveal-effect {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.reveal-effect.reveal.from-left {
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
  visibility: hidden;
}
.reveal-effect.reveal.from-right {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  opacity: 0;
  visibility: hidden;
}
.reveal-effect.reveal.from-top {
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  opacity: 0;
  visibility: hidden;
}
.reveal-effect.reveal.from-bottom {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 1199px){
	.reveal-effect.reveal.from-left ,
	.reveal-effect.reveal.from-right ,
	.reveal-effect.reveal.from-top {
	  -webkit-transform: translateY(100px);
			  transform: translateY(100px);
	}
}
.select2{
	width: 100% !important;
}
#search-directory-tab .select2{
    flex: 1 1 auto;
    width: 1% !important;
/* 	padding: 0.25rem .75rem; */
}
.select2-container--default,
.select2-selection--single{
	border: none !important;
	border: none !important;
    background: transparent !important;
    border-bottom: 1px solid #ffffff !important;
    border-radius: 0 !important;
}
#search-directory-tab .select2-container--default,
#search-directory-tab.select2-selection--single,
#search-directory-tab .select2-selection__arrow {
/* 	height: 32px; */
}
.cd-section .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #fff;
}
/*k edit*/
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #000000 !important; 
}
p.reviewsuccess {
    border: 1px solid;
    padding: 5px;
}


.showcase-block .showcase-item .showcase-header,
.showcase-block .showcase-item .showcase-footer {
  background: black;
  color: #d1c2ab;
  padding: 1rem .75rem;
  text-transform: uppercase;
  position: relative;
}
.showcase-block .showcase-item .showcase-header {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-radius: 15px 15px 0 0;
  cursor: pointer;
}
.showcase-block .showcase-item .showcase-header[aria-expanded=false] {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #d1c2ab;
}
.showcase-block .showcase-item .showcase-header[aria-expanded=true] .btn-collaspe {
  display: none;
}
.showcase-block .showcase-item .showcase-footer {
  border-radius: 0 0 15px 15px;
}
.showcase-block .showcase-item .showcase-body {
  position: relative;
}
.showcase-block .showcase-item .showcase-body ul {
  padding-left: 0;
  list-style: none;
}
.showcase-block .showcase-item .showcase-body ul li {
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
.showcase-block .showcase-item .showcase-body .price {
  color: #d1c2ab;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}
.showcase-block .showcase-item .showcase-body .btn-filled {
  margin-bottom: 0.75rem;
  padding: 0.5rem 1.25rem;
  border-color: #d1c2ab;
}
.showcase-block .showcase-item .showcase-body .btn-filled:hover {
  color: #d1c2ab;
}
.showcase-block .showcase-item .showcase-body .btn-filled:before {
  background: #d1c2ab;
}
.showcase-block .showcase-item .btn-collaspe {
  background: #d1c2ab;
  color: black;
  border-radius: 50%;
  font-size: 36px;
  width: 37px;
  line-height: 35px;
  padding: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  z-index: 1;
}

.screen-reader-text {
    clip: rect(1px,1px,1px,1px);
    height: 1px;
    overflow: hidden;
    position: absolute!important;
    width: 1px;
    word-wrap: normal!important;
}

.grecaptcha-badge {
    display: none !important;
}