@font-face {
  font-family:Candara;
  src: url(../fonts/Candara.ttf);
}
@font-face {
  font-family:Mahaputra;
  src: url(../fonts/Mahaputra.ttf);
}
@font-face {
  font-family:Honoria-Regular;
  src: url(../fonts/Honoria-Regular.otf);
}
body {

}

a {
  color: #cda45e;
  text-decoration: none;
}

a:hover {
  color: #d9ba85;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {

}

.sub-banner img {
  width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #1a1814;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1a1814;
  border-top-color: #cda45e;
  border-bottom-color: #cda45e;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  border: 2px solid #eb1b69;
}
.back-to-top i {
  font-size: 28px;
  color: #eb1b69;
  line-height: 0;
}
.back-to-top:hover {
  background: #eb1b69;
  color: #fff;
}
.back-to-top:hover i {
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  height: 40px;
  transition: all 0.5s;
  padding-top: 12px;
}
#topbar.topbar-scrolled {
  top: -40px;
}
#topbar .contact-info i {
  font-style: normal;
  color: #d9ba85;
}
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}
#topbar .languages ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #cda45e;
}
#topbar .languages ul a {
  color: white;
}
#topbar .languages ul li + li {
  padding-left: 10px;
}
#topbar .languages ul li img {
    height: 20px;
}
#topbar .languages ul li img:hover {
    cursor: pointer;
}
#topbar .languages ul li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: rgba(255, 255, 255, 0.5);
  content: "";
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(12, 11, 9, 0);
  border-bottom: 0px solid rgba(12, 11, 9, 0.6);
  transition: all 0.5s;
  z-index: 997;
  padding: 0px 0;
  top: 20px;
}
#header.header-scrolled {
    top: 0;
    background: rgb(255 255 255);
    border-bottom: 0px solid #37332a;
}
#header .logo img {
  max-height: 126px;
}
#header.header-scrolled .navbar a, .navbar a:focus {
  color: #f3a421;
}
#header .navbar a:hover {
  color: #f3a421;
}





/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
  margin: 0 0 0 15px;
  border: 2px solid #cda45e;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
}
.book-a-table-btn:hover {
  background: #cda45e;
  color: #fff;
}
@media (max-width: 992px) {
  .book-a-table-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-family: Candara;
  text-transform: capitalize;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #f3a421;
}
.navbar .dropdown ul {
  display: none;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #444444;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #cda45e;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #eb1b69;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #1a1814;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #cda45e;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #cda45e;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 1305px;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
  padding: 0;
}
#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .container {
  padding-top: 110px;
}
@media (max-width: 992px) {
  #hero .container {
    padding-top: 98px;
  }
}
#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}
#hero h1 span {
  color: #cda45e;
}
#hero h2 {
  color: #eee;
  margin-bottom: 10px 0 0 0;
  font-size: 22px;
}
#hero .btns {
  margin-top: 30px;
}
#hero .btn-menu, #hero .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: white;
  border: 2px solid #cda45e;
}
#hero .btn-menu:hover, #hero .btn-book:hover {
  background: #cda45e;
  color: #fff;
}
#hero .btn-book {
  margin-left: 15px;
}
#hero .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#cda45e 50%, rgba(205, 164, 94, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}
#hero .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
#hero .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(205, 164, 94, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
#hero .play-btn:hover::after {
  border-left: 15px solid #cda45e;
  transform: scale(20);
}
#hero .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}
@media (min-width: 1024px) {
  #hero {
    
  }
}
@media (max-width: 992px) {
  #hero .play-btn {
    margin-top: 30px;
  }
}
@media (max-height: 500px) {
  #hero {
    height: auto;
  }
  #hero .container {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #1a1814;
}

.section-title {
  padding-bottom: 40px;
}
.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
}
.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  margin: 4px 10px;
}
.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  color: #cda45e;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #1d1b16;
  margin-top: 110px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 98px;
  }
}
.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #37332a;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: url("../img/about-bg.jpg") center center;
  background-size: cover;
  position: relative;
  padding: 80px 0;
}
.about:before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.about .about-img {
  position: relative;
  transition: 0.5s;
}
.about .about-img img {
  max-width: 100%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;
}
.about .about-img::before {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  z-index: 1;
  content: "";
  border-left: 5px solid #cda45e;
  border-top: 5px solid #cda45e;
  transition: 0.5s;
}
.about .about-img::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 2;
  content: "";
  border-right: 5px solid #cda45e;
  border-bottom: 5px solid #cda45e;
  transition: 0.5s;
}
.about .about-img:hover {
  transform: scale(1.03);
}
.about .about-img:hover::before {
  left: 10px;
  top: 10px;
}
.about .about-img:hover::after {
  right: 10px;
  bottom: 10px;
}
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-bottom: 10px;
}
.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #cda45e;
}
.about .content p:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .about {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  background: #1a1814;
}
.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #cda45e;
}
.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.8);
}
.why-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}
.why-us .box:hover {
  background: #cda45e;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}
.why-us .box:hover span, .why-us .box:hover h4, .why-us .box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}
.menu #menu-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 12px 10px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
  transition: all ease-in-out 0.3s;
  border-radius: 50px;
}
.menu #menu-flters li:hover, .menu #menu-flters li.filter-active {
  color: #cda45e;
}
.menu #menu-flters li:last-child {
  margin-right: 0;
}
.menu .menu-item {
  margin-top: 50px;
}
.menu .menu-img {
  width: 70px;
  border-radius: 50%;
  float: left;
  border: 5px solid rgba(255, 255, 255, 0.2);
}
.menu .menu-content {
  margin-left: 85px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.menu .menu-content::after {
  content: "......................................................................" "...................................................................." "....................................................................";
  position: absolute;
  left: 20px;
  right: 0;
  top: -4px;
  z-index: 1;
  color: #bab3a6;
}
.menu .menu-content a {
  padding-right: 10px;
  background: #1a1814;
  position: relative;
  z-index: 3;
  font-weight: 700;
  color: white;
  transition: 0.3s;
}
.menu .menu-content a:hover {
  color: #cda45e;
}
.menu .menu-content span {
  background: #1a1814;
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 600;
  color: #cda45e;
}
.menu .menu-ingredients {
  margin-left: 85px;
  font-style: italic;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
  overflow: hidden;
}
.specials .nav-tabs {
  border: 0;
}
.specials .nav-link {
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: #fff;
  border-radius: 0;
  border-right: 2px solid #cda45e;
  font-weight: 600;
  font-size: 15px;
}
.specials .nav-link:hover {
  color: #cda45e;
}
.specials .nav-link.active {
  color: #1a1814;
  background: #cda45e;
  border-color: #cda45e;
}
.specials .nav-link:hover {
  border-color: #cda45e;
}
.specials .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}
.specials .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}
.specials .details p {
  color: #aaaaaa;
}
.specials .details p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
  background: url(../img/events-bg.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}
.events::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.events .section-title h2 {
  color: #fff;
}
.events .container {
  position: relative;
}
@media (min-width: 1024px) {
  .events {
    background-attachment: fixed;
  }
}
.events .events-carousel {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
}
.events .event-item {
  color: #fff;
}
.events .event-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: #cda45e;
}
.events .event-item .price {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}
.events .event-item .price span {
  border-bottom: 2px solid #cda45e;
}
.events .event-item ul {
  list-style: none;
  padding: 0;
}
.events .event-item ul li {
  padding-bottom: 10px;
}
.events .event-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #cda45e;
}
.events .event-item p:last-child {
  margin-bottom: 0;
}
.events .swiper-pagination {
  margin-top: 30px;
  position: relative;
}
.events .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}
.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #cda45e;
}

