/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #000;
 /* background-image: url(../../assets/img/1366.png);
  opacity: 0.5;*/
}

html,body{
  overflow-x: hidden;
  }

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
}

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

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #106eea;
  border-top-color: #e2eefd;
  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;
  background: #f4c55c;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.back-to-top:hover i{
  color: #000;
}

.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 {
  background: #fff;
  height: 100px;
  font-size: 14px;
  transition: all 0.5s;
  color: #000;
  padding: 0;
}

#topbar .contact-info i {
  font-style: normal;
  color: #000;
}

#topbar .contact-info i a, #topbar .contact-info i span {
  padding-left: 5px;
  color: #000;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

#topbar .social-links a {
  color:#000;
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

#topbar .social-links a:hover {
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fcfaec;
  transition: all 0.5s;
  z-index: 997;
  /*height: 86px;*/
  box-shadow: 0px 2px 12px rgb(0 0 0 / 6%);


}

#header.fixed-top {
  /*height: 100px;*/
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #803e20;
}

#header .logo img {
  max-height: 60px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.heado .navbar {
    padding: 0;
    z-index: 10;
}

.heado .navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.heado .navbar li {
  position: relative;
}

.heado .navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.heado .navbar a {
  display: flex;
  align-items: center;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.heado .navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.heado .navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #874323;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.heado .navbar a:hover:before, .heado .navbar li:hover > a:before, .heado .navbar .active:before {
  visibility: visible;
  width: 100%;
}

.heado .navbar a:hover, .heado .navbar .active, .heado .navbar li:hover > a {
  color: #874323;
}

.heado .navbar .dropdown ul {
  display: block;
  position: absolute;
  /*left: 28px;*/
  /*left: -100px;*/
  left: -250px;
  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;
}

.heado .navbar .dropdown ul li {
  /*min-width: 200px;*/
}
.dropdown-item {
  padding: 5px 10px;
}

.heado .navbar .dropdown ul a {
  padding: 1px;
  font-weight: 400;
}

.heado .navbar .dropdown ul a i {
  font-size: 12px;
}

.heado .navbar .dropdown ul a:hover, .heado .navbar .dropdown ul .active:hover, .heado .navbar .dropdown ul li:hover > a {
  color: #106eea;
}

.heado .navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
  width: max-content;
  max-width: 600px;
}
.heado .navbar .dropdown .dropdown ul {
  top: 0;
  /*left: calc(100% - 30px);*/
  left: -120%;
  visibility: hidden;
}
@media (max-width: 767px){
  .heado .navbar .dropdown .dropdown ul {
    visibility: visible;
  }
}

.heado .navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  /*left: 100%;*/
  left: -100%;
  visibility: visible;
}

li.custom_drop ul {
  width: 194px!important;
  min-width: auto!important;
}

/*@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -180%;
  }
  .navbar .dropdown .dropdown:hover > ul {
   left: -190px;
  }
}*/

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

.mobile-nav-toggle.bi-x {
  color: #fff;
}


@media (max-width: 1199px) {
  .mobile-nav-toggle {
    display: block;
  }
  .heado .navbar ul {
    display: none;
  }
}
.offcanvas ul {
  display: block!important;
}

.heado .navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.heado .navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.heado .navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.heado .navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.heado .navbar-mobile > ul > li {
  padding: 0;
}

.heado .navbar-mobile a:hover:before, .heado .navbar-mobile li:hover > a:before, .heado .navbar-mobile .active:before {
  visibility: hidden;
}

.heado .navbar-mobile a:hover, .heado .navbar-mobile .active, .heado .navbar-mobile li:hover > a {
  color: #106eea;
}

.heado .navbar-mobile .getstarted {
  margin: 15px;
}

.heado .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);
}

.heado .navbar-mobile .dropdown ul li {
  min-width: auto;
}

.heado .navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.heado .navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.heado .navbar-mobile .dropdown ul a:hover, .heado .navbar-mobile .dropdown ul .active:hover, .heado .navbar-mobile .dropdown ul li:hover > a {
  color: #106eea;
}

.heado .navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  /*width: 100%;
  height: 50vh;
  background: url("../img/banner1.jpg") top left;
  background-size: cover;*/
  position: relative;
}

#hero:before {
  content: "";
  /*background: rgba(255, 255, 255, 0.6);*/
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
}

