.navbar {
  background-color: #fafafa;
  color: #212121;
  height: 6vh;
  z-index: 5; }
  .navbar .navbar-brand {
    padding: 10px;
    border-radius: 10px; }
  .navbar .nav-item, .navbar .nav-link {
    top: 50%;
    display: table;
    background-color: #fafafa;
    border-radius: 10px;
    margin: 5px; }
    .navbar .nav-item .nav-link:hover, .navbar .nav-link .nav-link:hover {
      background-color: #d2d2d2; }
    .navbar .nav-item .nav-link-text, .navbar .nav-link .nav-link-text {
      height: 40px;
      display: table-cell;
      vertical-align: middle; }
  @media screen and (max-width: 760px) {
    .navbar {
      height: 8vh; }
      .navbar .navbar-nav {
        background-color: #d2d2d2;
        border-radius: 10px; }
      .navbar .nav-link {
        width: 100%;
        height: 100%; }
      .navbar .nav-item {
        padding-right: 20px;
        border: #212121 1px solid; } }
.banner {
  margin: 0;
  padding: 0;
  background-image: url("/static/img/banner-background.jpg");
  background-color: #000;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: table;
  width: 100%;
  height: 2000px;
  max-height: 95vh;
  position: relative; }
  .banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: table;
    height: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    animation: banner-in 2s; }
    .banner .banner-overlay .banner-container {
      display: table-cell;
      vertical-align: middle; }
      .banner .banner-overlay .banner-container .banner-title {
        font-size: 56px;
        color: #fff;
        margin-top: 0;
        margin-bottom: 20px;
        letter-spacing: 1px;
        font-weight: 500;
        animation: opacity 3s; }
      .banner .banner-overlay .banner-container .banner-text {
        font-size: 14px;
        color: #fff;
        margin: 0;
        margin-bottom: 18px;
        animation: opacity 3s; }
    .banner .banner-overlay .banner-scroll-down {
      position: absolute;
      bottom: 15px;
      left: 50%;
      margin-left: -12px;
      cursor: pointer;
      animation: opacity 3s; }

.products-container {
  align-items: center;
  justify-content: center;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  width: 100%;
  max-width: 1200px;
  padding: 30px; }
  @media screen and (max-width: 760px) {
    .products-container {
      grid-template-columns: repeat(2, 1fr); } }
.card {
  width: 450px;
  background-color: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 20px; }

@media screen and (max-width: 760px) {
  .card {
    width: 100%; } }

.card-header {
  background-color: #333;
  color: #fff;
  padding: 10px; }

.card-header h2 {
  margin: 0;
  font-size: 18px; }

.card-content {
  display: flex;
  padding: 10px; }

.card-content img {
  width: 100px;
  height: 100px;
  margin-right: 10px;
  object-fit: cover; }

.card-content p {
  margin: 0;
  font-size: 14px; }

.card-footer {
  background-color: #ccc;
  padding: 10px;
  text-align: center; }

.card-footer p {
  margin: 0;
  font-size: 16px; }

.product-block {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 400px;
  padding-bottom: 150%;
  perspective: 1000px;
  margin-bottom: 50px;
  color: #000; }
  .product-block__footer {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(230, 230, 230, 0.65);
    border-radius: 10px;
    padding-left: 5px;
    padding-right: 5px;
    margin: 15px; }
  .product-block__cover {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%);
    background-size: cover;
    perspective-origin: 50% 50%;
    transform-style: preserve-3d;
    transform-origin: top center;
    will-change: transform;
    transform: skewX(0.001deg);
    transition: transform .35s ease-in-out;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; }
    .product-block__cover::after {
      display: block;
      content: '';
      position: absolute;
      z-index: 100;
      top: 0;
      left: 0;
      width: 100%;
      height: 120%;
      background: linear-gradient(226deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.4) 35%, rgba(255, 255, 255, 0.2) 42%, rgba(255, 255, 255, 0) 60%);
      transform: translateY(-20%);
      will-change: transform;
      transition: transform 0.65s cubic-bezier(0.18, 0.9, 0.58, 1); }
  .product-block:hover .product-block__cover {
    transform: rotateX(7deg) translateY(-6px); }
    .product-block:hover .product-block__cover::after {
      transform: translateY(0%); }
  .product-block::before {
    display: block;
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 6px 12px 12px rgba(0, 0, 0, 0.4);
    will-change: opacity;
    transform-origin: top center;
    transform: skewX(0.001deg);
    transition: transform .35s ease-in-out, opacity .5s ease-in-out; }
  .product-block:hover::before {
    opacity: 0.6;
    transform: rotateX(7deg) translateY(-6px) scale(1.05); }

.product-block-hidden {
  border: red 5px solid; }

.product-page {
  display: flex; }
  @media screen and (max-width: 760px) {
    .product-page {
      flex-direction: column; } }
  .product-page .product-info-block {
    max-width: 60%; }

.softishine-form input {
  display: block;
  width: 100%;
  padding: 0.375rem 0.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: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; }

.softishine-form .submit-btn {
  height: 60px;
  width: 300px;
  border-radius: 30px;
  top: 50%;
  left: 50%;
  text-align: center;
  color: #fff;
  font-size: 34px;
  text-transform: uppercase;
  text-decoration: none;
  box-sizing: border-box;
  background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
  background-size: 400%;
  cursor: pointer;
  line-height: normal; }
  .softishine-form .submit-btn:hover {
    animation: animate 8s linear infinite; }
    .softishine-form .submit-btn:hover:before {
      filter: blur(20px);
      opacity: 1;
      animation: animate 8s linear infinite; }

.softishine-form .submit-btn * {
  top: 50%; }

.product-photos-container {
  position: relative;
  margin: 30px;
  width: 400px;
  height: auto; }
  @media screen and (max-width: 760px) {
    .product-photos-container {
      width: 100%;
      height: auto;
      min-width: 100%;
      margin: 0; } }
  .product-photos-container * {
    box-sizing: border-box; }
  .product-photos-container .product-photo-slide {
    display: none; }
    .product-photos-container .product-photo-slide .numbertext {
      color: #f2f2f2;
      font-size: 12px;
      padding: 8px 12px;
      position: absolute;
      top: 0; }
  .product-photos-container .prev,
  .product-photos-container .next {
    cursor: pointer;
    position: absolute;
    top: 55%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    text-decoration: none; }
    .product-photos-container .prev:hover,
    .product-photos-container .next:hover {
      background-color: rgba(0, 0, 0, 0.8); }
  .product-photos-container .next {
    right: 0;
    border-radius: 3px 0 0 3px; }
  .product-photos-container .caption-container {
    text-align: center;
    background-color: #222;
    padding: 2px 16px;
    color: white; }
  .product-photos-container .photos-row .photos-column {
    float: left;
    width: 16.66%; }
    .product-photos-container .photos-row .photos-column .demo {
      opacity: 0.6; }
    .product-photos-container .photos-row .photos-column .active,
    .product-photos-container .photos-row .photos-column .demo:hover {
      opacity: 1; }
  .product-photos-container .photos-row:after {
    content: "";
    display: table;
    clear: both; }

.cursor {
  cursor: pointer; }

#img-modal-content {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s; }
  #img-modal-content:hover {
    opacity: 0.7; }

