h1 {
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 2px;
  font-size: 70px;
  font-family: var(--font-family-Bodoni);
  color: var(--baseLight-color);
}

h4 {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-color-1);
  font-family: var(--font-family-Bodoni);
}

/*********************
START: IMAGE SECTION
*********************/
.image-section {
  width: 100%;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(/assets/img/heroInner-contact.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--baseLight-color);
  position: relative;
  height: 600px;
}

.image-section::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

.custom-intro {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.custom-intro__title {
  margin-bottom: 0px;
  margin-bottom: 24px;
  text-align: center;
  line-height: 1.25;
}

/*********************
END: IMAGE SECTION
*********************/

/*********************
START: TESTIMONIALS
*********************/
.testimonials {
  padding-top: calc(2 / 4 * var(--global-section-padding)) !important;
  padding-bottom: calc(2 / 4 * var(--global-section-padding)) !important;
}

.testimonials ul {
  padding-inline: 128px;
  max-width: 1080px;
  margin-inline: auto;
}

.testimonials__item {
  margin-block-end: 24px;
  padding: 36px 0;
  font-size: 16px;
  color: var(--text-color-1);
}

.testimonials .name__position {
  display: flex;
  align-items: center;
  margin-block-end: 24px;
}

.testimonials .author__image {
  min-width: 96px;
  min-height: 96px;
  max-width: 96px;
  max-height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: #e7e7e7;
  margin-right: 24px;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.testimonials .author__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-width: 96px;
  min-height: 96px;
  max-width: 96px;
  max-height: 96px;
}

.author__name {
  font-size: 43px;
  line-height: 56px;
  margin-bottom: 0;
  font-family: var(--font-family-Bodoni);
  font-weight: 400;
  text-transform: uppercase;
}

/*********************
END: TESTIMONIALS
*********************/

/*********************
START: WORK WITH US
*********************/
.work-with-us {
  height: 100vh;
  position: relative;
  background-image: url(../img/work-with-us-img.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-background-position: center;
  background-position: center;
}

.work-with-us::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

.work-with-us::after {
  position: absolute;
  /*     content: ""; */
  content: unset;
  width: 50%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: 600px;
  -webkit-background-size: 600px;
  background-position: center;
  background-image: url("../img/vector-logo.jpg");
  background-repeat: no-repeat;
}

.work-with-us__content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--baseLight-color);
  width: 100%;
  max-width: 750px;
  text-align: center;
  padding: 50px;
}

.work-with-us__content > h2 {
  margin: 0 0 30px;
}

.work-with-us__content > p {
  margin: 0 0 65px;
}

/*********************
END: WORK WITH US
*********************/

/*********************
START: MEDIA
*********************/
@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) {
  .work-with-us::after {
    width: 65%;
  }
}

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

@media screen and (max-width: 992px) {
  .testimonials ul {
    padding-inline: 40px;
  }

  .work-with-us::after {
    width: 75%;
    -webkit-background-size: 380px;
    background-size: 380px;
  }
}

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

  .testimonials ul {
    padding-inline: 24px;
  }

  .author__name {
    font-size: 32px;
    line-height: 44px;
    letter-spacing: 0.75px;
  }

  .testimonials .author__image {
    min-width: 72px;
    min-height: 72px;
    max-width: 72px;
    max-height: 72px;
    margin-right: 16px;
  }

  .work-with-us::after {
    width: 85%;
  }

  .work-with-us__content {
    padding-inline: 25px;
  }
}

@media screen and (max-width: 576px) {
  .work-with-us::after {
    width: 100%;
  }
}

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

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

/*********************
END: MEDIA
*********************/