#hero h1 {
  margin: 0;
  font-size: 70px;
  font-weight: 700;
  line-height: 56px;
  color: #222222;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #106eea;
}

#hero h2 {
    color: #874323;
    margin: 10px 0 30px 0;
    font-size: 30px;
    font-weight: 400;
}

#hero .btn-get-started {
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 9px 29px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #f4c55c;
    z-index: 100;
}

#hero .btn-get-started:hover {
  background: #2b2827;
}

#hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  font-weight: 600;
  display: flex;
  align-items: center;
}

#hero .btn-watch-video i {
  color: #106eea;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

#hero .btn-watch-video:hover {
  color: #106eea;
}

#hero .btn-watch-video:hover i {
  color: #3b8af2;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .btn-get-started, #hero .btn-watch-video {
    font-size: 13px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 55px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #fbfbfb;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: #106eea;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
    margin: 0px 0 0 0;
    font-size: 28px;
    font-weight: 600;
}
p.card-text {
    color: #969696;
    font-size: 15px;
}
.section-title h3 span {
  color: #106eea;
}

.section-title p {
    margin: 15px auto 0 auto;
    font-weight: 400;
    font-size: 18px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.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: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# MMsec
--------------------------------------------------------------*/
.MMsec .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.MMsec .content ul {
  list-style: none;
  padding: 0;
}

.MMsec .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.MMsec .content ul li:first-child {
  margin-top: 35px;
}

.MMsec .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #106eea;
  border-radius: 50px;
}

.MMsec .content ul h5 {
  font-size: 18px;
  color: #555555;
}

.MMsec .content ul p {
  font-size: 15px;
}

.MMsec .content p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/banner3.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  height: 50vh;
  position: relative;
}


.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  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 auto 15px auto;
  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #106eea;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
    padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #106eea;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
}

.contact .info-box h3 {
    font-size: 17px;
    color: #000;
    font-weight: 600;
    margin: 10px 0 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .email-form {
 /* box-shadow: 0 0 30px rgba(214, 215, 216, 75%);
  padding: 30px;
  border-radius: 20px;*/
}
.cntform h3 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}
.contact .email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .email-form .error-message br + br {
  margin-top: 25px;
}

.contact .email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .email-form .form-group {
  margin-bottom: 20px;
}

.contact .email-form input, .contact .email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .email-form input:focus, .contact .email-form textarea:focus {
  border-color: #106eea;
}

.contact .email-form input {
  padding: 10px 15px;
}

.contact .email-form textarea {
  padding: 12px 15px;
}

.contact .email-form button[type="submit"] {
  transition: 0.4s;
}
.cntform {
    width: 65%;
    margin: 90px auto 25px;
    box-shadow: 0 0 30px rgb(214 215 216 / 75%);
    background-color: #fff;
    padding: 50px;
    border-radius: 20px;
}
.form-add {
  text-align: center;
  box-shadow: 0 0 30px rgb(214 215 216 / 75%);
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  min-height: 180px;
  display: grid;
  flex-wrap: wrap;
  justify-items: center;
  align-content: center;
}
.form-add h3 {
    font-size: 21px;
    margin: 15px 0;
}
/*.contact .email-form button[type="submit"]:hover {
  background: #3b8af2;
}*/

@-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 {
  background: #29100d;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
  background: #29100d;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 15px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #f4c55c;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #0d58ba;
}

#footer .footer-top {
    padding: 15px 0 0 0;
    background: #29100d;
}

#footer .footer-top h4 {
  font-size: 16px;
  position: relative;
  padding-bottom: 12px;
  color: #9c9594;
}

#footer .footer-top .footer-links {
  margin-bottom: 15px;
}

#footer .footer-top .footer-links a {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-right: 5px;
    color: #9c9594;

}
img.footlogo {
    width: 160px;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #106eea;
  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: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #106eea;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: transparent;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: transparent;
  color: #f5fe30;
  text-decoration: none;
}

#footer .copyright {
  text-align: left;
  float: left;
  font-size: 14px;
    color: #d4cdb3;
    font-family: 'Poppins';
    font-weight: 500;
}

#footer .credits {
    float: right;
    text-align: center;
    font-size: 14px;
    color: #ae8e67;
    font-family: 'Roboto';
    font-weight: 500;
}
.footrt {
    /*padding-left: 100px;*/
    padding-top: 12px;
}
#footer .credits a{
  color: #ae8e67;
}
#footer .footer-top .footer-links ul a{
  padding-right:25px;
}

