html, body {
  height: 100%;
}

body { 
  background:#f2f2f2;
}

p {
  letter-spacing: 1px;
  font-weight: 100;
  line-height: 22px;
}

.store-content {
  padding: 20px 10px;
  background-repeat: no-repeat;
  background-position: center;      /* ADDED */
  background-size: cover;           /* already correct */
  color: #fff;
  text-align: center;
  font-size: 0.7rem;
  position: relative;
  transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

.store-content h3 {
  position: relative;
  z-index: 555;
  font-size: 1rem;
  color: #fff;
  text-transform: capitalize;
  font-weight: bold;
}

.store-content .btn {
  color:#fff;
  font-weight: bold;
}

.store_logo {
  text-align: center;
  width: 165px;
  margin: 20px auto;
  margin-top: 40%;
  transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

.store_logo img {
  width: 100%;
  z-index: 555;
  position: relative;
}

.show-content {
  opacity: 0;
  transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 10;
  position: relative;
}

.store-content:hover .show-content {
  opacity: 1;
  transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

.store-content:before {
  content: '';
  position: absolute;
  background: #000;
  z-index: 5;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.3;
  transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

.store-content:hover:before {
  content: '';
  position: absolute;
  background: #000;
  z-index: 5;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.5;
  transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

.store-content:hover .store_logo {
  margin-top: 0;
}

.fa-chevron-left.slick-arrow {
  background: #fff;
  border-radius: 250px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 25px;
  position: absolute;
  left: 15px;
  z-index: 999;
  top: 50%;
  cursor: pointer;
}

.fa-chevron-right.slick-arrow {
  background: #fff;
  border-radius: 250px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 25px;
  position: absolute;
  right: 15px;
  z-index: 999;
  top: 50%;
  cursor: pointer;
}

.self-content {
  color:#000;
}

.outline-btn {
  color: #fff;
  border: 1px solid;
  padding: 9px 20px;
  font-weight: 100;
  font-size: 1.2rem;
}

.btn {    
  position: relative;  
  padding: 1rem 0.6rem;
  padding-right: 0;
  font-size: 1rem;
  color: #000;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
  cursor: pointer;
  user-select: none;
}

.btn:before, .btn:after {
  content: '';
  position: absolute;  
  transition: inherit;
  z-index: -1;
}

.btn:hover {
  color: #000;
  transition-delay: .5s;
}

.btn:hover:before {
  transition-delay: 0s;
}

.btn:hover:after {
  background: #fff;
  transition-delay: .35s;
}

/* From Top */
.from-top:before, 
.from-top:after {
  left: 0;
  height: 0;
  width: 100%;
}

.from-top:before {
  bottom: 0;  
  border: 1px solid #fff;
  border-top: 0;
  border-bottom: 0;
}

.from-top:after {
  top: 0;
  height: 0;
}

.from-top:hover:before,
.from-top:hover:after {
  height: 100%;
}

/* From Left */
.from-left:before, 
.from-left:after {
  top: 0;
  width: 0;
  height: 100%;
}

.from-left:before {
  right: 0;
  border: 1px solid #fff;
  border-left: 0;
  border-right: 0;  
}

.from-left:after {
  left: 0;
}

.from-left:hover:before,
.from-left:hover:after {
  width: 100%;
}

/* From Right */
.from-right:before, 
.from-right:after {
  top: 0;
  width: 0;
  height: 100%;
}

.from-right:before {
  left: 0;
  border: 1px solid #fff;
  border-left: 0;
  border-right: 0;  
}

.from-right:after {
  right: 0;
}

.from-right:hover:before,
.from-right:hover:after {
  width: 100%;
}

/* From center */
.from-center:before {
  top: 0;
  left: 50%;
  height: 100%;
  width: 0;
  border: 1px solid #fff;
  border-left: 0;
  border-right: 0;
}

.from-center:after {
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
  background: #fff;
}

.from-center:hover:before {
  left: 0;
  width: 100%;
}

.from-center:hover:after {
  top: 0;
  height: 100%;
}

/* From Bottom */
.from-bottom:before, 
.from-bottom:after {
  left: 0;
  height: 0;
  width: 100%;
}

.from-bottom:before {
  top: 0;  
  border: 1px solid #fff;
  border-top: 0;
  border-bottom: 0;
}

.from-bottom:after {
  bottom: 0;
  height: 0;
}

.from-bottom:hover:before,
.from-bottom:hover:after {
  height: 100%;
}

h1 {
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.home-top-content {
  font-weight: 100;
  letter-spacing: 1px;
  padding: 20px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar {
  width: 9px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background-color: #555;
}

.bg-black {
  background:#000;
  color:#fff;
}

.bg-black a{
  color:#fff;
}

.modal.left .modal-dialog,
.modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 65%;
  max-width: 65%;
  height: 100%;
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.modal.left .modal-content,
.modal.right .modal-content {
  height: 100%;
  overflow-y: auto;
  background: #333;
  opacity: 0.9;
  color: #fff;
}

.modal.left .modal-body,
.modal.right .modal-body {
  padding: 15px 15px 80px;
}

.modal.right.fade .modal-dialog {
  right: -320px;
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
  -o-transition: opacity 0.3s linear, right 0.3s ease-out;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}
.modal.right.fade.show .modal-dialog {
  right: 0;
}

/* ----- MODAL STYLE ----- */
.modal-content {
  border-radius: 0;
  border: none;
}

.modal-header {
  background: #333;
  opacity: 0.9;
  color: #fff;
  border:0;
}

.modal-header .close {
  color: #fff;
  opacity: 1;
  font-size: 35px;
}

.btn-home {
  background: transparent;
  border: 1px solid #fff;
  padding: 1rem 4rem;
  color: #fff;
}

.btn-contact {
  background: #333;
  color: #fff;
  padding: 1rem 4rem;
}

.form-control {
  padding: .975rem .75rem;
}

@media only screen and (min-width: 1400px) {
  .store-content {
    font-size: 0.9rem;
  }
  .store-content:hover .store_logo {
    margin-top:15%;
  }
}

@media only screen and (max-width: 480px) {
  .home-top-content {
    padding: 10px 0;
  }

  .btn-home {
    padding:10px;
  }

  .store_logo {
    margin-top:0;
  }

  .store-content {
    font-size: 1rem;
  }

  .store-content:hover .store_logo {
    margin-top: 0;
    display: none;
  }

  .font-weight-normal {
    font-size: 1.7rem;
  }

  .btn {
    letter-spacing: 2px;
  }

  .modal.left .modal-dialog, .modal.right .modal-dialog {
    width: 100%;
    max-width: 100%;
  }
}

.site-nav a {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
}

.home-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.employment-page {
  min-height: 100%;
  background: #111;
  color: #fff;
}

.employment-wrap {
  padding-top: 70px;
  padding-bottom: 70px;
}

.employment-hero {
  max-width: 900px;
  margin: 0 auto 45px;
}

.employment-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #cfcfcf;
  margin-bottom: 20px;
}

.employment-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  margin-bottom: 24px;
}

.employment-hero .lead {
  color: #e5e5e5;
  line-height: 1.8;
}

.career-card {
  height: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 34px;
}

.career-card h2, .employment-apply h2 {
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.55rem;
}

.career-card p, .employment-apply p {
  color: #e5e5e5;
}

.employment-apply {
  background: #fff;
  color: #111;
  padding: 40px 25px;
  margin-top: 18px;
}

.employment-apply p {
  color: #333;
}

@media only screen and (max-width: 480px) {
  .site-nav {
    text-align: center;
  }

  .site-nav a {
    display: inline-block;
    padding: 6px 8px !important;
    font-size: 0.75rem;
  }

  .employment-wrap {
    padding-top: 35px;
  }
}

/* DCMG native contact form */
.contact-page .dcmg-contact-form {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  padding: 28px;
}
.contact-page .dcmg-contact-form label {
  font-weight: 700;
  color: #111111;
}
.contact-page .dcmg-contact-form .form-control {
  border-radius: 8px;
  border: 1px solid #d8d8d8;
  min-height: 46px;
}
.contact-page .dcmg-contact-form textarea.form-control {
  min-height: 160px;
}
.contact-page .contact-submit {
  background: #000000;
  border-color: #000000;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 12px 28px;
}
.contact-page .contact-submit:hover,
.contact-page .contact-submit:focus {
  background: #333333;
  border-color: #333333;
}