.photo-modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.9); }
  .photo-modal .photo-modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px; }
  .photo-modal #zoomed-photo-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px; }
  .photo-modal .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s; }
  .photo-modal:hover, .photo-modal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer; }

.photo-modal-content, #zoomed-photo-caption {
  animation-name: zoom;
  animation-duration: 0.6s; }

@keyframes zoom {
  from {
    transform: scale(0); }
  to {
    transform: scale(1); } }

@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%; } }

.product-buy-block .product-price {
  flex-direction: row;
  display: flex;
  flex-wrap: wrap;
  padding: 0 16px 16px 16px;
  align-items: center;
  margin: 24px 0 24px 0;
  border: 1px solid #e9e9e9;
  border-radius: 4px;
  box-sizing: border-box; }
  .product-buy-block .product-price__big {
    font-size: 36px; }

@keyframes animate {
  0% {
    background-position: 0%; }
  100% {
    background-position: 400%; } }

.product-buy-block a {
  height: 60px;
  width: 300px;
  border-radius: 30px;
  top: 50%;
  left: 50%;
  text-align: center;
  color: #fff;
  font-size: 34px;
  text-transform: uppercase;
  text-decoration: none;
  box-sizing: border-box;
  background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
  background-size: 400%;
  cursor: pointer;
  padding: 7px;
  display: block; }
  .product-buy-block a:hover {
    animation: animate 8s linear infinite; }
    .product-buy-block a:hover:before {
      filter: blur(20px);
      opacity: 1;
      animation: animate 8s linear infinite; }
  .product-buy-block a:before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    bottom: -5px;
    right: -5px;
    z-index: -1;
    background-size: 400%;
    border-radius: 40px;
    opacity: 0;
    transition: 1s; }

.product-buy-block .product-order-btn * {
  top: 50%; }

.alert-gtag {
  display: none !important;
  z-index: 999;
  width: 0;
  height: 0; }

.footer-section {
  background: #151414;
  position: relative; }
  .footer-section ul {
    margin: 0px;
    padding: 0px; }

.footer-cta {
  border-bottom: 1px solid #373636; }

.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px; }

.cta-text {
  padding-left: 15px;
  display: inline-block; }
  .cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px; }
  .cta-text span {
    color: #757575;
    font-size: 15px; }

.footer-content {
  position: relative;
  z-index: 2; }

.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%; }

.footer-logo {
  margin-bottom: 30px; }
  .footer-logo img {
    max-width: 200px; }

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 28px; }

.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px; }

.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px; }

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%; }

.facebook-bg {
  background: #3B5998; }

.twitter-bg {
  background: #55ACEE; }

.google-bg {
  background: #DD4B39; }

.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative; }
  .footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: #ff5e14; }

.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px; }
  .footer-widget ul li a {
    color: #878787;
    text-transform: capitalize; }
    .footer-widget ul li a:hover {
      color: #ff5e14; }

.subscribe-form {
  position: relative;
  overflow: hidden; }
  .subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: #2E2E2E;
    border: 1px solid #2E2E2E;
    color: #fff; }
  .subscribe-form button {
    position: absolute;
    right: 0;
    background: #ff5e14;
    padding: 13px 20px;
    border: 1px solid #ff5e14;
    top: 0; }
    .subscribe-form button i {
      color: #fff;
      font-size: 22px;
      transform: rotate(-6deg); }

.copyright-area {
  background: #202020;
  padding: 25px 0; }

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787; }
  .copyright-text p a {
    color: #ff5e14; }

.footer-menu li {
  display: inline-block;
  margin-left: 20px; }
  .footer-menu li:hover a {
    color: #ff5e14; }
  .footer-menu li a {
    font-size: 14px;
    color: #878787; }

.back-order-success {
  display: block;
  background-color: #D21449;
  width: 350px;
  color: #fafafa;
  padding: 15px;
  margin: 20px;
  border: black 4px solid;
  border-radius: 20px; }

/*# sourceMappingURL=style.css.map */