@media (max-width: 768px) {
  #footer .copyright, #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}
.section-bg2{
  background-color: #fcfaec;
}
.search-index {
    z-index: 11;
    width: 415px;
}
.top-search-control {
    display: block;
    width: 100%;
    padding: .7rem .9em;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #969696;
    background-color: #f8f8f8;
    background-clip: padding-box;
    font-family: 'Poppins';
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 50px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.top-search-control input {
    border: none;
    background: none;
    text-decoration: none;
    outline: none;
    width: 90%;
}
.call-btn-control {
    display: block;
    width: 250px;
    padding: 13px;
    font-size: 13px;
    font-style: normal!important;
    font-weight: 400;
    line-height: 18px;
    color: #fff;
    background-color: #4a3134;
    background-clip: padding-box;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 50px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin: 0 30px;
    transition: transform .2s;
    cursor: pointer;
}
/*.call-btn-control:hover {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}*/
.top-btn {
    margin-right: 5px;
}
.top-btn-control{
    display: block;
    white-space: nowrap;
    padding: .7rem .9em;
    font-size: 15px;
    font-style: normal!important;
    font-weight: 400;
    line-height: 1.5;
    color: #4a3134;
    box-shadow: 0px 0px 33px -6px rgba(0,0,0,15%);
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 50px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.top-btn-control:hover{
    background-color: #f4c55c;
}
.exp-flav .card {
    border: none;
    width: 18rem;
    border-radius: 50px;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 5%);
    transition: transform .2s;
        padding: 0 0 25px;
            margin-bottom: 30px;
}
#byflavour h5.card-title {
    margin-bottom: 0px;
}
#byflavour p.card-text {
    font-size: 17px;
    color: #959493;
}
.exp-flav .card:hover {
    box-shadow: 0px 0px 40px 5px rgb(0 0 0 / 20%);
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}
.exp-flav .card-img-top{
  border-radius: 50px;
}
.exp-flav-cont .col-md-3{
  padding: 10px;
}
.price h5 {
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -1px;
        margin: 0;
}
.price-icon svg {
    width: 38px!important;
}
.price-icon {
    background-color: #f4c55c;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    transition: transform .5s;
    text-align: center;
    cursor: pointer;
}
.price-icon span {
    color: #000;
    font-size: 27px;
    font-weight: 600;
    text-align: center;
    margin: 0 13px;
}
.price-icon:hover{
 transform: rotate(90deg);
}
.pop-cake .card{
  width: 18rem;
  border: none;
  border-radius: 20px;
  /*box-shadow: 0px 0px 33px -6px rgba(0,0,0,8%);*/
}
.pop-cake-img {
  width: 100%;
  /*height: 300px;*/
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pop-cake {
    box-shadow: 0px 2px 12px rgb(0 0 0 / 6%);
}
.pop-cake .card-img-top {
  z-index: 0;
  max-width: 100%;
  overflow: unset;
  border-radius: 10px 10px 0 0;
}
.pop-cake .card:hover {
    box-shadow: 0px 0px 33px -6px rgba(0,0,0,0.26);
}
.pho-cake .card{
  width: 18rem;
  border: none;
  border-radius: 20px;
  /*box-shadow: 0px 0px 33px -6px rgba(0,0,0,8%);*/
}
.pho-cake .card-img-top {
    border-radius: 20px 20px 0 0;
}
.pho-cake .card:hover {
    box-shadow: 0px 0px 33px -6px rgba(0,0,0,0.26);
}
.brdrrt{
      border-right: 2px solid #f5f5f5;
}
.cardmain p.card-text {
    margin-bottom: 10px;
}
.cardmain {
    padding: 15px 20px;
}
.cardmain .card-body {
    padding: 0;
}
.social-links {
    font-size: 30px;
}
.footer-links p {
    color: #9c9594;
}
.chocolate {
    position: absolute !important;
    z-index: 9;
    top: 30%;
    left: 70px;
}
#carouselExampleDark .carousel-indicators {
    margin-right: 5%;
    margin-bottom: 2rem;
    margin-left: 5%;
}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 15px;
    height: 12px;
    border-radius: 50px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-clip: padding-box;
    border: 0;
    border-top: none;
    border-bottom: none;
    opacity: .2;
    transition: opacity .6s ease;
}
.carousel-indicators .active{
  opacity: 1;
  width: 35px;
  background-color: #805644!important;
}
.btn.btn-footer {
    color: #9c9594;
    text-align: left;
    border: none;
    background-color: none;
    background: none;
    padding: 0;
    padding-right: 23px;
    font-size: 16px;
    font-family: 'Poppins';
}
.footer-links h3 {
    text-transform: uppercase;
    font-family: 'Roboto';
    font-size: 30px;
}
.footer-links h3 span{
    font-size: 21px;
    font-weight: 300;
}
.social-links svg {
    width: 20px!important;
    margin-right: 15px;
}
.btn.btn-view {
    font-family: "Poppins", sans-serif;
    /* text-transform: uppercase; */
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0;
    display: inline-block;
    padding: 8px 15px;
    border-radius: 50px;
    transition: 0.5s;
    color: #000;
    background: #f4c55c;
    z-index: 100;
    width: 190px;
}
.btn.btn-view:hover {
  background-color: #2b2827;
  color: #fff
}
.float-logo {
    position: absolute;
    top: -70px;
    z-index: 10;
    left: -76px;
}
.float-logo img {
    width: 530px;
}
h5.card-title {
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 10px;
    color: #000;
    min-height: 50px;
}
.list-content {
    padding: 0;
    margin: 0;
}
.list-content img{
    width: 100%;
}
.list-content h2 {
    position: absolute;
    font-size: 65px;
    color: #1C114D;
    font-weight: 700;
    padding-left: 50px;
    top: 50%;
    transform:translateY(-50%);
}
  