/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/
.book-a-table .php-email-form {
  width: 100%;
}
.book-a-table .php-email-form .form-group {
  padding-bottom: 8px;
}
.book-a-table .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}
.book-a-table .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.book-a-table .php-email-form .error-message br + br {
  margin-top: 25px;
}
.book-a-table .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.book-a-table .php-email-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
}
.book-a-table .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #cda45e;
  border-top-color: #1a1814;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.book-a-table .php-email-form input, .book-a-table .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: #0c0b09;
  border-color: #625b4b;
  color: white;
}
.book-a-table .php-email-form input::-webkit-input-placeholder, .book-a-table .php-email-form textarea::-webkit-input-placeholder {
  color: #a49b89;
}
.book-a-table .php-email-form input::-moz-placeholder, .book-a-table .php-email-form textarea::-moz-placeholder {
  color: #a49b89;
}
.book-a-table .php-email-form input::placeholder, .book-a-table .php-email-form textarea::placeholder {
  color: #a49b89;
}
.book-a-table .php-email-form input:focus, .book-a-table .php-email-form textarea:focus {
  border-color: #cda45e;
}
.book-a-table .php-email-form input {
  height: 44px;
}
.book-a-table .php-email-form textarea {
  padding: 10px 12px;
}
.book-a-table .php-email-form button[type=submit] {
  background: #cda45e;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.book-a-table .php-email-form button[type=submit]:hover {
  background: #d3af71;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid rgba(255, 255, 255, 0.2);
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: white;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 0 45px;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #d3af71;
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #26231d;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}
.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #cda45e;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #454035;
  border-bottom: 3px solid #454035;
}
.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}
.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Chefs
--------------------------------------------------------------*/
.chefs .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}
.chefs .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}
.chefs .member .member-info-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  transition: bottom 0.4s;
}
.chefs .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}
.chefs .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}
.chefs .member .social {
  position: absolute;
  left: 0;
  bottom: -38px;
  right: 0;
  height: 48px;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
}
.chefs .member .social a {
  transition: color 0.3s;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
}
.chefs .member .social a:hover {
  color: #cda45e;
}
.chefs .member .social i {
  font-size: 18px;
  margin: 0 2px;
}
.chefs .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}
.chefs .member:hover .member-info-content {
  bottom: 60px;
  transition: bottom 0.4s;
}
.chefs .member:hover .social {
  bottom: 0;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
}
.contact .info i {
  font-size: 20px;
  float: left;
  width: 44px;
  height: 44px;
  background: #cda45e;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #bab3a6;
}
.contact .info .open-hours, .contact .info .email, .contact .info .phone {
  margin-top: 40px;
}
.contact .php-email-form {
  width: 100%;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #cda45e;
  border-top-color: #1a1814;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: #0c0b09;
  border-color: #625b4b;
  color: white;
}
.contact .php-email-form input::-webkit-input-placeholder, .contact .php-email-form textarea::-webkit-input-placeholder {
  color: #a49b89;
}
.contact .php-email-form input::-moz-placeholder, .contact .php-email-form textarea::-moz-placeholder {
  color: #a49b89;
}
.contact .php-email-form input::placeholder, .contact .php-email-form textarea::placeholder {
  color: #a49b89;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #cda45e;
}
.contact .php-email-form input {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  background: #cda45e;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #d3af71;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {  
  background-image: url(../img/varnaa-footer-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
    font-size: 36px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    font-family: Honoria-Regular;
    letter-spacing: 5px;
}
#footer .footer-top .footer-info p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0;
    color: #fff;
    font-family: Candara;
}
#footer .footer-top .footer-info p a {
    color: #fff;
}
#footer .footer-top .footer-info p i {
    margin-right: 6px;
}
#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #e59c26;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #cda45e;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1.5;
    font-family: Candara;
    font-size: 16px;
    text-transform: capitalize;
}
#footer .footer-top .footer-links ul a:hover {
  color: #cda45e;
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  border: 1px solid #fff;
}
#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
  background: #fff;
  color: #000;
  font-family: Candara;
}
#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: #e59c26;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}
#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #d3af71;
}
#footer .copyright {
    text-align: center;
    padding-top: 30px;
    font-family: Candara;
    font-size: 16px;
    text-transform: uppercase;
    color: #151b46;
}
#footer .copyright a {
    color: #eb1b69;
}
#footer .footer-top .footer-newsletter p {
  text-align: justify;
}

.footer-payment {
  padding: 2em 1em 1em 0em;
}
.footer-payment a {
  padding-right: 10px;
}



.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  background-color: #eb1b69;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;

}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  display: block;
  transition: 0.3s;
  font-family: Candara;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;

}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}





.varnaa-silks-home-one {
  background: url(../img/varnaa-silks-home-master-bg-one.jpg) top center no-repeat;
  background-size: cover;
  position: relative;
  padding: 100px 0;
  /*background-attachment: fixed;*/
}
.varnaa-silks-title-one {
    font-family:Honoria-Regular;
    font-size: 4em;
    text-align: center;
    color: #fff;
}
.varnaa-silks-para-one {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: Candara;
    font-size: 15px;
    color: #fff;
}



.section-one.portfolio .filters {
  text-align: center;
  margin-top: 0px;
  position: relative;
}
.section-one.portfolio .filters ul {
  padding: 0;  
}
.section-one.portfolio .filters:before {
    content: "";
    display: block;
    width: 25%;
    height: 2px;
    background: #fff;
    left: 0;
    top: 21px;
    position: absolute;
}
.section-one.portfolio .filters:after {
    content: "";
    display: block;
    width: 24%;
    height: 2px;
    background: #fff;
    right: 0;
    top: 21px;
    position: absolute;
}
.section-one.portfolio .filters ul li {
    list-style: none;
    display: inline-block;
    padding: 9px 30px;
    cursor: pointer;
    position: relative;
    font-family: Candara;
    background-color: #fff;
    color: #bf1a3a;
    font-size: 16px;
    border-radius: 15px;
    margin: 0px -4px 0px -1px;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
    z-index: 999;
}


.section-one.portfolio .filters-content {
  margin-top: 50px;
}
.section-one.portfolio .filters-content .show {
  opacity: 1;
  visibility: visible;
  transition: all 350ms;
}
.section-one.portfolio .filters-content .hide {
  opacity: 0;
  visibility: hidden;
  transition: all 350ms;
}
.section-one.portfolio .filters-content .item {
    cursor: pointer;
    margin-bottom: 30px;
    background-color: #fff;
    padding: 25px;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
}
.section-one.portfolio .filters-content .item .p-inner {
  padding: 0px 0px;
}
.section-one.portfolio .filters-content .item .p-inner p {
  font-size: 15px;
  font-family:Candara;
  color: #000;
  margin-top: 10px;
  font-weight: 500;
}
.section-one.portfolio .filters-content .item .p-inner h5 {
  font-size: 17px;
  color: #000;
  font-family:Candara;
  color: #000;
}
.section-one.portfolio .filters-content .item .p-inner h5 span {
  display: inline-block;
  color: #000;
  float: right;
}
.section-one.portfolio .filters-content .item .p-inner h5 span a {
  color: #000;
  padding-left: 10px;
}
.section-one.portfolio .filters-content .item .p-inner h5 span a img {
  width: 25px;
}
.section-one.portfolio .filters-content .item img {
  width: 100%;
}
.icondot {
    padding: 0px 0px 0px 0px!important;
    background-color: transparent!important;
}






