body {
  margin: 0;
  padding: 0;
  /* overflow: hidden; */
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
button,
span,
input,
textarea {
  font-family: 'Montserrat', sans-serif;
}

img {
  max-width: 100%;
}

.hidden {
  display: none;
}

div.gallery__container {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
}

div.gallery__image_container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
}

/* ------------------------------------------------ */
/* ---------------- Gallery images ---------------- */
/* ------------------------------------------------ */
div.gallery__image {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
}

div.gallery__image.active {
  display: block;
  z-index: 1;
}

div.gallery__image.one {
  background-image: url('assets/_final_images/image0.jpg');
}

div.gallery__image.two {
  background-image: url('assets/_final_images/melina_image_2-80.jpg');
}

div.gallery__image.three {
  background-image: url('assets/_final_images/melina_image_3-80.jpg');
}

div.gallery__image.four {
  background-image: url('assets/_final_images/melina_image_4-80.jpg');
}

div.gallery__image.five {
  background-image: url('assets/_final_images/melina_image_5-80.jpg');
}

div.gallery__image.six {
  background-image: url('assets/_final_images/melina_image_6-80.jpg');
}

div.gallery__image.seven {
  background-image: url('assets/_final_images/melina_image_7-80.jpg');
}

div.gallery__image.eight {
  background-image: url('assets/_final_images/melina_image_8-80.jpg');
}

/* ------------------------------------------------ */
/* --------------- Gallery content ---------------- */
/* ------------------------------------------------ */
div.gallery__image_container::before,
div.gallery__image_container::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
}

div.gallery__image_container::before {
  background: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

div.gallery__image_container::after {
  background-color: #000;
  opacity: 0.4;
}

div.gallery__content_container {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
  z-index: 10;
}

button.galley__contact_button {
  cursor: pointer;
  color: #FFF;
  background: none;
  border: none;
  font-weight: 700;
  font-size: 18px;
  position: relative;
  z-index: 10;
}

button.galley__contact_button.our_work {
  color: #000;
}

div.gallery__contact_button_container {
  width: 100%;
  position: absolute;
  bottom: 50px;
  text-align: center;
  z-index: 10;
}

div.gallery__contact_button_container.our_work {
  bottom: unset;
  top: 50px;
}

div.gallery__contact_button_container.our_work::before {
  display: none;
}

div.gallery__contact_button_container::before {
  position: absolute;
  bottom: 100px;
  border-radius: 50%;
  left: calc((100% - 8px) / 2);
  background: #fff;
  width: 8px;
  height: 8px;
  -webkit-animation: bounce 0.5s;
  animation: bounce 0.5s;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0.05, 1, 0.5);
  animation-timing-function: cubic-bezier(0.5, 0.05, 1, 0.5);
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  content: "";
}

@-webkit-keyframes bounce {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, 50px, 0);
  }
}

@keyframes bounce {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, 50px, 0);
  }
}

/* ------------------------------------------------ */
/* --------------- Contact content ---------------- */
/* ------------------------------------------------ */
div.contact__container {
  width: 100%;
  height: 100vh;
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

div.contact__content_container {
  display: flex;
  align-items: flex-start;
  margin: 0 auto;
  padding: 0 15px;
}

div.contact__content {
  width: 50%;
  padding-right: 100px;
  box-sizing: border-box;
}

div.contact__content p {
  font-weight: 100;
}

div.contact__social_container a {
  text-decoration: none;
  display: inline-block;
}

div.contact__social_container a:first-of-type {
  margin-right: 15px;
}

div.contact__social_container img {
  max-width: 18px;
  opacity: 0.3;
  transition: 0.2s;
}

div.contact__social_container img:hover {
  opacity: 1;
}

img.facebook_icon {
  height: 18px;
}

img.instagram_icon {
  width: 20px;
}

p.contact__address {
  margin-top: 100px;
}

/* ------------------------------------------------ */
/* ----------------- Contact form ----------------- */
/* ------------------------------------------------ */
div.contact__contact {
  width: 100%;
  max-width: 400px;
}

form.form {
  width: 100%;
}

div.form__form_item_wrapper {
  width: 100%;
  margin-bottom: 30px;
}

label.form__label {
  display: block;
  margin-bottom: 10px;
  font-weight: 100;
}

.form__input {
  width: 100%;
  padding: 10px;
  background: none;
  border: none;
  height: 46px;
  border-bottom: 1px solid #000;
  color: #000;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

textarea.form__input {
  min-height: 110px;
}

input.form__input:focus {
  outline: 0.5px solid #000;
}

textarea.form__input:focus {
  outline: 0.5px solid #000;
}

button.contact__form_submit {
  color: #000;
  background: none;
  border: 1px solid #000;
  border-radius: 3px;
  padding: 15px 45px;
  cursor: pointer;
  transition: 0.2s;
}

button.contact__form_submit:hover {
  background-color: #000;
  color: #FFF;
}

/* ------------------------------------------------ */
/* ----------------- Media Queries ---------------- */
/* ------------------------------------------------ */
@media only screen and (max-width: 768px) {
  div.gallery__content_container {
    top: -100px;
  }

  div.gallery__contact_button_container.our_work {
    bottom: unset;
    top: 100px;
  }

  div.gallery__contact_button_container {
    bottom: 120px;
  }

  div.contact__content_container {
    flex-direction: column;
  }

  div.contact__container {
    height: auto;
    padding-top: 200px;
    padding-bottom: 100px;
  }

  div.contact__content {
    width: 100%;
    padding: 0;
  }

  div.contact__contact {
    max-width: unset;
  }

  p.contact__address {
    margin-top: 30px;
    margin-bottom: 50px;
  }

  button.contact__form_submit {
    width: 100%;
  }
}