.form-add svg {
    font-size: 35px;
}
.ab-social-links {
    margin: 0 15px 0 15px;
    font-size: 17px;
}
.ab-social-links svg{
  margin:0 10px 0 10px;
}
.listsec .card {
    border: none;
    width: 100%;
    border-radius: 50px;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 5%);
    transition: transform .2s;
}
.listsec .card:hover {
    box-shadow: 0px 0px 40px 5px rgb(0 0 0 / 20%);
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}
.listsec h5{
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 0;
}
.product{
  padding: 10px 0 10px 0;
  /*background-color: #fcfaec;*/
}
.product .card {
    border: none;
    border-radius: 10px;
}
.btn-outline-primary{
  color: #444444;
  border-color: #f4c55c;
}
.btn-outline-primary.active{
  background-color:#f4c55c;
  border-color: #f4c55c;
}
.btn-outline-primary:hover{
  background-color:#f4c55c;
  border-color: #f4c55c;
}
figure img{
  width: 150px;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
  background-color: #f4c55c;
}
.tab-pane {
    border: 1px solid lightgray;
    border-radius: 3px;
    padding: 10px;
}
.tab-pane .card{
    border: none;
}
@media (max-width: 1342px) and (min-width: 0px){
  .float-logo{
    display: none;
  }
  .float-logo img{
    display: none;
  }
  .top-btn-control{
    width: 83px;
  }
  .top-btn-control span{
    display: none;
  }
}
.list-group-item:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.itemside p {
    margin-top: 0;
    margin-bottom: 0;
}
.about-content {
  /*background: url("../img/banner3.jpg") no-repeat;*/
  background-color: #fff;
  background-position: center center;
  background-size: cover;
  height: 70vh;
  position: relative;
}
.MMsec .bottom-wave {
    display: block;
    left: 0;
    right: 0;
    bottom: -25px;
    background-size: cover;
    fill: #000;
    background-repeat: no-repeat;
    background-position: center top;
    z-index: 4;
}
.direct{
    background-color: #fcfaec;
}
.bottom-wave img {
    width: 100%;
}
.MMsec .bottom-wave {
    display: block;
}
.about-content .section-title h3{
  margin: 0px;
  padding-top: 50px;
}
.about-content .section-title p{
  margin: 15px auto 0 auto;
  font-weight: 600;
  width: 500px;
}
.cake-float img{
  width: 350px;
}
.cake-float img{
  font-size: 18px;
  color: #cccccc;
  text-decoration: none;
  margin: 0 10px;
  transition: all 0.4s ease-in-out;
  &:hover {
    color: #ffffff;
  }
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
.cake-float {
  overflow: hidden;
  transform: translatey(0px);
  animation: float 6s ease-in-out infinite;
  img { width: 100%; height: auto; }
}
@media (max-width: 1630px){
  .float-logo{
    left: -170px;
    
  }
}
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.qty {
    width: 40px;
    height: 30px;
    text-align: center;
}
input.qtyplus { width:25px; height:30px;}
input.qtyminus { width:25px; height:30px;}

svg.tog {
    display: none;
}
@media (max-width: 1199px) {
  svg.tog {
    display: block;
  }
  .top-btn{
    display: none;
  }
  #header .logo{
    font-size: 28px;
  }
  #header .logo img {
    max-height: 53px;
  }
}
.topbtnbox {
    display: inline-block;
    padding: 5px;
    margin: 0 25px;
    cursor: pointer;
    
}
.hcartsec{
  position: relative;
}
.hcartsec span.cartcount {
    background-color: #f4c55c;
    width: 35px;
    height: 35px;
    display: inline-block;
    line-height: 35px;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: 50px;
}
.topbtnbox:hover {
    background-color:#fcfaec;
    border-radius: 10px; 
}
.topbtnbox span {
    font-family: 'Poppins';
    white-space: nowrap;
    color: #000;
    font-weight: 500;
}
.topbtnbox span a{
    color: #000;
    font-weight: 500;
}
.header_icon img {
    width: 24px;
    margin-bottom: 5px;
    height: 24px;
}
.mr0{
  margin-right: 0;
}
.mainhead {
    float: right;
    display: inline-block;
    width: 100%;
    padding: 0 80px;
}
.head_menu {
    padding: 0 80px;
    width: 100%;
}