.section-two.portfolio .filters {
  text-align: center;
  margin-top: 0px;
  z-index: 999;
  position: relative;
}
.section-two.portfolio .filters ul {
  padding: 0;  
}
.section-two.portfolio .filters:before {
    content: "";
    display: block;
    width: 25%;
    height: 2px;
    background: #c31111;
    left: 0;
    top: 21px;
    position: absolute;
}
.section-two.portfolio .filters:after {
    content: "";
    display: block;
    width: 25%;
    height: 2px;
    background: #c31111;
    right: 0;
    top: 21px;
    position: absolute;
}
.section-two.portfolio .filters ul li {
    list-style: none;
    display: inline-block;
    padding: 9px 30px;
    cursor: pointer;
    position: relative;
    font-family: Candara;
    background-color: #c31111;
    color: #fff;
    font-size: 16px;
    border-radius: 15px;
    margin: 0px -4px 0px -1px;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
    z-index: 999;
}
.section-two.portfolio .filters ul li:after {
  content: "";
  display: block;
  width: calc(0% - 60px);
  position: absolute;
  height: 2px;
  background: #bf1a3a;
  transition: width 350ms ease-out;
}
.section-two.portfolio .filters ul li:hover:after {
  width: calc(100% - 60px);
  transition: width 350ms ease-out;
}
.section-two.portfolio .filters ul li.active:after {
  width: calc(100% - 60px);
}
.section-two.portfolio .filters-content {
  margin-top: 50px;
}
.section-two.portfolio .filters-content .show {
  opacity: 1;
  visibility: visible;
  transition: all 350ms;
}
.section-two.portfolio .filters-content .hide {
  opacity: 0;
  visibility: hidden;
  transition: all 350ms;
}
.section-two.portfolio .filters-content .item {
    cursor: pointer;
    margin-bottom: 30px;
    background-color: #fff;
    padding: 4px;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
}
.section-two.portfolio .filters-content .item .p-inner {
  padding: 0px 0px;
}
.section-two.portfolio .filters-content .item img {
  width: 100%;
}
.icondot {
    padding: 0px 0px 0px 0px!important;
    background-color: transparent!important;
}



.varnaa-silks-title-two {
    font-family:Honoria-Regular;
    font-size: 4em;
    text-align: center;
    color: #000;
}
.varnaa-silks-para-two {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: Candara;
    font-size: 15px;
    color: #000;
}




.varnaa-silks-home-two {
  background-color: #ffc20e;
  position: relative;
}
.home-two-strip-1 img {
  position: absolute;
  top: 0px;
  left: 0px;
}
.home-two-strip-2 img {
  position: absolute;
  top: 0px;
  right: 0px;
}
.home-two-strip-3 img {
  position: absolute;
  bottom: 0px;
  right: 0px;
  max-height: 372px;
}
.home-two-head {
    font-family: Honoria-Regular;
    font-size: 4em;
    text-align: left;
    color: #000;
}
.home-two-para {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: Candara;
    font-size: 15px;
    color: #232323;
}
.home-two-box-2 .btn-success {
    color: #000;
    background-color: #fff;
    border-color: #fff;
    font-family: Candara;
    text-transform: capitalize;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}




.varnaa-silks-home-three {
    background-image: url(../img/home-three-background.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}
.home-three-strip-1 img {
    position: absolute;
    bottom: 0px;
    left: 0px;
    max-height: 372px;
}
.home-three-head {
    font-family: Honoria-Regular;
    font-size: 4em;
    text-align: left;
    color: #fff;
}
.home-three-para {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: Candara;
    font-size: 15px;
    color: #fff;
}
.home-three-box-1 .btn-success {
    color: #000;
    background-color: #fff;
    border-color: #fff;
    font-family: Candara;
    text-transform: capitalize;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}











.varnaa-silks-home-four {
    position: relative;
    background-color: #ffc20e;
}
.home-four-strip-1 img {
    position: absolute;
    bottom: 0px;
    left: 0px;
}
.home-four-strip-2 img {
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 999;
}
.home-four-strip-3 img {
    position: absolute;
    bottom: 0px;
    right: 0px;
    max-width: 287px;
}


.home-three-four-head {
    font-family: Honoria-Regular;
    font-size: 4em;
    text-align: left;
    color: #000;
}
.home-four-para {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: Candara;
    font-size: 15px;
    color: #232323;
}
.home-four-box-2 .btn-success {
    color: #000;
    background-color: #fff;
    border-color: #fff;
    font-family: Candara;
    text-transform: capitalize;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}





.varnaa-silks-home-five {
    position: relative;
}
.home-five-strip-1 img {
    position: absolute;
    left: 0px;
    top: 0px;
}
.home-five-strip-2 img {
    position: absolute;
    right: 0px;
    top: 0px;
}
.home-five-head {
    font-family: Honoria-Regular;
    font-size: 4em;
    text-align: left;
    color: #000;
    text-align: center;
    margin-bottom: 0.5em;
}
.home-five-head img {
    padding-right: 9px;
    width: 104px;
}
.home-five-para {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: Candara;
    font-size: 15px;
    color: #232323;
}








.fifth-sub {
    padding: 40px 0;
}


.gtco-testimonials {
  position: relative;
}
@media (max-width: 767px) {
  .gtco-testimonials {
    margin-top: 20px;
  }
}
.gtco-testimonials .owl-stage-outer {
  padding: 30px 0;
}
.gtco-testimonials .owl-nav {
  display: none;
}
.gtco-testimonials .card {
  background: #fff;
  box-shadow: 0 8px 30px -7px #ccc;
  margin: 0 20px;
  padding: 0 0px;
  border-radius: 0px;
  border: 0;
}
.gtco-testimonials .card .card-img-top {
  width: 100%;
  height: auto;
  margin: 0px auto 0;
  box-shadow: 0 8px 20px -4px #95abbb;
}
.gtco-testimonials .card h5 {
    color: #fff;
    font-size: 17px;
    line-height: 1.5em;
    font-family: Candara;
    margin: 0px;
    padding-top: 0.8em;
    padding-bottom: 0.8em;
    text-transform: capitalize;
}
.gtco-testimonials .active {
  opacity: 1;
  transition: all 0.3s;
}
.gtco-testimonials .center {
  opacity: 1;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  outline: 0;
}



.gtco-testimonials .card {
  position: relative;
}
.gtco-testimonials .top-left-1 {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #c9378b;
  color: #fff;
  font-family: Candara;
  font-size: 14px;
  padding: 25px 35px 30px 13px;
  border-bottom-right-radius: 85px;
}
.gtco-testimonials .top-left-2 {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #be0e22;
  color: #fff;
  font-family: Candara;
  font-size: 14px;
  padding: 25px 35px 30px 13px;
  border-bottom-right-radius: 85px;
}
.gtco-testimonials .top-left-3 {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #ffc20e;
  color: #fff;
  font-family: Candara;
  font-size: 14px;
  padding: 25px 35px 30px 13px;
  border-bottom-right-radius: 85px;
}
.gtco-testimonials .card-body-1 {
  background-color: #c9378b;
}
.gtco-testimonials .card-body-2 {
  background-color: #be0e22;
}
.gtco-testimonials .card-body-3 {
  background-color: #ffc20e;
}









.fifth-gallery {
    background-image: url(../img/home-video-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
}
.home-video-title {
    font-family: Honoria-Regular;
    font-size: 4em;
    text-align: left;
    color: #000;
    text-align: center;
    margin-bottom: 0em;
}
.home-video-para {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: Candara;
    font-size: 15px;
    color: #232323;
    text-align: center;
}

.gtco-video {
  position: relative;
}
@media (max-width: 767px) {
  .gtco-video {
    margin-top: 20px;
  }
}
.gtco-video .owl-stage-outer {
  padding: 30px 0;
}
.gtco-video .owl-nav {
  display: none;
}
.gtco-video .card {
  background: transparent;
  box-shadow: none;
  margin: 0 20px;
  padding: 0 0px;
  border-radius: 0px;
  border: 0;
}
.gtco-video .card .card-img-top {
  width: 100%;
  height: auto;
  margin: 0px auto 0;
  box-shadow: none;
}









.varnaa-silks-home-six {
    background-image: url(../img/home-six-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 0;
}
.six-box-1 {
    text-align: center;
    padding: 0.6em;
}
.six-box-1 h4 {
    text-align: center;
    text-transform: capitalize;
    font-size: 20px;
}



.varnaa-silks-home-seven {
    position: relative;
}
.home-seven-strip-1 img {
    position: absolute;
    left: 0px;
    top: 0px;
}
.home-seven-strip-2 img {
    position: absolute;
    right: 0px;
    top: 0px;
}
.testimonials-head {
    font-family: Honoria-Regular;
    font-size: 4em;
    color: #000;
    text-align: center;
    margin-bottom: 0.5em;
}





.gtco-clients-testimonials {
  position: relative;
}
@media (max-width: 767px) {
  .gtco-clients-testimonials {
    margin-top: 20px;
  }
}
.gtco-clients-testimonials .owl-stage-outer {
  padding: 30px 0;
}
.gtco-clients-testimonials .owl-nav {
  display: none;
}
.gtco-clients-testimonials .card {
  background: transparent;
  box-shadow: none;
  margin: 0 20px;
  padding: 0 0px;
  border-radius: 0px;
  border: 0;
}
.gtco-clients-testimonials .card .card-img-top {
  width: 140px;
  height: auto;
  margin: 0px auto 0;
  box-shadow: none;
}
.gtco-clients-testimonials .card p {
  font-family:Candara;
  font-size: 16px;
  color: #000;
  text-align: justify;
  margin-top: 1.5em;
}
.gtco-clients-testimonials .owl-dots {
  text-align: center;
}
.gtco-clients-testimonials .owl-dots span {
  position: relative;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: block;
  background: #fff;
  border: 2px solid #01b0f8;
  margin: 0 5px;
}
.gtco-clients-testimonials .owl-dots .active {
  box-shadow: none;
}
.gtco-clients-testimonials .owl-dots .active span {
  background: #01b0f8;
  box-shadow: none;
  height: 12px;
  width: 12px;
  margin-bottom: -1px;
}





.pro-des-title {
    font-family: Honoria-Regular;
    font-size: 4em;
    text-align: left;
    color: #000;
    margin-bottom: 0.3em;
}
.pro-des-para {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: Candara;
    font-size: 15px;
    color: #000;
    text-align: justify;
}


.master-bread-crumb {
    padding-top: 1em;
    padding-bottom: 1em;
}
.master-bread-crumb p {
    font-family: Candara;
    text-transform: uppercase;
    font-size: 14px;
    color: #999494;
    font-weight: bold;
}
.master-bread-crumb p a {
    color: #bf1a3a;
    padding-right: 5px;
}





.description-box-1 #sync1 .item {
  background: #fff;
  padding: 0px 0px;
  margin: 5px;
  color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
}
.description-box-1 #sync1 .item img {
  border: 0px solid #d5b35f;
  border-radius: 0px;
}

.description-box-1 #sync2 .item {
  background: #fff;
  padding: 0px 0px;
  margin: 5px;
  color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}
