@font-face {
  font-family: "Karla";
  font-weight: normal;
  src: url("../fonts/Karla/Karla-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Karla";
  font-weight: bold;
  src: url("../fonts/Karla/Karla-Bold.ttf") format("truetype");
}

.container {
  max-width: 110rem;
  margin: 0 auto;
  padding: 0 2rem;
  overflow: hidden;
}

.mw-section {
  max-width: 140rem;
  margin-left: auto !important;
  margin-right: auto !important;
}

.deco-block {
  padding: 6rem 0 !important;
}

.deco-block .text-wrap {
  margin-bottom: 10rem !important;
}

.overlay-section {
  margin-top: -18rem !important;
  position: relative;
  z-index: 10;
}

.m-top {
  margin-top: 8rem;
}

.bg-dark {
  background: #1d1f2e;
  color: #fff !important;
}

.bg-gray {
  background: #f6f6f6;
  color: #1d1f2e !important;
}

.text-wrap {
  max-width: 57rem;
  margin: 0 auto;
}

.upper {
  text-transform: uppercase;
}

.cap {
  text-transform: capitalize;
}

.lower {
  text-transform: lowercase;
}

.small-title {
  font-size: 1.2rem;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.large {
  font-size: 4.8rem;
  font-weight: normal;
  text-transform: capitalize;
}

.lead {
  font-size: 1.8rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.section-title {
  display: inline-block;
  max-width: 25rem;
  font-size: 1.6rem;
  font-weight: normal;
  text-transform: uppercase;
  color: rgba(29, 31, 46, 0.7);
  position: relative;
  margin-bottom: 9rem;
}

.section-title::before,
.section-title::after {
  content: "";
  width: 4rem;
  height: 1px;
  background: rgba(59, 63, 93, 0.7);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.section-title::before {
  left: -5rem;
}

.section-title::after {
  right: -5rem;
}

.page-title {
  font-size: 3.5rem;
  text-transform: capitalize;
  margin-top: 6rem;
}

.title {
  font-size: 2.8rem;
  font-weight: normal;
  margin-bottom: 2rem;
}

.text {
  font-size: 1.6rem;
  color: rgba(29, 31, 46, 0.7);
  margin-bottom: 4rem;
}

.link {
  display: inline-block;
  padding: 0.5rem;
  color: #a25f4b;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #a25f4b;
  -webkit-transition: color 250ms linear;
  -o-transition: color 250ms linear;
  transition: color 250ms linear;
}

.link:hover {
  color: #b97a67;
}

.flex {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-left,
.flex-right {
  width: 100%;
}

.flex-right {
  margin-top: 3rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
  grid-gap: 2rem;
}

.underline {
  padding-bottom: 3rem;
  position: relative;
}

.underline::before {
  content: "";
  width: 5rem;
  height: 2px;
  background: #f6f6f6;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
  .flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex-left,
  .flex-right {
    width: 48% !important;
  }
  .flex-right {
    margin-top: 0;
  }
  .small-title {
    font-size: 1.5rem;
  }
  .large {
    font-size: 5.5rem;
  }
  .lead {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .title {
    font-size: 3rem;
  }
  .text {
    font-size: 1.8rem;
  }
  .link {
    font-size: 1.6rem;
  }
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Karla", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #1d1f2e !important;
}

section {
  text-align: center;
}

section:not(.hero) {
  padding: 3rem 0;
  margin: 6rem 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  margin-bottom: 2rem;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #1d1f2e;
}

img {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
}

.mobile-toggler {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
}

.mobile-toggler-line {
  width: 90%;
  height: 0.2rem;
  background: rgba(29, 31, 46, 0.7);
  position: relative;
  -webkit-transition: height 250ms linear 150ms;
  -o-transition: height 250ms linear 150ms;
  transition: height 250ms linear 150ms;
}

.mobile-toggler-line::before,
.mobile-toggler-line::after {
  content: "";
  width: 55%;
  height: 0.2rem;
  background: inherit;
  position: absolute;
  -webkit-transition: top 250ms linear 450ms, width 250ms ease-in-out,
    -webkit-transform 250ms ease-in-out;
  transition: top 250ms linear 450ms, width 250ms ease-in-out,
    -webkit-transform 250ms ease-in-out;
  -o-transition: top 250ms linear 450ms, transform 250ms ease-in-out,
    width 250ms ease-in-out;
  transition: top 250ms linear 450ms, transform 250ms ease-in-out,
    width 250ms ease-in-out;
  transition: top 250ms linear 450ms, transform 250ms ease-in-out,
    width 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
}

.mobile-toggler-line::before {
  top: -0.6rem;
}

.mobile-toggler-line::after {
  top: calc(100% + 0.4rem);
  right: 0;
}

.mobile-toggler.open .mobile-toggler-line {
  -webkit-transition: height 250ms linear 250ms;
  -o-transition: height 250ms linear 250ms;
  transition: height 250ms linear 250ms;
  height: 0;
}

.mobile-toggler.open .mobile-toggler-line::before,
.mobile-toggler.open .mobile-toggler-line::after {
  width: 100%;
  -webkit-transition: top 250ms linear, width 250ms ease-in-out 250ms,
    -webkit-transform 250ms ease-in-out 450ms;
  transition: top 250ms linear, width 250ms ease-in-out 250ms,
    -webkit-transform 250ms ease-in-out 450ms;
  -o-transition: top 250ms linear, transform 250ms ease-in-out 450ms,
    width 250ms ease-in-out 250ms;
  transition: top 250ms linear, transform 250ms ease-in-out 450ms,
    width 250ms ease-in-out 250ms;
  transition: top 250ms linear, transform 250ms ease-in-out 450ms,
    width 250ms ease-in-out 250ms, -webkit-transform 250ms ease-in-out 450ms;
  top: 0;
}

.mobile-toggler.open .mobile-toggler-line::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mobile-toggler.open .mobile-toggler-line::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.btn {
  display: inline-block;
  cursor: pointer;
  border: none;
  padding: 1.5rem 2.5rem;
  border-radius: 0.1 rem;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  background: #fff;
  color: #1d1f2e !important;
  -webkit-transition: -webkit-filter 250ms linear;
  transition: -webkit-filter 250ms linear;
  -o-transition: filter 250ms linear;
  transition: filter 250ms linear;
  transition: filter 250ms linear, -webkit-filter 250ms linear;
}

.btn:hover {
  -webkit-filter: brightness(0.85);
  filter: brightness(0.85);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-dark {
  background: #1d1f2e;
  color: #fff !important;
}

.card {
  width: 100%;
  min-height: 49rem;
  overflow: hidden;
  padding: 2rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 1;
}

.card-sale::after {
  content: "On Sale";
  display: block;
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 1rem 1.5rem;
  background: #fff;
  color: #a25f4b;
  text-transform: capitalize;
}

.card-top {
  width: 100%;
  height: 80%;
  position: absolute;
  top: 0;
  left: 0;
}

.card-top::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  -webkit-transition: background-color 250ms linear;
  -o-transition: background-color 250ms linear;
  transition: background-color 250ms linear;
}

.card-top .card-link {
  width: 100%;
  height: 100%;
}

.card-top .card-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.card-top .btn-block {
  width: 90%;
  border-radius: 0;
  position: absolute;
  top: 85%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: opacity 250ms linear, -webkit-transform 250ms ease-in-out;
  transition: opacity 250ms linear, -webkit-transform 250ms ease-in-out;
  -o-transition: opacity 250ms linear, transform 250ms ease-in-out;
  transition: opacity 250ms linear, transform 250ms ease-in-out;
  transition: opacity 250ms linear, transform 250ms ease-in-out,
    -webkit-transform 250ms ease-in-out;
}

.card-top:hover::before {
  background: rgba(0, 0, 0, 0.3);
}

.card-top:hover .btn-block {
  -webkit-transform: translateY(-2rem) translateX(-50%);
  -ms-transform: translateY(-2rem) translateX(-50%);
  transform: translateY(-2rem) translateX(-50%);
  opacity: 1;
}

.card-title {
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.card-price {
  color: rgba(29, 31, 46, 0.7);
  font-size: 1.6rem;
  text-transform: uppercase;
}

.card-price-sale {
  font-size: 2rem;
  color: #a25f4b;
}

.card-price-sale span {
  text-decoration: line-through;
  margin-left: 1rem;
}

.card.hide {
  display: none;
}

.card.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form {
  width: 100%;
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.form-group {
  width: 100%;
}

.form input:not([type="submit"]) {
  width: 100%;
  padding: 1.1rem 1.5rem;
  margin-bottom: 1rem;
  border: 2px solid #2f303e;
  outline: none;
  background: transparent;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
}

.form input:not([type="submit"])::-webkit-input-placeholder {
  font-size: 1.4rem;
  text-transform: uppercase;
}

.form input:not([type="submit"])::-moz-placeholder {
  font-size: 1.4rem;
  text-transform: uppercase;
}

.form input:not([type="submit"]):-ms-input-placeholder {
  font-size: 1.4rem;
  text-transform: uppercase;
}

.form input:not([type="submit"])::-ms-input-placeholder {
  font-size: 1.4rem;
  text-transform: uppercase;
}

.form input:not([type="submit"])::placeholder {
  font-size: 1.4rem;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .form input:not([type="submit"]) {
    width: 50%;
  }
  .form input[type="submit"] {
    display: inline-block;
    width: 20%;
  }
}

.swiper-container {
  max-width: 94rem;
  height: 58rem;
  margin-bottom: 5rem;
}

@media screen and (min-width: 1024px) {
  .swiper-container {
    height: 40rem;
  }
}

.tag-show {
  width: 100%;
  max-width: 90rem;
  padding: 1rem 5rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 4rem auto;
}

.tag-show-controll {
  display: inline-block;
  outline: none;
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  background: transparent;
  border: 1px solid #ccc;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: bold;
  white-space: nowrap;
  color: #c9998a;
  -webkit-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  transition: all 250ms linear;
}

.tag-show-controll.active,
.tag-show-controll:hover {
  color: #a25f4b;
  border: 1px solid #e9d6d0;
}

@media screen and (min-width: 768px) {
  .tag-show {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .tag-show-controll {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

.nav {
  width: 100%;
  height: 8rem;
  background: #fff;
  padding: 0 3rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.nav-content {
  max-width: 94rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.nav-content-right {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.nav-content-right div:not(:last-child) {
  margin-right: 2rem;
}

.nav-list {
  height: 0;
  width: 100vw;
  background: transparent;
  position: fixed;
  top: 8rem;
  left: 0;
  z-index: 900;
  overflow: hidden;
  -webkit-transition: height 500ms linear;
  -o-transition: height 500ms linear;
  transition: height 500ms linear;
}

.nav-list-content {
  padding: 2rem 0;
  background: #fff;
  color: #1d1f2e !important;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: auto;
}

.nav-list li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.nav-list a {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #888;
  position: relative;
}

.nav-list a::before {
  content: "";
  width: 0;
  height: 1px;
  background: #a25f4b;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: width 250ms ease;
  -o-transition: width 250ms ease;
  transition: width 250ms ease;
}

.nav-list a.active {
  font-weight: bold;
  color: #1d1f2e;
}

.nav-list a:hover::before {
  width: 100%;
}

.nav-list.open {
  height: calc(100vh - 8rem);
}

.nav-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-cart img {
  width: 1.5rem;
  margin-right: 0.5rem;
}

.nav-cart div {
  font-size: 1.4rem;
}

.nav-cart span {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
  line-height: 2rem;
  border-radius: 50%;
  text-align: center;
  background: rgba(29, 31, 46, 0.7);
  color: #fff !important;
}

@media screen and (min-width: 1024px) {
  .nav-list {
    position: static;
    width: auto;
    height: 100%;
  }
  .nav-list-content {
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .nav-list li {
    margin-bottom: 0 !important;
    margin-left: 3rem;
  }
  .nav-list a {
    padding: 0.5rem 1rem;
  }
  .nav .mobile-toggler {
    display: none;
  }
}

.logo {
  width: 11rem;
}

.hero {
  height: 70vh;
  background-image: url("../img/hero-bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  position: relative;
}

.hero::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}

.hero-content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
  max-width: 62rem;
}

.offer-img {
  display: grid;
  grid-template-areas: "big big" "small-1 small-2";
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-gap: 1rem;
  margin-bottom: 4rem;
}

.offer-img-container {
  width: 100%;
  height: 100%;
}

.offer-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.offer-img-1 {
  grid-area: big;
  max-height: 28rem;
}

.offer-img-2 {
  grid-area: small-1;
  max-width: 16rem;
  max-height: 13rem;
}

.offer-img-3 {
  grid-area: small-2;
  max-width: 16rem;
  max-height: 13rem;
}

.offer-small {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1.4rem;
  color: rgba(29, 31, 46, 0.7);
  margin-bottom: 2rem;
}

.offer-title {
  font-size: 3rem;
}

.offer p {
  color: rgba(29, 31, 46, 0.7);
  margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .offer-img {
    grid-template-areas: "big small-1" "big small-2";
  }
  .offer-img-1 {
    max-width: 28rem;
  }
}

.parallax {
  min-height: 40vh;
}

@media screen and (min-width: 1024px) {
  .parallax {
    background-attachment: fixed;
  }
}

.home-parallax {
  background-image: url("../img/parralax-section-bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-parallax {
  background-image: url("../img/parralax-about.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.story-top {
  width: 100%;
  height: 30rem;
  margin-bottom: 3rem;
  position: relative;
}

.story-top:hover .btn {
  opacity: 1;
  -webkit-transform: translateY(-1rem) translateX(-50%);
  -ms-transform: translateY(-1rem) translateX(-50%);
  transform: translateY(-1rem) translateX(-50%);
}

.story-top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.story-top .btn {
  width: 90%;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: opacity 250ms linear, -webkit-transform 250ms ease-in-out;
  transition: opacity 250ms linear, -webkit-transform 250ms ease-in-out;
  -o-transition: opacity 250ms linear, transform 250ms ease-in-out;
  transition: opacity 250ms linear, transform 250ms ease-in-out;
  transition: opacity 250ms linear, transform 250ms ease-in-out,
    -webkit-transform 250ms ease-in-out;
}

.story-link {
  font-size: 2rem;
  -webkit-transition: color 250ms;
  -o-transition: color 250ms;
  transition: color 250ms;
}

.story-link:hover {
  color: #a25f4b;
}

.story p {
  color: rgba(29, 31, 46, 0.7);
}

.story-text {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.story-date {
  font-size: 1.4rem;
  font-weight: bold;
}

@media screen and (min-width: 1024px) {
  .story {
    text-align: left;
  }
}

.call-to-action {
  padding: 8rem 2rem !important;
}

.call-to-action .section-title {
  color: #fff;
  opacity: 0.8;
  margin-bottom: 3rem;
}

.footer {
  padding-bottom: 6rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 4rem;
  text-align: center;
}

.footer .logo {
  display: inline-block;
  margin-bottom: 2rem;
}

.footer .logo img {
  width: 12rem;
}

.footer-title {
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: rgba(29, 31, 46, 0.7);
}

.footer-list li:not(:last-child) {
  margin-bottom: 1rem;
}

.footer-list a {
  display: inline-block;
  padding: 0.5rem;
  font-size: 1.4rem;
  color: rgba(29, 31, 46, 0.7);
  text-transform: capitalize;
  -webkit-transition: color;
  -o-transition: color;
  transition: color;
}

.footer-list a:hover {
  color: #a25f4b;
}

.footer .email-link {
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (min-width: 1024px) {
  .footer-content {
    text-align: left;
    grid-template-columns: 2fr 1fr 1fr 2fr;
  }
}

.about {
  position: relative;
}

.about .overlay-section .container {
  height: 100%;
  overflow: visible;
}

.about-img {
  width: 100%;
  height: 32rem;
  background-image: url("../img/about/about-head-pic.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.intro-about {
  margin-bottom: 4rem;
}

.intro-about-img {
  width: 100%;
  height: 38rem;
}

.intro-about-img-1 {
  background-image: url("../img/about/about-1.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.intro-about-img-2 {
  background-image: url("../img/about/about-2.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.intro-about-content {
  margin-top: 3rem;
}

.intro-about-content h3 {
  font-size: 2rem;
}

@media screen and (min-width: 1024px) {
  .intro-about:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .intro-about:nth-child(even) .intro-about-content {
    padding-left: 5rem;
    text-align: right;
  }
  .intro-about-content {
    padding-right: 5rem;
    text-align: left;
  }
}

.employee-img {
  margin-bottom: 2rem;
}

.employee-name {
  text-transform: capitalize;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.employee-pos {
  text-transform: uppercase;
  opacity: 0.6;
}

.contact-card-img {
  width: 100%;
  min-height: 20rem;
}

.contact-card-img-1 {
  background-image: url("../img/contact/contact-london-office.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-card-img-2 {
  background-image: url("../img/contact/contact-california-office.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-card-info {
  margin-top: 4rem;
}

.contact-card-info h4 {
  text-transform: uppercase;
  font-size: 1.4rem;
  color: rgba(29, 31, 46, 0.7);
}

.contact-card-info h2 {
  text-transform: capitalize;
  font-size: 1.8rem;
  font-weight: normal;
}

.contact-card-info ul .text {
  margin-bottom: 1rem;
}

.contact-form .form {
  border: 1px solid #f6f6f6;
  padding: 2rem;
}

.contact-form .form-content {
  width: 100%;
}

.contact-form .form .text-wrap {
  margin-bottom: 4rem;
}

.contact-form .form h4 {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: rgba(29, 31, 46, 0.7);
  margin-bottom: 2rem;
}

.contact-form .form h4 span {
  display: block;
  font-size: 2rem;
  margin-top: 1rem;
  font-weight: normal;
}

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

.contact-form .form-group {
  margin-bottom: 2rem;
}

.contact-form .form-group label {
  display: block;
  text-transform: uppercase;
  color: rgba(29, 31, 46, 0.7);
  margin-bottom: 1rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  border: 1px solid #dddddd;
  color: #1d1f2e;
  font-size: 1.3rem;
  font-weight: bold;
}

.contact-form .form-group input::-webkit-input-placeholder,
.contact-form .form-group textarea::-webkit-input-placeholder {
  color: #d0d0d0;
  font-weight: normal;
}

.contact-form .form-group input::-moz-placeholder,
.contact-form .form-group textarea::-moz-placeholder {
  color: #d0d0d0;
  font-weight: normal;
}

.contact-form .form-group input:-ms-input-placeholder,
.contact-form .form-group textarea:-ms-input-placeholder {
  color: #d0d0d0;
  font-weight: normal;
}

.contact-form .form-group input::-ms-input-placeholder,
.contact-form .form-group textarea::-ms-input-placeholder {
  color: #d0d0d0;
  font-weight: normal;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: #d0d0d0;
  font-weight: normal;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: 1px solid #1d1f2e;
}

.contact-form .form-group textarea {
  width: 100%;
  padding: 1rem 4rem;
  text-align: center;
}

.contact-form .form-group textarea::-webkit-input-placeholder {
  text-transform: uppercase;
  padding: 0 2rem;
  font-size: 1.4rem;
  text-align: center;
}

.contact-form .form-group textarea::-moz-placeholder {
  text-transform: uppercase;
  padding: 0 2rem;
  font-size: 1.4rem;
  text-align: center;
}

.contact-form .form-group textarea:-ms-input-placeholder {
  text-transform: uppercase;
  padding: 0 2rem;
  font-size: 1.4rem;
  text-align: center;
}

.contact-form .form-group textarea::-ms-input-placeholder {
  text-transform: uppercase;
  padding: 0 2rem;
  font-size: 1.4rem;
  text-align: center;
}

.contact-form .form-group textarea::placeholder {
  text-transform: uppercase;
  padding: 0 2rem;
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .contact-form {
    text-align: left;
  }
  .contact-form .flex {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .contact-form .flex-left {
    width: 70% !important;
    margin-right: 6rem;
  }
  .contact-form .form {
    padding: 2rem 4rem;
  }
  .contact-form .form-group input {
    width: 100%;
    padding: 1.5rem 2rem;
  }
}

.directory-item h4 {
  text-transform: uppercase;
  font-size: 1.2rem;
  color: rgba(29, 31, 46, 0.7);
}

.directory-item h2 {
  text-transform: capitalize;
  font-size: 1.6rem;
}
