/* GLOBAL STYLES *****************************************/

p {
  color: #7f7c7c;
  font-family: 'gotham', sans-serif;
}

h1 {
  text-transform: uppercase;
  color: #75ada1;
  font-family: 'gotham', sans-serif;
  letter-spacing: 1px;
  font-size: 25px;
}

h2 {
  text-transform: uppercase;
  color: #75ada1;
  font-family: 'gotham', sans-serif;
  letter-spacing: 1px;
  font-size: 18px;
}

h3 {
  color: #75ada1;
  text-transform: capitalize;
  font-family: 'gotham', sans-serif;
  font-weight: medium;
  letter-spacing: 1px;
  font-size: 18px;
}

h4 {
  color: white;
  font-size: 15px;
  text-transform: uppercase;
}

span {
  font-family: 'gotham', sans-serif;
  /* font-weight: medium; */
  color: #75ada1;
  text-transform: capitalize;
}

ul {
  list-style-type: none;
  padding-left: 15px;
}

ul li {
  font-family: 'gotham', sans-serif;
  color: #7f7c7c;
}

.quote {
  font-style: italic;
}

.bold p {
  color: #585656;
}

.row {
  margin: 0;
}

.no-gutter>[class^='col-'] {
  padding-left: 0;
  padding-right: 0;
}

.navbar-brand img {
  /* margin-bottom: 15px; */
  width: 430px;
  height: 36px;
}

.absolute nav {
  position: absolute;
}

.navbar {
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  width: 100%;
  z-index: 9;
}

.navbar-expand-lg .navbar-nav {
  margin-left: auto;
}

.navbar-dark .navbar-toggler-icon {
  background-image: url('img/dehaze.png');
}

.navbar-light .navbar-nav .nav-link {
  color: grey;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: lightblue;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  /* background-color: rgba(0, 0, 0, 0.8); */
  top: 45px;
}

.nav-item :first-child {
  margin-top: 5px;
}

.navbar-nav {
  margin-top: auto;
}

.navbar-collapse {
  margin-top: 22px;
}

nav a {
  font-family: 'gotham', sans-serif;
  font-size: 10px;
  color: grey;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0;
}

nav a:hover {
  color: lightblue;
}

.nav-link {
  padding: 0px;
}

.dropdown-menu {
  margin-top: -20px;
}

/* CAROUSEL */