section#aboutus p {
    color: #969696;
}
.login {
    padding: 15px 0;
}
.login .login-left {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,.5) 100%),
    url('../img/login-bg.jpg');
    height: 80vh;
    background-size: cover;
  /*position: absolute;
  background: rgb(255,255,255);
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
*/}
.login .login-left img{
  background-size: cover;
  width: 100%;
}
@media(max-width:991px){
    .login-left{
        display: none;
    }
}
.login .login-head h1{
  position: absolute;
  bottom: 25px;
  left: 50px;
  font-size: 35px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}
.login-right {
    font-size: 15px;
    color: #929292;
}
.login-right h1 {
    font-size: 23px;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
}
.login-right h2 {
    font-size: 15px;
    font-weight: 100;
    margin: 15px 0;
    line-height: normal;
    color: #929292;
}
.login-right h3 {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin: 0 10px;
    text-transform: uppercase;
}
.login-right h3:hover {
    cursor: pointer;
    color: #000;
}
.login-right a:hover {
    cursor: pointer;
    color: #000!important;
}
.login-right .log-input {
    margin: 20px 0;
    padding: 5px 0;
    background-color: #f5f5f5;
    border-radius: 8px;
}
.login-right .log-input input{
    background-color: transparent;
    border-radius: 8px;
    border: none;
    outline: none;
}
.login-right .btn-black {
    background-color: #000;
    border-color: #000;
    border-radius: 8px;
    padding: 10px;
    margin: 20px 0;;
    width: 100%;
}
.login-right .btn-black:hover{
    opacity: .9;
}
.login-right svg {
    margin: 13px 15px;
    font-size: 20px;
    width: 10px;
    color: #000;
}
.login-right input[type=checkbox] {
     position: relative;
     cursor: pointer;
     margin-right: 10px;
}
.login-right input[type=checkbox]:before {
     content: "";
     display: block;
     position: absolute;
     width: 20px;
     height: 20px;
     top: -3px;
     left: 0;
     background-color:#e9e9e9;
     border-radius: 5px;
}
.login-right input[type=checkbox]:checked:before {
     content: "";
     display: block;
     position: absolute;
     width: 20px;
     height: 20px;
     top: -3px;
     left: 0;
     background-color:#1E80EF;
}
.login-right input[type=checkbox]:checked:after {
    content: "";
    display: table-cell;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 1px;
    left: 7px;
}








.register {
    padding: 15px 0;
}
.register .register-left {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,.5) 100%),
    url('../img/login-bg.jpg');
    height: 80vh;
    background-size: cover;
  /*position: absolute;
  background: rgb(255,255,255);
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
*/}
.register .register-left img{
  background-size: cover;
  width: 100%;
}
.register p {
    font-size: 13px;
    margin-bottom: 6px;
    color: #444;
}
.register .register-head h1{
  position: absolute;
  bottom: 25px;
  left: 50px;
  font-size: 35px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}