.description-box-1 #sync2 .item img {
  border: 0px solid #d5b35f;
  border-radius: 0px;
}
.description-box-1 #sync2 .current .item img {
  border: 2px solid #dc0c6e;
  border-radius: 0px;
}

.description-box-1 .owl-theme .owl-nav {
  /*default owl-theme theme reset .disabled:hover links */
}
.description-box-1 .owl-theme .owl-nav [class*="owl-"] {
  transition: all 0.3s ease;
}
.description-box-1 .owl-theme .owl-nav [class*="owl-"].disabled:hover {
  background-color: #d6d6d6;
}

.description-box-1 #sync1.owl-theme {
  position: relative;
}
.description-box-1 #sync1.owl-theme .owl-prev {
  width: 22px;
  height: 40px;
  margin-top: -20px;
  position: absolute;
  top: 50%;
}
.description-box-1 #sync1.owl-theme .owl-next {
  width: 22px;
  height: 40px;
  margin-top: -20px;
  position: absolute;
  top: 50%;
}
.description-box-1 #sync1.owl-theme .owl-prev {
  left: 10px;
}
.description-box-1 #sync1.owl-theme .owl-next {
  right: 10px;
}


.pro-des-name {
    color: #bf1a3a;
    font-family: Candara;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0.4em;
}
.pro-des-price {
    font-family: Candara;
    color: #000;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 0.4em;
}
.pro-des-available {
    font-family: Candara;
    font-size: 16px;
    margin-bottom: 1em;
}
.pro-des-available span {
    color: #999494;
}
.pro-des-available i {
    color: #dcc5aa;
    padding-right: 2px;
    padding-left: 2px;
}
.pro-des-rating {
    margin-bottom: 1.5em;
}
.pro-des-rating a {
    color: #dcc5aa;
    font-size: 18px;
    padding-right: 3px;
    display: inline-block;
}
.pro-des-rating span {
    font-size: 16px;
    text-transform: capitalize;
    font-style: italic;
}
.pro-des-quick-review {
    font-family: Candara;
    font-size: 16px;
    text-align: justify;
    padding-bottom: 0.7em;
    padding-top: 0.7em;
    border-top: 1px solid #ca9837;
    border-bottom: 1px solid #ca9837;
    margin-top: 1.6em;
    margin-bottom: 1.6em;
    color: #717271;
}
.pro-des-quick-review b {
    color: #000000c4;
}
.pro-des-quantity label {
    display: inline-block;
    font-family: Candara;
    font-size: 20px;
    color: #000;
    margin-bottom: 0.4em;
}
.pro-des-quantity {
    margin-bottom: 1.6em;
}
.pro-des-quantity .form-control {
    display: block;
    padding: 5px 7px 5px 11px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #000;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    width: 15%;
}
.pro-des-add-to-cart label {
    display: inline-block;
    font-size: 14px;
    color: #717271;
    font-weight: 600;
    padding-right: 0.8em;
}
.pro-des-add-to-cart .btn-danger {
    color: #fff;
    background-color: #bf1a3a;
    border-color: #bf1a3a;
    font-family: Candara;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    padding: 4px 15px 4px 15px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    margin-left: 0.5em;
    margin-right: 0.5em;
}



/* Style the tab */
.description-three-box-1 .tab {
    float: left;
    border: 1px solid #dcc5aa;
    width: 100%;
    height: auto;
    padding: 0em 1.6em 2.5em 1.6em;
}

/* Style the buttons inside the tab */
.description-three-box-1 .tab button {
    display: block;
    background-color: #dcc5aa;
    color: #000;
    padding: 12px 16px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    font-size: 17px;
    font-family: Candara;
    text-align: center;
    margin-top: 1.8em;
}

