/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header2 {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  /* background-color: #C10000; */
  /* background-color: rgba(35,31,32,255); */
  background-color: #000000;
}

.header2 .logo {
  transition: 0.3s;
}

.header2 .logo img {
  max-height: 50px;
  margin-right: 8px;
}

.header2 .logo i {
  font-size: 32px;
  margin-right: 8px;
  line-height: 0;
}

@media (max-width: 575px) {
  .header2 .logo i {
    font-size: 24px;
  }
}

.header2 .header-social-links {
  padding-right: 15px;
}

.header2 .header-social-links a {
  color: #fff;
  padding-left: 10px;
  display: inline-block;
  line-height: 0px;
  transition: 0.3s;
  font-size: 16px;
}

.header2 .header-social-links a i {
  font-size: 1.5rem;
}

.header2 .header-social-links a:hover {
  /* font-weight: 800; */
  color: #C10000;
}

@media (max-width: 575px) {
  .header2 .header-social-links a {
    padding-left: 5px;
  }
}

.header2 .header-social-links li a{
  color: #333;
  line-height: 25px !important;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .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;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 1rem;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    /* font-weight: 800; */
    color: #eb7575;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: rgba(35,31,32,255);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    /* font-weight: 800; */
    color: #C10000;
  }

  .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 (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 400;
    color: #fff;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 1rem;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    /* font-weight: 800; */
    color: #eb7575;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid black;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(22, 23, 24, 0.8);
    z-index: 9996;
  }
}

.mt-6{
  margin-top: 4rem !important;
}

#main-wrapper{
  margin-top: 5rem;
}

.logo-wrapper{
  display: inline-flex;
}

.logo-wrapper a i{
  color: #fff;
  font-size: 1.25rem;
}

.cart-count {
  position: absolute;
}

.why-icon{
  font-size: 3.5rem !important;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.service-item {
  padding: 40px 30px;
  transition: all ease-in-out 0.4s;
  background: #feeff0;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.service-item:before {
  content: "";
  position: absolute;
  background: #1d1f20;
  top: -200px;
  transition: all 0.3s;
  z-index: -1;
}

.service-item i {
  background: #dc3545;
  color: #fff;
  font-size: 1.75rem;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.service-item h4 {
  font-weight: 600;
  margin: 15px 0 0 0;
  transition: 0.3s;
  font-size: 20px;
}

.service-item h4 a {
  color: #da4453;
}

.service-item p {
  line-height: 24px;
  font-size: 1rem;
  margin: 15px 0 0 0;
}

.service-item:hover:before {
  background: rgba(35,31,32,255);
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.service-item:hover h4 a,
.service-item:hover p {
  color: #fff;
}

.service-item:hover i {
  background: #fff;
  color: rgba(35,31,32,255);
}

.social-media-links img {
  display: inline-block;
  margin-right: 0.5rem;
  max-width: 35px;
}

@media (max-width: 768px) {
  .nutrition-tab img{
    width:100% !important;
  }
}

.img-80 {
  max-width: 80%;
  height: auto;
}

.img-85 {
  max-width: 85%;
  height: auto;
}

.no-cursor {
  cursor: auto; 
}

.no-cursor:hover {
  cursor: auto;
}