.register-right {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    height: 80vh;
}
.register-right h1 {
    font-size: 24px;
    font-weight: 800;
    color: #000;
}
.register-right h2 {
    font-size: 15px;
    font-weight: 100;
    margin: 15px 0;
    line-height: normal;
    color: #929292;
}
.register-right h3 {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin: 0 10px;
    text-transform: uppercase;
}
.register-right .reg-input {
    margin: 8px 0;
    padding: 5px 0;
    background-color: #f5f5f5;
    border-radius: 8px;
}
.register-right .reg-input input{
    background-color: transparent;
    border-radius: 8px;
    border: none;
    outline: none;
}
.register-right .btn-black {
    background-color: #000;
    border-color: #000;
    border-radius: 8px;
    padding: 10px;
    margin: 20px 0;;
    width: 100%;
}
.register-right .btn-black:hover{
    opacity: .9;
}
.register-right svg {
    margin: 13px 15px;
    font-size: 20px;
    width: 10px;
    color: #000;
}
.register-right input[type=checkbox] {
     position: relative;
     cursor: pointer;
     margin-right: 10px;
}
.register-right input[type=checkbox]:before {
     content: "";
     display: block;
     position: absolute;
     width: 20px;
     height: 20px;
     top: -3px;
     left: 0;
     background-color:#e9e9e9;
     border-radius: 5px;
}
.register-right input[type=checkbox]:checked:before {
     content: "";
     display: block;
     position: absolute;
     width: 20px;
     height: 20px;
     top: -3px;
     left: 0;
     background-color:#1E80EF;
}
.register-right input[type=checkbox]:checked:after {
    content: "";
    display: table-cell;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 1px;
    left: 7px;
}
.product input{
  width: 350px;
}
.search-slt {
    display: block;
    line-height: 1.5;
    color: #55595c;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
}
.btn-slt {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 0 5px 5px 0;
    background-color: #f4c55c;
    border-color: #f4c55c;
}
.btn-slt:hover {
    background-color: #4a3134;
    border-color: #4a3134;
}
.page-item .page-link {
    color: #f4c55c;
}
.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #f4c55c;
    border-color: #f4c55c;
}

.bag-left img{
  width: 70%;
  border-radius: 10px;
}
.bag-right .btn-black {
    background-color: #000;
    border-color: #000;
    border-radius: 8px;
    padding: 10px;
    margin-left: 10px;
    width: 100%;
}
.bag-right .price {
    font-size: 34px;
}
.bag-right h2 {
    font-size: 18px;
}
.product-quality ul{
  display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}
.value-button-r, .value-button-l {
    text-align: center;
    border: none;
    border: 1px solid #ddd;
    margin: 0px;
    width: 40px;
    height: 46px;
    padding: 7px;
    background: #e3e3e3;
    color: #000;
    font-size: 20px;
    font-weight: 800;
}
.value-button-r:hover, .value-button-l:hover {
  cursor: pointer;
}
.value-button-r{
  border-radius: 0 8px 8px 0;
}
.value-button-l{
  border-radius: 8px 0 0 8px;
}

.addtocart input {
  text-align: center;
  border: none;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
  margin: 0px;
  width: 55px;
  height: 46px;
}
.bag select {
    word-wrap: normal;
    padding: 5px;
    border-radius: 8px;
}

.addtocart input[type=number]::-webkit-inner-spin-button,
.addtocart input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.border-top {
    border-top: 1px solid #dee2e6!important;
    text-align: right;
}
.btn-black {
    background-color: #000;
    border-color: #000;
}
.btn-munch{
  background-color: #f4c55c;
  border-color: #f4c55c;
}
#more{
  display: none;
  transition: all 0.4s;
}


.mainhead .dropbtn {
  color: white;
  font-size: 16px;
  border: none;
}
.mainhead .dropdown {
  position: relative;
  display: inline-block;
}
.mainhead .dropdown-content {
  display: none;
  position: fixed;
  background-color: #fff;
  min-width: 160px;
  right: 78px;
  border-radius: 10px;
  margin-top: 2px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 99;
}
.mainhead .dropdown-content a {
  color: #000;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.mainhead .dropdown-content a:hover {
  background-color: #FCFAEC;
  border-radius: 10px;
}
.mainhead .dropdown:hover .dropdown-content {
  display: block;
}

.alert-dismissible .close {
  position: absolute;
  top: 5px;
  right: 0;
  padding: .75rem 1.25rem;
  color: inherit;
}
.alert-dismissible p {
  margin-bottom: 0!important;
}
button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.g-recaptcha {
  text-align: -webkit-center;
}
.btn.btn-search {
    padding: 0;
}
.btn.btn-search:hover svg{
    color: #000!important;
}