/* Change background color of buttons on hover */
.description-three-box-1 .tab button:hover {
  background-color: #ddd;
}

/* Create an active/current "tab button" class */
.description-three-box-1 .tab button.active {
    background-color: #bf1a3a;
    color: #fff;
}

/* Style the tab content */
.description-three-box-2 .tabcontent {
    float: left;
    padding: 12px 0px;
    border: 1px solid #dcc5aa;
    width: 100%;
    height: auto;
}
.description-three-box-2 .tabcontent p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: Candara;
    font-size: 14px;
    text-align: justify;
    line-height: 24px;
}
.pro-des-content {
    padding-bottom: 0.6em;
    padding-top: 0.2em;
    border-top: 1px solid #dcc5aa;
    padding-left: 1em;
    padding-right: 1em;
}
.description-three-box-2 .tabcontent h5 {
    font-family: Candara;
    font-size: 17px;
    text-transform: capitalize;
}
.description-three-box-2 .tabcontent h6 {
    font-family: Candara;
    font-size: 17px;
    text-transform: capitalize;
    color: #bf1a3a;
}



.pro-des-you-may-head {
  color: #232323;
  background-color: #dcc5aa;
  border-radius: 5px;
  padding: 5px;
  text-align: center;
  font-family: Candara;
  text-transform: uppercase;
  font-size: 21px;
}
.gtco-you-may-also-like {
  position: relative;
}
@media (max-width: 767px) {
  .gtco-you-may-also-like {
    margin-top: 20px;
  }
}
.gtco-you-may-also-like .owl-stage-outer {
  padding: 30px 0;
}
.gtco-you-may-also-like .owl-nav {
  display: none;
}
.gtco-you-may-also-like .card {
  background-color: #fff;
  padding: 12px;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
  margin: 0 20px;
  border-radius: 0px;
  border: 0;
}
.gtco-you-may-also-like .card .card-img-top {
  width: 100%;
  height: auto;
  margin: 0px auto 0;
}


.gtco-you-may-also-like .card .p-inner p {
  font-size: 15px;
  font-family:Candara;
  color: #000;
  margin-top: 10px;
  font-weight: 500;
  text-align: left;
}
.gtco-you-may-also-like .card .p-inner h5 {
  font-size: 17px;
  color: #000;
  font-family:Candara;
  color: #000;
  text-align: left;
}
.gtco-you-may-also-like .card .p-inner h5 span {
  color: #000;
  float: right;
}
.gtco-you-may-also-like .card .p-inner h5 span a {
  color: #000;
  padding-left: 10px;  
}
.gtco-you-may-also-like .card .p-inner h5 span a img {
  width: 20px;
  display: inline-block;
}






.product-list-filter-master label {
    display: inline-block;
    font-family: Candara;
    font-size: 16px;
    margin-bottom: 0.6em;
}
.color-btn {
    width: 13px;
    height: 13px;
    display: inline-block;
    border-radius: 30px;
}
.color-red {
    background-color: #bf1a3a;
}
.color-green {
    background-color: #00a854;
}
.color-orange {
    background-color: #c76628;
}
.color-yellow {
    background-color: #e2c122;
}
.color-blue {
    background-color: #2da4dd;
}
.color-pink {
    background-color: #ee3b8b;
}
.color-violet {
    background-color: #8d53a1;
}
.product-list-filter-master input {
    margin: 0px 5px 0px 0px;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}


.pro-sub-box-1 .accordion-button {
    background-color: transparent;
    font-family: Candara;
    font-size: 19px;
    color: #000;
    border: none;
    border-bottom: 2px solid #a7a7a7;
}
.pro-sub-box-1 .accordion-item {
    background-color: transparent;
    border: none;
    box-shadow: none;
}
.pro-sub-box-1 .accordion-button:focus {
    box-shadow: none;
}




#pro-sub-one {
  background-image: url(../img/product-list-filter-background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.pro-filter-video video {
    object-fit: fill;
    border-radius: 22px;
}
.pro-filter-title {
    font-family: Honoria-Regular;
    font-size: 4em;
    color: #000;
    margin-top: 1.3em;
    margin-bottom: 0.8em;
}


.pro-filter-title-two {
    font-family: Honoria-Regular;
    font-size: 3em;
    color: #000;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.pro-filter-nav-box-1 {
    padding-top: 1em;
    padding-bottom: 1em;
}
.pro-filter-nav-box-1 p {
    font-family: Candara;
    text-transform: capitalize;
    font-size: 17px;
    color: #999494;
}
.pro-filter-nav-box-1 p a {
    color: #bf1a3a;
    padding-right: 5px;
}


.pro-filter-nav-box-2 {
    padding-top: 1em;
    padding-bottom: 1em;
}
.pro-filter-nav-box-2 p {
    font-family: Candara;
    text-transform: capitalize;
    font-size: 17px;
    color: #cd3363;
}



.pro-filter-nav-box-3 {
    padding-top: 1em;
    padding-bottom: 1em;
}
.pro-filter-nav-box-3 select {
    font-family: Candara;
    text-transform: capitalize;
    font-size: 17px;
    color: #cd3363;
    background-color: transparent;
    border: none;
}




.pro-filter-content-box {
    cursor: pointer;
    margin-bottom: 30px;
    background-color: #fff;
    padding: 8px;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
}
.pro-filter-content-box .p-inner {
  padding: 0px 0px;
}
.pro-filter-content-box .p-inner p {
  font-size: 15px;
  font-family:Candara;
  color: #000;
  margin-top: 10px;
  font-weight: 500;
}
.pro-filter-content-box .p-inner h5 {
  font-size: 17px;
  color: #000;
  font-family:Candara;
  color: #000;
}
.pro-filter-content-box .p-inner h5 span {
  display: inline-block;
  color: #000;
  float: right;
}
.pro-filter-content-box .p-inner h5 span a {
  color: #000;
  padding-left: 10px;
}
.pro-filter-content-box .p-inner h5 span a img {
  width: 20px;
}



.cart-master-section {
    background-image: url(../img/checkout-pattern-bg.png);
    background-color: #fff;
    background-repeat: repeat;
    background-size: contain;
}

.cart-title {
    font-family: Honoria-Regular;
    font-size: 3em;
    color: #000;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}
.cart-sec-head {
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 0.6em;
    background-color: #e0e0e04d;
    padding-left: 10px;
    border-bottom: 2px solid #e4d4bd;
    padding-bottom: 3px;
    color: #000;
    font-weight: 600;
}
.cart-pro-name {
    font-size: 16px;
    color: #000000c2;
    font-weight: 600;
    line-height: 21px;
    margin-bottom: 0.5em;
}
.cart-pro-code {
    color: #7b7a7a;
}
.cart-pro-code span {
    color: #000;
}
.cart-pro-des-quantity {
    margin-bottom: 1.5em;
}
.cart-pro-des-quantity input {
    height: 18px;
    width: 60px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #222222a1;
    border-radius: 0px;
    display: inline-block;
    vertical-align: middle;
    color: #000;
}
.cart-pro-des-quantity .icofont-minus {
    background-color: #dc3545;
    padding: 1.5px;
    color: #fff;
    cursor: pointer;
}
.cart-pro-des-quantity .icofont-plus {
    background-color: #dc3545;
    padding: 2px;
    color: #fff;
    cursor: pointer;
}
.cart-pro-delivery {
    font-size: 13px;
    color: #000;
    font-weight: 600;
    line-height: 21px;
    margin-bottom: 0.5em;
}
.cart-pro-price {
    font-family: Candara;
    color: #dc3545;
    font-size: 15px;
    font-weight: 400;
}




.cart-order-summary-master {
    background-color: #efe6d7;
    padding: 1.5em;
}
.cart-summary-head {
    font-size: 18px;
    text-transform: uppercase;
    color: #000;
    border-bottom: 1px solid #fff;
    padding-bottom: 0.3em;
    margin-bottom: 0.6em;
    font-weight: 600;
}
.cart-order-summary-master table {
    width: 100%;
}
.cart-order-summary-master table tr th {
    font-family: Candara;
    font-size: 16px;
    text-transform: uppercase;
    padding: 5px;
    border-bottom: 1px solid #fff;
}
.cart-order-summary-master table tr td {
    font-family: Candara;
    font-size: 14px;
    text-transform: uppercase;
    padding: 7px;
    color: #000;
    border-bottom: 1px solid #fff;
}
.cart-order-summary-master table tr th select {
    word-wrap: normal;
    background-color: #fff;
    border: none;
    display: block;
    padding: 4px;
}
.cart-order-summary-master .btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
    font-family: Candara;
    width: 100%;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 0.6em;
}
hr.cart-hr {
    border-top: 2px solid #ca9837;
    margin-top: 1.6em;
    margin-bottom: 1.6em;
}
.cart-promo-box label {
    display: inline-block;
    font-size: 15px;
    color: #000;
    font-weight: 600;
    line-height: 21px;
    margin-bottom: 0.5em;
}
.promo-box-form .form-control {
    display: inline-block;
    width: 40%;
    padding: 6px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 2px solid #dfcdb0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.promo-box-form .btn-danger {
    color: #000;
    background-color: #dfcdb0;
    border-color: #dfcdb0;
    font-size: 14px;
    margin: -5px 0px 0px -4px;
    text-transform: capitalize;
    padding: 7px;
    font-family: Candara;
    border-radius: 0px;
}
.promo-back-to-shop {
    margin-top: 1em;
    margin-bottom: 1.6em;
}
.promo-back-to-shop a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #cda45e;
    padding-bottom: 3px;
    font-family: Candara;
    font-size: 16px;
}