.carousel {
  height: calc(100vh);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-control-prev-icon {
  background-image: url('img/prev-button.png');
  width: 35px;
  height: 35px;
}

.carousel-control-next-icon {
  background-image: url('img/next-button.png');
  width: 35px;
  height: 35px;
}

/* FONTS */

@font-face {
  font-family: gothamMedium;
  src: url(fonts/gotham-medium.otf);
  font-weight: medium;
}

@font-face {
  font-family: gotham;
  src: url(fonts/gotham-mediumita.otf);
  font-weight: medium;
  font-style: italic;
}

@font-face {
  font-family: gotham;
  src: url(fonts/gotham-light.otf);
  font-weight: lighter;
}

@font-face {
  font-family: gotham;
  src: url(fonts/gotham-lightita.otf);
  font-weight: lighter;
  font-style: italic;
}

@font-face {
  font-family: gothamBook;
  src: url(fonts/gotham-book.otf);
  /* font-weight: book; */
}

@font-face {
  font-family: gothamBook;
  src: url(fonts/gotham-bookita.otf);
  /* font-weight: book; */
  font-style: italic;
}

@font-face {
  font-family: gotham;
  src: url(fonts/gotham-bold.otf);
  font-weight: bold;
}

/* PAGES *****************************************/

/* INDEX */

/* Ken Burns */

.slideshow {
  position: absolute;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slideshow-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background: no-repeat 50% 50%;
  background-size: cover;
  -webkit-animation-name: kenburns;
  animation-name: kenburns;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-duration: 30s;
  animation-duration: 30s;
  opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.slideshow-image:nth-child(1) {
  -webkit-animation-name: kenburns-1;
  animation-name: kenburns-1;
  z-index: 3;
}

.slideshow-image:nth-child(2) {
  -webkit-animation-name: kenburns-2;
  animation-name: kenburns-2;
  z-index: 2;
}

.slideshow-image:nth-child(3) {
  -webkit-animation-name: kenburns-3;
  animation-name: kenburns-3;
  z-index: 1;
}

.slideshow-image:nth-child(4) {
  -webkit-animation-name: kenburns-4;
  animation-name: kenburns-4;
  z-index: 0;
}

@-webkit-keyframes kenburns-1 {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  1.5625% {
    opacity: 1;
  }
  23.4375% {
    opacity: 1;
  }
  26.5625% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  98.4375% {
    opacity: 0;
    -webkit-transform: scale(1.2117647059);
    transform: scale(1.2117647059);
  }
  100% {
    opacity: 1;
  }
}

@keyframes kenburns-1 {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  1.5625% {
    opacity: 1;
  }
  23.4375% {
    opacity: 1;
  }
  26.5625% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  98.4375% {
    opacity: 0;
    -webkit-transform: scale(1.2117647059);
    transform: scale(1.2117647059);
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes kenburns-2 {
  23.4375% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  26.5625% {
    opacity: 1;
  }
  48.4375% {
    opacity: 1;
  }
  51.5625% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes kenburns-2 {
  23.4375% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  26.5625% {
    opacity: 1;
  }
  48.4375% {
    opacity: 1;
  }
  51.5625% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@-webkit-keyframes kenburns-3 {
  48.4375% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  51.5625% {
    opacity: 1;
  }
  73.4375% {
    opacity: 1;
  }
  76.5625% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes kenburns-3 {
  48.4375% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  51.5625% {
    opacity: 1;
  }
  73.4375% {
    opacity: 1;
  }
  76.5625% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@-webkit-keyframes kenburns-4 {
  73.4375% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  76.5625% {
    opacity: 1;
  }
  98.4375% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes kenburns-4 {
  73.4375% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  76.5625% {
    opacity: 1;
  }
  98.4375% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* ABOUT */

.about-img1 img {
  max-width: 290px;
  height: auto;
  margin-right: 15px;
  margin-bottom: 15px;
}

.about-img2 img {
  max-width: 150px;
  height: auto;
  margin-left: 15px;
  margin-bottom: 15px;
}

/* PRESS */

.press img {
  margin: auto;
  padding: 15px 0;
  width: 100%;
}

/* SERVICES */

.services {
  margin-bottom: 40px;
}

.services img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
}

.services h1 {
  margin-bottom: 20px;
}

.services h2 {
  height: 25px;
}

/* ABOUT */

.about .navbar,
.services .navbar {
  position: relative;
}

.about {
  margin-top: 25px;
}

/* AWARDS */

.awards h1 {
  margin-bottom: 20px;
}

/* TESTIMONIALS */

.testimonials img {
  margin-right: 22px;
}

/* CONTACT */

.contact a {
  font-family: 'gotham', sans-serif;
  color: #7f7c7c;
}

.contact a:hover {
  text-decoration: none;
  color: #75ada1;
}

.contact {
  margin-top: 30px;
}

iframe {
  max-width: 100%;
  width: 100%;
  margin-bottom: 20px;
}

svg {
  width: 30px;
  height: 30px;
  fill: #7f7c7c;
}

svg:hover {
  fill: #75ada1;
}

/* KITCHENS */

.kitchens img {
  width: 319.98px;
  height: 600px;
  object-fit: cover;
  margin-bottom: 20px;
}

/* GALLERY */

.gallery img {
  max-width: 100%;
  width: 100%;
}

.wrapper {
  position: relative;
  margin-bottom: 30px;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.65);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 0.5s ease;
  text-align: center;
}

.wrapper:hover .overlay {
  height: 100%;
}

.overlay p {
  text-transform: uppercase;
  margin-top: 150px;
  color: white;
  font-size: 20px;
}

/* EXTRA SMALL */

@media screen and (min-width: 320px) {
  nav {
    margin-bottom: 25px;
  }
  .navbar-brand img {
    /* width: 350px;
    height: 40px; */
    margin-bottom: 10px;
  }
}

/* SMALL */

@media screen and (min-width: 576px) {
  .container {
    padding: 0 0;
  }
  .about-img1 img {
    max-width: 385px;
    margin-bottom: 0;
  }
}

/* MEDIUM */

@media screen and (min-width: 768px) {
  .navbar-brand img {
    margin-bottom: 0;
  }
}

/* LARGE */

/* @media screen and (min-width: 992px) {} */

/* EXTRA LARGE */

/* @media screen and (min-width: 1200px) {} */