@media(max-width:570px){
    .head_menu{
        padding: 0 20px;
    }
    #header .logo {
        font-size: 22px;
    }
    /*#header .logo img {
        max-height: 40px;
    }*/
}
@media(max-width:1199px){
    .list-content h2 {
        font-size: 65px;
        /*top: 350px;*/
    }
    .footrt {
        padding-top: 12px;
    }
}
@media(max-width:991px){
    .list-content h2 {
      font-size: 50px;
      /*top: 300px;*/
    }
}
 @media(max-width:767px){
    .list-content h2 {
     font-size: 27px;
      top: 50%;
      transform: translateY(-50%);
  }
  
    .carousel-inner {
        min-height: 300px;
    }
    .carousel-inner img{
        height: 300px;
        width: auto!important;
    }
    .chocolate {
        left: 20px;
    }
    #topbar {
        height: 70px;
    }
}
@media(max-width:575px){
    .list-content h2 {
        font-size: 25px;
        padding-left: 25px;
    }
    .product input {
        width: 100%;
    }
    .social-links svg {
      margin-right: 0;
    }
}

.filter .pop-cake{
  width: auto;
}
.filter .pop-cake h2{
  margin: 15px 15px;
  color: #1C114D;
  font-size: 20px;
  font-weight: 700;
}
.filter .pop-cake ul li {
    margin-bottom: 8px;
}

.filter .pop-cake h3{
  margin: 0 15px 15px;
  color: #1C114D;
  font-size: 16px;
}
.filter .pop-cake ul {
  margin: 0 15px 15px 15px;
  padding-left: 0;
  list-style: none;
}
.filter input {
  width: auto;
}

.navbar-expand-lg .navbar-collapse {
  place-content: flex-end;
}

.navbar .dropdown ul.list-unstyled {
  display: block;
  opacity: 1;
  position: relative;
  visibility: inherit;
  background: #fff;
  box-shadow: none;
  transition: 0.3s;
  left: 0;
}


/*cookies*/
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2147483645;
  box-sizing: border-box;
  width: 100%;
color: #fff;
  background-color: #4a3134;
}

.cookie-consent-banner__inner {     
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 0;
}

.cookie-consent-banner__copy { 
  margin-bottom: 16px;
}

.cookie-consent-banner__actions {    
}

.cookie-consent-banner__header {
  margin-bottom: 8px;
  
  /*font-family: "CeraPRO-Bold", sans-serif, arial;*/
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
}

.cookie-consent-banner__description {
  /*font-family: "CeraPRO-Regular", sans-serif, arial;*/
  font-weight: normal;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}

.cookie-consent-banner__cta {
  box-sizing: border-box;
  display: inline-block;
  min-width: 164px;
  padding: 11px 13px;
   cursor: pointer; 
  border-radius: 50px;
  
  background-color: #f4c55c;
   
  color: #000;
  text-decoration: none;
  text-align: center;
  /*font-family: "CeraPRO-Regular", sans-serif, arial;*/
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
}

.cookie-consent-banner__cta--secondary { 
  padding: 9px 13px;
  
  border: 2px solid #fff;
  
  background-color: transparent;
  
  color: #fff;
}

.cookie-consent-banner__cta:hover {
  background-color: #f4c55c;
}

.cookie-consent-banner__cta--secondary:hover {
  border-color: #fff;
    
  background-color: transparent;
  
  color: #fff;
}

.cookie-consent-banner__cta:last-child {
  margin-left: 16px;
}