.product-my-account-master {
  padding: 0px;
}
.master-tab .nav-item {
    margin-bottom: 1.5em;
}
.master-tab .nav-item span {
    font-family:Honoria-Regular;
    font-size: 22px;
    color: #000;
}
.master-tab .nav-link {
    display: block;
    padding: 0px 5px 0px 5px;
    text-transform: capitalize;
    font-family: Candara;
    color: #151b46;
    letter-spacing: 1px;
    font-size: 14px;
}
.master-tab .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #000;
    background-color: #f7f7f7;
    width: max-content;
    padding: 0px 5px 0px 5px;
}

.master-tab .tab-content {
  padding: 5rem;
}
#mytabcol {
  padding: 5rem;
  background-color: #dcc5aa;
}

.master-tab .tab-content h2 {
    font-family:Honoria-Regular;
    font-size: 22px;
    color: #000;
    text-transform: capitalize;
}



.my-acc-edit label {
    display: inline-block;
    margin-bottom: .5rem;
    font-family: Candara;
    font-size: 14px;
    color: #151b46;
}
.my-acc-edit .form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 2px solid #dcc5aa;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin-bottom: 1.5em;
}
.my-acc-edit .btn-success {
    color: #151b46;
    background-color: #ede2d4;
    border-color: #ede2d4;
    font-size: 14px;
    text-transform: capitalize;
    font-family: Candara;
    margin-bottom: 0.6em;
}


.product-login-master .nav-pills .nav-link {
    border-radius: .25rem;
    background-color: #eeedcd;
    color: #000;
    font-family: Candara;
    font-size: 14px;
    margin-right: 8px;
}
.product-login-master .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: #ede2d4;
    color: #000;
    font-family: Candara;
    font-size: 14px;
}



.inner-one-tab-content .tab-content {
    padding: 0.5rem;
}
.inner-one-tab-content .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    padding: 5px 8px 5px 8px;
    background-color: #dcc5aa;
}
.inner-one-tab-content .nav-pills .nav-link {
    padding: 5px 8px 5px 8px;
    background-color: #f7f7f7;
}








.inner-one-tab-table {
   margin-bottom: 0.6em;
   margin-top: 0.6em;
}
.inner-one-tab-table #inner-one-row-1 {
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #f9f9fa;
}
.inner-one-tab-table #inner-one-row-2 {
    border: 1px solid #ccc;
    padding: 10px;
}
.inner-acc-product-or-img img {
    border: 1px solid #ccc;
}
.inner-acc-product-id {
    font-family:Honoria-Regular;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 15px;
    color: #151b46;
}
.inner-acc-product-date {
    color: #0000008a;
}
.inner-acc-product-or-btn .btn-success {
    color: #fff;
    background-color: #151b46;
    border-color: #151b46;
    font-size: 12.5px;
    text-transform: capitalize;
    font-family: Candara;
    margin-top: 0.6em;
}
.inner-acc-product-or-title {
    font-size: 15px;
    margin-bottom: 0.4em;
}
.inner-acc-product-or-sku-id {
    font-size: 15.5px;
    margin-bottom: 0.4em;
}
.inner-acc-product-or-size {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}
.inner-acc-product-or-pickedup {
    font-size: 13.4px;
    color: #0000008a;
}
.inner-acc-product-or-price {
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 14px;
    color: #000;
}
.inner-acc-product-or-status {
    color: #25a004;
    font-size: 12px;
    font-weight: 700;
}
.inner-acc-product-or-status-cancelled {
    color: #de0a32;
    font-size: 12px;
    font-weight: 700;
}







.credit-1-master-title {
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 25px;
    color: #151b46;
    margin-bottom: 0.2em;
}
.credit-1-master-para {
    margin-bottom: 1em;
    font-family: Candara;
    line-height: 22px;
    font-size: 13px;
    text-align: justify;
}
.credit-1-master-para i {
    font-size: 15px;
    color: #b96604;
}


.profile-details-master-head {
    font-size: 24px;
    color: #000;
    text-transform: capitalize;
    margin-bottom: 0.2em;
}
.profile-details {
    font-family: Candara;
    font-size: 13px;
    line-height: 30px;
    padding-bottom: 0.3em;
}
.profile-details span {
    color: #000;
    font-size: 14px;
}


.profile-details-edit {
    cursor: pointer;
    font-family:Honoria-Regular;
    color: #c18107;
    font-size: 16px;
    text-decoration: underline;
}
#inner-one-row-3 {
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #f9f9fa;
    margin-bottom: 0.3em;
}
#inner-one-row-4 {
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #f9f9fa;
}
.inner-or-detail-product-id {
    font-family:Honoria-Regular;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 15px;
    color: #151b46;
}
.inner-or-detail-product-date {
    color: #0000008a;
}
.inner-or-detail-product-or-img img {
    border: 1px solid #ccc;
}
.inner-or-detail-product-or-title {
    font-size: 15px;
    margin-bottom: 0.4em;
}
.inner-or-detail-product-or-sku-id {
    font-size: 15.5px;
    margin-bottom: 0.4em;
}
.inner-or-detail-product-or-size {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}
.inner-or-detail-product-or-pickedup {
    font-size: 13.4px;
    color: #0000008a;
}
.inner-or-detail-product-or-size span {
    font-family:Honoria-Regular;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 13px;
    color: #c18107;
}



