h1 {
  text-transform: uppercase;
  font-weight: 200;
  letter-spacing: 2px;
  font-size: 70px;
}

/*********************
START: CONTACT
*********************/
.image-section {
  width: 100%;
  height: 80vh;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  background-color: var(--baseLight-color);
}

.custom-intro {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-intro__title {
  margin-bottom: 0px;
  font-weight: 400;
  margin-bottom: 24px;
  z-index: 1;
  text-align: center;
  color: var(--baseLight-color);
  font-family: var(--font-family-Bodoni);
  line-height: 1.25;
}

/*********************
END: CONTACT
*********************/

/*********************
START: CONTACT FORM
*********************/
.contact--form {
  padding-block: 80px;
  background-color: var(--bg-color);
}

.custom-form__header {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  text-align: center;
  color: var(--text-color-1);
  max-width: 700px !important;
}

.custom-form__heading {
  margin-bottom: 24px;
  text-transform: uppercase;
  font-family: var(--font-family-Bodoni);
}

.custom-form__lead {
  color: var(--text-color-1);
}

.custom-form__lead > p:last-child {
  text-transform: uppercase;
}

.elem-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #d8d8d8;
  padding: 5rem 3rem;
  row-gap: 2rem;
}

.elem-col {
  width: 48%;
}

.custom-form__img-block {
  width: 100%;
}

.custom-form__img-block img {
  width: 100%;
  padding: 3rem;
  filter: brightness(0.3);
}

.custom-form__row .elem-col form > p {
  margin-top: 1rem;
}

.custom-form__row .elem-col form label {
  font-weight: 700;
  color: var(--text-color-1);
}

.custom-form__row .elem-col form textarea {
  border: 1px solid #999;
  margin-top: 0.75rem;
  height: 150px;
}

.custom-form__row .elem-col form input[type="submit"] {
  text-transform: uppercase;
}

.custom-form__row .elem-col form .wpcf7-list-item {
  margin-block: 1rem;
  font-size: var(--text-xs);
  font-weight: 300;
  color: var(--text-color-1);
  text-align: justify;
}
/*********************
END: CONTACT FORM
*********************/

/*********************
START: GALLERY
*********************/
.gallery {
  background-color: var(--bg-color);
  padding-block-end: 30px;
}

.gallery ul {
  display: flex;
  justify-content: center;
}

.gallery ul li {
  margin: 16px;
  flex-basis: calc(33.33% - 32px);
  margin-bottom: 50px;
}

.gallery ul li .gallery-card {
  position: relative;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  height: 360px;
  display: flex;
  align-items: flex-end;
  padding: 20px 15px;
  -webkit-text-decoration: none;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
}

.gallery ul li .gallery-card:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 76.6%, #000000);
  opacity: 0.6;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  z-index: 1;
}

.gallery ul li .gallery-card:hover:before {
  background-color: #000;
}

.gallery ul li .gallery-card:after {
  content: "";
  width: 0;
  padding-top: 121.5%;
}

.gallery ul li .gallery-card:hover .gallery-card__title {
  -webkit-transform: translateY(-51px);
  -moz-transform: translateY(-51px);
  -ms-transform: translateY(-51px);
  transform: translateY(-51px);
}

.gallery ul li .gallery-card .gallery-card__title {
  text-align: center;
  text-transform: uppercase !important;
  position: relative;
  width: 100%;
  margin-bottom: 0;
  color: #fff;
  letter-spacing: 0;
  text-shadow: none;
  z-index: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: none;
}

.gallery ul li .gallery-card__preview {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery ul li .gallery-card .gallery-card__preview > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.75s ease-out;
  transition: transform 0.75s ease-out;
  border: 0;
  max-width: 100%;
  page-break-inside: avoid;
  vertical-align: middle;
}

.gallery ul li .gallery-card:hover .gallery-card__preview img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

/*********************
END: GALLERY
*********************/

@media screen and (min-width: 1440px) {
}

@media screen and (min-width: 1320px) and (max-width: 1439px) {
}

@media screen and (max-width: 1319px) {
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 992px) {
}

@media screen and (max-width: 768px) {
  .custom-intro__title {
    font-size: 32px;
  }

  .elem-row {
    flex-direction: column;
  }

  .elem-col {
    width: 100%;
  }

  .elem-col:first-child {
    margin-bottom: 30px;
  }

  .gallery ul {
    flex-direction: column;
  }

  .gallery ul li {
    margin: 10px;
    flex-basis: calc(100% - 20px);
  }

  .gallery ul li .gallery-card {
    position: relative;
    width: 100%;
    padding-right: 40px;
    padding-left: 40px;
    height: 310px;
  }
}

@media screen and (max-width: 576px) {
}

@media screen and (max-width: 425px) {
}

@media screen and (max-width: 375px) {
}
