@charset "UTF-8";
.navbar {
  width: 100%;
  padding: 7px 0;
  transition: all 0.3s ease;
}
.navbar .container .row {
  margin-left: 0;
  margin-right: 0;
}
.navbar .navbar-wrapper {
  display: flex;
  width: 100%;
  align-items: center;
}
.navbar .navbar-wrapper .logo {
  margin-right: auto;
}
.navbar .navbar-wrapper .logo a {
  color: #fff;
  font-size: 35px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.navbar .navbar-wrapper .logo a span {
  color: #007bff;
}
.navbar .navbar-wrapper .menu li {
  display: inline-block;
  list-style: none;
}
.navbar .navbar-wrapper .menu li a {
  margin-left: 25px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: color 0.3s ease;
}
.navbar .navbar-wrapper .menu li a:hover {
  color: #007bff;
}
.navbar .navbar-wrapper .btn {
  height: 34px;
  width: 34px;
  margin-top: 0;
  margin-left: 25px;
  margin-bottom: 0;
  padding: 0;
  background-color: transparent;
  border-style: none;
  border-radius: 0;
  color: #fff;
  font-size: 23px;
  cursor: pointer;
}
.navbar .navbar-wrapper .btn-menu {
  display: none;
  background-image: url("/img/icons/burger-menu_2203512.svg");
  background-size: contain;
}
.navbar .navbar-wrapper .btn-cart {
  display: block;
  background-image: url("/img/icons/shopping-cart_2561279.svg");
  background-size: contain;
}
.navbar.sticky {
  padding: 15px 0;
  background-color: #007bff;
}
.navbar.sticky .navbar-wrapper .logo a {
  font-size: 25px;
}
.navbar.sticky .navbar-wrapper .logo a span {
  color: #fff;
}
.navbar.sticky .navbar-wrapper .menu li a:hover {
  color: #fff;
}

@media (max-width: 947px) {
  .navbar {
    padding: 15px 0;
  }
  .navbar .navbar-wrapper .logo a {
    font-size: 24px;
  }
  .navbar .navbar-wrapper .menu {
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    left: -100%;
    text-align: center;
    padding-top: 80px;
    background-color: #058fc5;
    /*background-image: linear-gradient(to right, #49bad2, #058fc5, #49bad2, #058fc5) !important;*/
    background-image: linear-gradient(to right, #007bff, #058fc5, #007bff, #058fc5) !important;
    background-size: 300% 100% !important;
    transition: all 0.3s ease;
  }
  .navbar .navbar-wrapper .menu li {
    display: block;
  }
  .navbar .navbar-wrapper .menu li a {
    display: inline-block;
    margin: 20px 0;
    font-size: 25px;
  }
  .navbar .navbar-wrapper .menu.active {
    left: 0;
  }
  .navbar .navbar-wrapper .btn {
    height: 24px;
    width: 24px;
  }
  .navbar .navbar-wrapper .btn-menu {
    display: block;
  }
  .navbar .navbar-wrapper .btn-menu i.active:before {
    content: "";
  }
}
.footer {
  width: 100%;
  padding-top: 30px;
  transition: all 0.3s ease;
}
.footer .container {
  display: flex;
  margin: 45px auto;
}
.footer .container .row {
  margin-left: 0;
  margin-right: 0;
}
.footer .footer-wrapper {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: column;
}
.footer .footer-wrapper .footer-top {
  width: 100%;
  /*background-color: #013243;*/
  background-color: #274a8e;
}
@media screen and (max-width: 1199px) {
  .footer .footer-wrapper .footer-top {
    font-size: 16px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-top {
    padding: 0;
  }
}
.footer .footer-wrapper .footer-bottom {
  width: 100%;
  padding: 20px 0;
  background-color: #ffffff;
}
.footer .footer-wrapper .footer-bottom .container{
  justify-content: space-around;
  margin: 0 auto;
}
.footer .footer-wrapper .footer-bottom .powerd-by,
.footer .footer-wrapper .footer-bottom .copyright {
  min-height: 1px;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-bottom .powerd-by,
.footer .footer-wrapper .footer-bottom .copyright {
    text-align: center;
  }
}
.footer .footer-wrapper .footer-bottom .powerd-by p,
.footer .footer-wrapper .footer-bottom .copyright p {
  margin-bottom: 0;
  font-size: 14px;
  color: #013243;
}
.footer .footer-wrapper .footer-bottom .copyright {
  float: right;
}
@media screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-bottom .copyright {
    float: none;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-bottom .copyright p {
    padding: 7px 0 0;
  }
}
.footer .footer-wrapper .footer-item {
  width: 100%;
  margin-bottom: 30px;
  padding: 0 35px;
}
@media screen and (max-width: 1199px) {
  .footer .footer-wrapper .footer-item {
    padding: 0 20px;
  }
}
@media screen and (max-width: 967px) {
  .footer .footer-wrapper .footer-item {
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-item {
    margin-bottom: 30px;
    flex-direction: column;
  }
  .footer .footer-wrapper .footer-item:first-child {
    margin-top: 90px;
  }
}
@media screen and (max-width: 767px) and (max-width: 1599px) {
  .footer .footer-wrapper .footer-item:first-child {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-item:last-child {
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 767px) and (max-width: 1599px) {
  .footer .footer-wrapper .footer-item:last-child {
    margin-bottom: 60px;
  }
}
.footer .footer-wrapper .footer-item h4 {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  font-size: 24px;
  color: #ffffff;
}
@media screen and (max-width: 1199px) {
  .footer .footer-wrapper .footer-item h4 {
    font-size: 20px;
  }
}
.footer .footer-wrapper .footer-item .hours {
  width: 100%;
}
.footer .footer-wrapper .footer-item .hours .hours-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer .footer-wrapper .footer-item .hours .hours-item .day {
  width: calc(100% - 125px);
  margin-bottom: 12px;
  float: right;
}
.footer .footer-wrapper .footer-item .hours .hours-item .day p {
  display: table-cell;
  width: 1%;
  margin-bottom: 10px;
  padding-right: 7px;
  color: #ffffff;
  white-space: nowrap;
}
.footer .footer-wrapper .footer-item .hours .hours-item .day .dot-lines {
  position: relative;
  display: table-cell;
  bottom: 10px;
  width: 98%;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}
.footer .footer-wrapper .footer-item .hours .hours-item .time {
  position: relative;
  float: right;
  color: #ffffff;
}
.footer .footer-wrapper .footer-item .contact-info ul {
  display: flex;
  width: 100%;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
}
.footer .footer-wrapper .footer-item .contact-info .address {
  width: 100%;
  line-height: 26px;
}
@media screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-item .contact-info .address {
    width: auto;
  }
}
.footer .footer-wrapper .footer-item .contact-info img {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  margin-top: 4px;
  vertical-align: top;
  color: #058fc5;
  float: left;
}
@media screen and (max-width: 1199px) {
  .footer .footer-wrapper .footer-item .contact-info img {
    margin-right: 7px;
  }
}
.footer .footer-wrapper .footer-item .contact-info a, .footer .footer-wrapper .footer-item .contact-info p {
  display: inline-block;
  margin-bottom: 5px;
  color: #ffffff;
}
.footer .footer-wrapper .footer-item .newsletter {
  width: 100%;
  margin-top: 20px;
}
.footer .footer-wrapper .footer-item .newsletter form {
  display: inline-block;
  width: 90%;
  margin: 0;
  float: left;
}
@media screen and (max-width: 1199px) {
  .footer .footer-wrapper .footer-item .newsletter form {
    width: 90%;
  }
}
@media screen and (max-width: 967px) {
  .footer .footer-wrapper .footer-item .newsletter form {
    width: 94%;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-item .newsletter form {
    width: 100%;
  }
}
.footer .footer-wrapper .footer-item .newsletter form .input-group {
  position: relative;
  display: table;
  border-collapse: separate;
  width: 100%;
  overflow: hidden;
}
.footer .footer-wrapper .footer-item .newsletter form .input-group input {
  display: inline-block;
  width: 100%;
  padding: 0 10px 0 25px;
  background-color: #ffffff;
  border-style: none;
  border-radius: 30px;
  max-width: 100%;
  color: #013243;
  line-height: 48px;
}
@media screen and (max-width: 1599px) {
  .footer .footer-wrapper .footer-item .newsletter form .input-group input {
    height: auto;
  }
}
@media screen and (max-width: 967px) {
  .footer .footer-wrapper .footer-item .newsletter form .input-group input {
    padding: 0 10px 0 15px;
    line-height: 46px;
  }
}
.footer .footer-wrapper .footer-item .newsletter form .input-group .subscribe {
  position: absolute;
  height: 100%;
  width: 70px;
  right: 0;
  border-radius: 30px;
  padding: 13px 14px;
  float: right;
  margin-left: -50px;
}
.footer .footer-wrapper .footer-item .newsletter form .input-group .subscribe img {
  height: 22px;
}
.footer .footer-wrapper .footer-logo p {
  margin-bottom: 30px;
  padding: 0;
  color: #ffffff;
}
.footer .footer-wrapper .footer-logo img {
  max-width: 128px;
  margin: 0 0 25px;
  padding: 0 0;
}
@media screen and (max-width: 567px) {
  .footer .footer-wrapper .footer-logo img {
    margin: auto;
    padding: 0;
  }
}
.footer .footer-wrapper .footer-icons .payment-icons {
  position: relative;
  float: left;
  padding: 0 0 0;
}
@media screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-icons .payment-icons {
    display: inline-block;
    width: 100%;
    margin: auto;
    padding: 0;
    text-align: left;
    float: none;
  }
}
@media screen and (max-width: 567px) {
  .footer .footer-wrapper .footer-icons .payment-icons {
    text-align: left;
  }
}
.footer .footer-wrapper .footer-icons .payment-icons li {
  margin: 0 7px 0 0;
  float: left;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-icons .payment-icons li {
    display: inline-block;
    float: none;
  }
}

/* DefaultCSS - Mixins functions */
/**
 * @description: Z-Index.
 * @param: $name
 *
 * @example:
 * .site-header {
 *  z-index: z('site-header');
 * }
 */
.site-header {
  z-index: 5;
}

.shop-content {
  z-index: 2;
}

.site-footer {
  z-index: 1;
}

.site-header {
  position: relative;
  background-color: #058fc5;
  /*background-image: linear-gradient(to right, #49bad2, #058fc5, #49bad2, #058fc5) !important;*/
  background-image: linear-gradient(to right, #007bff, #058fc5, #007bff, #058fc5) !important;
  background-size: 300% 100% !important;
}
.site-header .site-wrapper {
  border: none;
  padding: 0 30px;
}

.section-banner {
  height: 86vh;
}
.products .products-wrapper .product {
  display: inline-block;
  width: 25%;
  padding-top: 0;
  padding-right: 10px;
  padding-bottom: 20px;
  padding-left: 10px;
  min-height: 1px;
  vertical-align: top;
  float: left;
}
@media screen and (max-width: 1599px) {
  .products .products-wrapper .product {
    padding-top: 0;
    padding-right: 15px;
    padding-bottom: 20px;
    padding-left: 15px;
  }
}
@media screen and (max-width: 967px) {
  .products .products-wrapper .product {
    width: 33.33%;
    padding-top: 0;
    padding-right: 5px;
    padding-bottom: 10px;
    padding-left: 5px;
  }
}
@media screen and (max-width: 567px) {
  .products .products-wrapper .product {
    width: 50%;
    padding-top: 0;
    padding-right: 10px;
    padding-bottom: 20px;
    padding-left: 10px;
  }
}
.products .products-wrapper .product .product-container {
  position: relative;
  height: auto;
  width: 100%;
  border-radius: 10px;
  line-height: 0;
  overflow: hidden;
  background-color: #f5f6f8;
}
.products .products-wrapper .product .product-container .product-link .image-overlay {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1;
  transition: all 0.3s;
}
.products .products-wrapper .product .product-container .product-link .image img {
  position: static;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 567px) {
  .products .products-wrapper .product .product-container .product-link .image img {
    margin: auto;
  }
}
.products .products-wrapper .product .product-container .product-link .image .featured-image-hidden {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
}
.products .products-wrapper .product .product-container .product-overlay {
  width: 100%;
  overflow: hidden;
}
.products .products-wrapper .product .product-container .product-overlay .link-icon {
  position: absolute;
  width: 100%;
  top: auto;
  bottom: 0;
  transform: translate(0, 0);
}
.products .products-wrapper .product .product-container .product-overlay .link-icon .btn-add-cart {
  width: 100%;
  opacity: 0;
  transition: all 0.3s ease;
}
.products .products-wrapper .product .product-container .product-overlay .product-button {
  position: absolute;
  display: inline-block;
  width: 100%;
  top: 50%;
  left: 50%;
  margin: 0;
  text-align: center;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .products .products-wrapper .product .product-container .product-overlay .product-button {
    top: 40%;
  }
}
.products .products-wrapper .product .product-container:hover .product-link .image-overlay {
  opacity: 1;
}
.products .products-wrapper .product .product-container:hover .product-link .image .featured-image-hidden {
  visibility: visible;
  opacity: 1;
  transform: translateX(0%);
}
.products .products-wrapper .product .product-container:hover .product-overlay .link-icon .btn-add-cart {
  opacity: 1;
}
.products .products-wrapper .product .product-container:hover .product-overlay .product-button {
  opacity: 1;
}
.products .products-wrapper .product .product-detail {
  position: relative;
  width: 100%;
  padding: 30px 15px;
  border-radius: 0 0 10px 10px;
  background-color: rgba(0, 0, 0, 0);
}
@media screen and (max-width: 1599px) {
  .products .products-wrapper .product .product-detail {
    padding: 30px 5px;
  }
}
@media screen and (max-width: 767px) {
  .products .products-wrapper .product .product-detail {
    padding: 10px 10px;
  }
}
.products .products-wrapper .product .product-detail .product-link {
  display: inline-block;
  width: 100%;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 5px;
  margin-left: 0;
  font-family: Rajdhani;
  font-size: 22px;
  font-weight: 500;
  /*color: #058fc5;*/
  color: #007bff;
  line-height: normal;
}
@media screen and (max-width: 1599px) {
  .products .products-wrapper .product .product-detail .product-link {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .products .products-wrapper .product .product-detail .product-link {
    font-size: 18px;
  }
}
.products .products-wrapper .product .product-detail .product-desc {
  display: none;
}
.products .products-wrapper .product .product-detail .product-meta {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0;
  padding: 0 0;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 967px) {
  .products .products-wrapper .product .product-detail .product-meta {
    padding: 0;
  }
}
.products .products-wrapper .product .product-detail .product-meta .product-price
.products .products-wrapper .product .product-detail .product-meta .product-number {
  display: inline-block;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  color: #000;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .products .products-wrapper .product .product-detail .product-meta .product-price {
    font-size: 14px;
  }
}

@media screen and (max-width: 1199px) and (orientation: landscape) {
  .section-banner {
    height: 64vh;
  }
}
@media screen and (max-width: 1199px) and (orientation: portrait) {
  .section-banner {
    height: 44vh;
  }
}
@media screen and (max-width: 767px) {
  .section-banner {
    height: 34vh;
  }
}
@media screen and (max-width: 567px) {
  .section-banner {
    height: 24vh;
  }
}