.inner-or-review {
    padding-top: 1em;
    text-align: center;
    padding-bottom: 1em;
}
.inner-or-review a {
    font-size: 19px;
    padding-right: 5px;
    color: #a6a1a1d1;
}
.inner-or-review .btn-success {
    color: #fff;
    background-color: #ba8b55;
    border-color: #ba8b55;
    font-size: 14px;
    font-family: Candara;
}


.second-half-review {
    margin-bottom: 2em;
}
.review-text-1 {
    font-family:Honoria-Regular;
    letter-spacing: 1px;
    font-weight: normal;
    font-size: 15px;
    color: #151b46;
    text-transform: capitalize;
    border: 1px solid #ccc;
    border-bottom: 0px;
    padding: 10px;
    background-color: #f9f9fa;
}
.review-text-2 {
    font-family: Candara;
    font-weight: normal;
    font-size: 13px;
    color: #0000008a;
    text-transform: capitalize;
    border: 1px solid #ccc;
    padding: 10px;
}


.inner-or-return-and-options {
    text-align: center;
    padding-top: 1em;
    margin-top: 0.5em;
}
.inner-or-return-and-options i {
    font-size: 36px;
    color: #07046e;
}
.option-txt {
    font-family:Honoria-Regular;
    letter-spacing: 1px;
    font-weight: normal;
    font-size: 15px;
    color: #000;
    text-transform: capitalize;
    margin-bottom: 1em;
}
.option-txt a {
    color: #000;
}



.points-master table {
    width: 100%;
}
.points-master table tr th {
    padding: 10px;
    background-color: #f7f7f7;
    border: 1px solid #ccc;
}
.points-master table tr td {
    padding: 10px;
    border: 1px solid #ccc;
}
.points-title-one {
    font-family:Honoria-Regular;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 25px;
    color: #151b46;
}
.points-title-two {
    font-family: Candara;
    line-height: 22px;
    font-size: 12px;
    text-align: justify;
}
.points-title-three span {
    font-family:Honoria-Regular;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 16px;
    color: #151b46;
}
.points-title-three {
    font-family: Candara;
    line-height: 22px;
    font-size: 12px;
    text-align: justify;
    color: #312b2b;
    text-transform: capitalize;
}




.checkout-form label {
    display: inline-block;
    font-size: 16px;
    color: #000;
    font-weight: 600;
    line-height: 21px;
    margin-bottom: 0.5em;
    text-transform: capitalize;
}
.checkout-form .form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 2px solid #dfcdb0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    font-family: Candara;
    margin-bottom: 1.6em;
}
.checkout-button {
    text-align: right;
    padding-bottom: 1em;
}
.checkout-button .btn-primary {
    color: #000;
    background-color: #dfcdb0;
    border-color: #dfcdb0;
    font-size: 16px;
    text-transform: uppercase;
    font-family: Candara;
    border-radius: 0px;
    font-weight: 500;
    padding: 10px 15px 10px 15px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-right: 10px;
}
.checkout-pro-name {
    color: #bf1a3a;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.8em;
}
.checkout-coupon .form-control {
    display: inline;
    width: 68%;
    padding: 6px 6px 6px 6px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 2px solid #dfcdb0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    font-family: Candara;
    margin-bottom: 1.6em;
}
.checkout-coupon .btn-primary {
    padding: 6px 14px 6px 14px;
    font-family: Candara;
    font-size: 15px;
    text-transform: capitalize;
    background-color: #bf1a3a;
    border-color: #bf1a3a;
}
.checkout-sub-total {
    font-size: 15px;
    color: #000;
    line-height: 21px;
    margin-bottom: 0.5em;
    text-transform: capitalize;
}
.checkout-sub-total span {
    float: right;
}



.checkout-master-section {
    background-image: url(../img/checkout-pattern-bg.png);
    background-color: #fff;
    background-repeat: repeat;
    background-size: contain;
}
#checkout-first-coloumn-master {
    padding: 6em;
}
#checkout-second-coloumn-master {
    background-image: url(../img/checkout-second-coloumn-master-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    padding: 6em;
}




.login-box-1 table tr th {
    vertical-align: top;
    padding: 5px 0px 0px 0px;
}
.login-box-1 table tr td {
    padding: 0px 0px 0px 10px;
}
.login-head-1 {
    font-family: Honoria-Regular;
    font-size: 1.8em;
    color: #000;
    margin-top: 0.5em;
    margin-bottom: 1em;
}
.login-benifit-1 {
    font-family: Candara;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 29px;
}
.login-benifit-2 {
    font-family: Candara;
    color: #000000a3;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 1.3em;
    line-height: 23px;
}
.login-title {
    font-family: Candara;
    font-size: 20px;
    text-decoration: underline;
    line-height: 30px;
    margin-bottom: 0.8em;
    color: #000;
}
.login-master-form label {
    display: block;
    font-family: Candara;
    color: #000;
    font-size: 17px;
    font-weight: 500;
    line-height: 29px;
    margin-bottom: 0.5em;
}
.login-master-form .btn-danger {
    color: #fff;
    background-color: #ababab;
    border-color: #ababab;
    padding: 7px 8px 4.5px 8px;
    border-radius: 0px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
}
.login-master-form .form-control {
    display: block;
    width: 100%;
    padding: 8px 8px 8px 8px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #8c8989;
    background-color: #fff;
    background-clip: padding-box;
    border: 2px solid #ababab;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 7px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    font-family: Candara;
}
.login-master-form p {
    margin: 10px 0px 10px 0px;
    font-family: Candara;
    font-size: 16px;
    letter-spacing: 2px;
    text-align: center;
    color: #666363;
}
.login-master-form .btn-success {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
    font-family: Candara;
    width: 100%;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 0.8em;
}
.login-master-form h6 {
    text-align: center;
}
.login-master-form h6 a {
    text-align: center;
    color: #000;
}
.login-top-logo img {
    max-width: 100%;
    height: auto;
    width: 312px;
    padding: 10px 10px 10px 0px;
}



.sign-up-master-section {
    background-image: url(../img/checkout-pattern-bg.png);
    background-color: #fff;
    background-repeat: repeat;
    background-size: contain;
}
.sign-up-account {
    font-family: Honoria-Regular;
    font-size: 26px;
    color: #000;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    text-align: center;
}
.sign-up-master-form label {
    display: inline-block;
    font-size: 16px;
    color: #000;
    font-weight: 600;
    line-height: 21px;
    margin-bottom: 0.5em;
    margin-right: 0.5em;
    text-transform: capitalize;
}
.sign-up-master-form .form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 2px solid #dfcdb0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    font-family: Candara;
    margin-bottom: 1.6em;
}
.sign-up-master-form .btn-success {
    color: #000;
    background-color: #dfcdb0;
    border-color: #dfcdb0;
    font-size: 16px;
    text-transform: uppercase;
    font-family: Candara;
    border-radius: 0px;
    font-weight: 500;
    padding: 10px 15px 10px 15px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-right: 10px;
}













/* Style the tab */
.my-acc-tab-box-1 .tab {
    float: left;
    border: none;
    width: 100%;
    height: auto;
    padding: 0em;
}
.tab-master-btn {
    margin-bottom: 1em;
    margin-top: 1em;
}
.tab-master-btn span {
    font-family: Honoria-Regular;
    font-size: 22px;
    color: #000;
}