@media(max-width: 767px){
  .cntform {
    width: 100%;
    padding: 35px 15px;
  }
  .form-add {
    margin-bottom: 30px;
  }
  .btn.btn-view {
    font-size: 15px;
  }
  .footrt {
    padding-left: 15px;
}
.card-body button.btn {
    font-size: 12px;
    padding: 5px 5px;
}
div#pills-tabContent {
    margin-bottom: 30px;
}
.yourcartsec {
    margin: 0!important;
}
ul#pills-tab li {
    margin-right: 0!important;
}
.register .register-left {
    display: none;
}
}
.form-add a {
    color: #000;
}
img.nopdtimg {
    width: 145px;
    height: 135px;
    margin: 25px auto 6px;
}
.commontbpad{
  padding-top: 60px;
  padding-bottom: 60px;
}
.noprodct {
    text-align: center;
}
.noprodct span {
    display: inline-block;
    width: 100%;
    font-size: 20px;
    font-weight: 800;
}
.btn-check:focus+.btn, .btn:focus {
    outline: 0;
    box-shadow: none!important;
}
#bag .page-sec-head{
  text-align: right!important;
}
.text_fullwdth {
    margin-top: 60px;
}
.text_fullwdth ul li {
    margin-right: 6px;
    border: 1px solid #dee2e6;
    border-bottom: 0;
}
.text_fullwdth .tab-content>.tab-pane {
    border-top: 0;
    border-radius: 0;
}
/*.text_fullwdth ul.nav-tabs {
    border-bottom: 1px solid transparent;
}*/
.text_fullwdth .nav-tabs .nav-item.show .nav-link,
.text_fullwdth .nav-tabs .nav-link.active {
  border-color: transparent; 
}
ul#pills-tab li button {
    background-color: #f7f7f7;
    margin: 0 7px 0 0;
}
ul#pills-tab li button.active {
    background-color: #f4c55c;
}
.cartquantity .value-button-r, .cartquantity .value-button-l{
  width: 30px;
}
.cartquantity input.form-control.input-number {
    text-align: center;
}
.det_item .det_text {
    font-weight: 600;
    color: #000;
    margin: 0 0 5px;
    display: inline-block;
}
.det_item {
    width: 32%;
    float: left;
    margin-right: 8px;
    margin-bottom: 20px;
}
.det_item select {
    border-radius: 0;
    background-color: #f7f7f7;
    border: none;
    width: 100%;
    font-size: 14px;
    padding: 12px 6px;
}
.addtocart {
    width: 100%;
    display: inline-block;
}

.head_menu .navbar li ul.dropdown-menu li.dropdown-item:hover {
    background-color: transparent;
}
.head_menu .navbar li ul.dropdown-menu li.dropdown-item:hover > a {
    color: #f4c55c;
}
.head_menu .navbar li ul.dropdown-menu li.dropdown-item.dropdown .submenu li:hover {
    background-color: transparent;
}
.head_menu .navbar li ul.dropdown-menu li.dropdown-item.dropdown .submenu li:hover > a  {
    color: #f4c55c;
}
.list-content {
    position: relative;
}

@media (max-width: 767px){
  .social-links svg {
      margin-right: 15px!important;
  }

}
@media (min-width:768px) and (max-width: 991px){
  .form-add {
    margin-bottom: 30px;
  }
  .cntform {
    width: 100%;
  }
}
.contact .email-form input {
    background-color: #f7f7f7;
    border: none;
    height: 45px;
}
.contact .email-form textarea {
    background-color: #f7f7f7;
    border: none;
    height: 110px;
}

.login-right {
    width: 400px;
    margin: 70px auto;
    padding: 20px;
    box-shadow: 0 0 30px rgb(214 215 216 / 30%);
    background-color: #fff;
}
section#login {

  background-size: cover!important;
    background: url("../img/bannerbg.svg")  no-repeat;
}
section#register {
   background-size: cover!important;
    background: url("../img/bannerbg.svg") no-repeat;
}
.footer-newsletter h4 {
    margin-bottom: 0!important;
    padding-bottom: 0!important;
}


.register .login-right {
    width: 45%;
}
.reg-input {
    margin-bottom: 20px;
}
.reg-input input {
    background-color: #f7f7f7;
    border-radius: 0;
    border: none;
    height: 45px;
}
.reg-input select {
    background-color: #f7f7f7;
    border-radius: 0;
    border: none;
    height: 45px;
}
div#hiddensearch {
  box-shadow: 0px 2px 12px rgb(0 0 0 / 6%);
  padding: 10px;
  position: relative;
  z-index: 11;
  background-color: #cdcdcd;
}
var.price {
  font-size: 20px;
}
tr.mob-tr {
  border-bottom: 1px solid #d8d8d8;
}

@media (max-width: 575px){
  .heado .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
    width: auto;
    max-width: 600px;
  }
  thead.text-muted{
    display: none;
  }
  .mob-tr {
    display: grid;
  }
  .mob-tr .input-group {
    width: 35%;
  }
  .commontbpad {
    padding-top: 5px; 
  }
}
@media (max-width: 767px){
	#header .logo img {
     max-height: unset!important;
     width: 160px; 
  }
  .register .login-right{
    width: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px){
  #header .logo img {
     max-height: unset!important;
     width: 160px; 
}
}