/* Style the buttons inside the tab */
.my-acc-tab-box-1 .tab button {
    display: block;
    background-color: #dcc5aa;
    color: #000;
    padding: 0px 5px 0px 5px;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
    font-family: Candara;
    text-align: center;
    margin-top: 0px;
}

/* Change background color of buttons on hover */
.my-acc-tab-box-1 .tab button:hover {
  background-color: #ddd;
}

/* Create an active/current "tab button" class */
.my-acc-tab-box-1 .tab button.active {
    background-color: #bf1a3a;
    color: #fff;
}

/* Style the tab content */
.my-acc-tab-box-2 .tabcontent {
    float: left;
    padding: 0px 0px;
    border: none;
    width: 100%;
    height: auto;
}
.my-acc-tab-box-2 .tabcontent h2 {
    font-family: Honoria-Regular;
    font-size: 22px;
    color: #000;
    text-transform: capitalize;
}


.inner-one-tab-table {
   margin-bottom: 0.6em;
   margin-top: 0.6em;
}
.inner-one-tab-table #inner-one-row-1 {
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #f9f9fa;
}
.inner-one-tab-table #inner-one-row-2 {
    border: 1px solid #ccc;
    padding: 10px;
}
.inner-acc-product-or-img img {
    border: 1px solid #ccc;
}
.inner-acc-product-id {
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 15px;
    color: #151b46;
}
.inner-acc-product-date {
    color: #0000008a;
}
.inner-acc-product-or-btn .btn-success {
    color: #fff;
    background-color: #151b46;
    border-color: #151b46;
    font-size: 12.5px;
    text-transform: capitalize;
    margin-top: 0.6em;
}
.inner-acc-product-or-title {
    font-size: 15px;
    margin-bottom: 0.4em;
}
.inner-acc-product-or-sku-id {
    font-size: 15.5px;
    margin-bottom: 0.4em;
}
.inner-acc-product-or-size {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}
.inner-acc-product-or-pickedup {
    font-size: 13.4px;
    color: #0000008a;
}
.inner-acc-product-or-price {
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 14px;
    color: #000;
}
.inner-acc-product-or-status {
    color: #25a004;
    font-size: 12px;
    font-weight: 700;
}
.inner-acc-product-or-status-cancelled {
    color: #de0a32;
    font-size: 12px;
    font-weight: 700;
}



.smalltablinks {
    padding: 5px 8px 5px 8px;
    background-color: #dddddd;
    text-transform: capitalize;
    color: #151b46;
    letter-spacing: 1px;
    font-size: 15px;
    font-family: Candara;
    border: none;
}
.smalltab button.active {
    background-color: #bf1a3a;
    color: #fff;
}
.smalleditbtn {
    background-color: #eb1b69;
    color: #fff;
    border: none;
    font-size: 14px;
    padding: 2px 10px 2px 10px;
}

#left-col-one {
    padding: 5rem;
    background-color: #dcc5aa;
}
#right-col-one {
    padding: 5rem;
}
.varnaa-my-account-master {
    padding: 0px 0;
}




/* Style the tab */
.vfilter-carousel-tab-maser .tab {  
  border: 0px solid #ccc;
  background-color: transparent;
  text-align:center;
  margin-bottom:1.6em;
}

/* Style the buttons inside the tab */
.vfilter-carousel-tab-maser .tab .btn-primary {
    display: inline-block;
    padding: 9px 30px;
    cursor: pointer;
    position: relative;
    font-family: Candara;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    border-radius: 13px;
    margin: 0px 0px 0px 0px;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
}

/* Change background color of buttons on hover */
.vfilter-carousel-tab-maser .tab button:hover {
  background-color: #ddd;
}

/* Create an active/current "tab button" class */
.vfilter-carousel-tab-maser .tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.vfilter-carousel-tab-maser .tabcontent {
  padding: 0px 12px;
  border: none;
  text-align:center;
}
.vfilter-carousel-tab-maser .tab {
    position: relative;
}
.vfilter-carousel-tab-maser .tab:before {
    content: "";
    display: block;
    width: 29%;
    height: 2px;
    background: #fff;
    left: 0;
    top: 21px;
    position: absolute;
}
.vfilter-carousel-tab-maser .tab:after {
    content: "";
    display: block;
    width: 24%;
    height: 2px;
    background: #fff;
    right: 0;
    top: 21px;
    position: absolute;
}
.vfilter-contents p {    
  font-size: 15px;
  font-family: Candara;
  color: #000;
  margin-top: 10px;
  font-weight: 500;
}
.vfilter-contents h5 {
    font-size: 17px;
    color: #000;
    font-family: Candara;
    color: #000;
}
.vfilter-contents h5 span {
    display: inline-block;
    color: #000;
    float: right;
}
.vfilter-contents h5 span a {
    color: #000;
    padding-left: 10px;
    display: inline-block;
}
.vfilter-contents .card-body {
    padding: 1rem 1rem;
    text-align: initial;
}
.vfilter-contents .card {
    cursor: pointer;
    margin-bottom: 30px;
    background-color: #fff;
    padding: 15px;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
}
.vfilter-carousel-tab-maser .btn-success {
    border: none;
    background-color: transparent;
    margin-right: -17px;
    margin-left: -17px;
}
.vfilter-carousel-tab-maser .btn-primary {
    z-index: 9999;
}
.vfilter-carousel-tab-maser .btn-primary:hover {
    color: #fff;
    background-color: #f3a321;
    border-color: #fff;
}
.vfilter-carousel-tab-maser .btn-check:active+.btn-primary, .btn-check:checked+.btn-primary, .btn-primary.active, .btn-primary:active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #f3a321;
    border-color: #fff;
}

@media only screen and (max-width: 1034px) {


.vfilter-carousel-tab-maser .btn-success {
  display: none!important;
}
.vfilter-carousel-tab-maser .btn-primary {
  margin: 2px;
}


}







.about-us-section-master {
    background: linear-gradient( rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.70) ), url(../img/about/1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.about-content-master {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 1.5em;
    border-radius: 10px;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
    margin-bottom: 1.8em;
}
.about-content-master h1 {
    font-family: Honoria-Regular;
    font-weight: 500;
    font-size: 31px;
    margin-bottom: 0.5em;
}
.about-content-master p {
    margin-top: 0;
    font-family: Candara;
    font-size: 15px;
    color: #000;
    margin-bottom: 1.5em;
}
.about-content-master h3 {
    font-family: Honoria-Regular;
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 0.5em;
    margin-top: 1.6em;
    color: #000;
    letter-spacing: 1px;
}
.about-content-master ul li {
    margin-top: 0;
    font-family: Candara;
    font-size: 15px;
    color: #000;
    margin-bottom: 0.6em;
    margin-top: 0.6em;
}
.about-content-icon-box i {
    font-size: 46px;
    color: #fff;
}
.about-content-icon-box {
    background-color: rgb(235, 27, 105);
    padding: 1.5em;
    text-align: center;
    border-radius: 15px;
}
.about-content-icon-box h4 {
    font-family: Candara;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    margin-top: 0.4em;
}
.about-content-icon-box p {
    font-family: Candara;
    font-size: 14px;
    color: #ffffffcf;
    margin-bottom: 1.5em;
}
.about-vision-mission-box {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 1.5em;
    border-radius: 10px;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
    margin-bottom: 1.8em;
    text-align: center;
}
.about-vision-mission-box i {
    font-size: 46px;
    color: #ec1a69;
}
.about-vision-mission-box p {
    margin-top: 0;
    font-family: Candara;
    font-size: 15px;
    color: #000;
    margin-bottom: 1.5em;
}