.construct-method__hero {
  height: 453px;
  width: 100%;
  border-bottom: 3px solid var(--accent-color);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/construct-method/top.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.construct-method__hero h1 {
  letter-spacing: 6px;
  color: white;
  font-size: 38px;
  font-weight: bold;
  line-height: 60px;
}
@media (min-width: 768px) {
  .construct-method__hero h1 {
    font-size: 67px;
    font-weight: bold;
    line-height: 183px;
  }
}
.construct-method__intro {
  margin-top: 40px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .construct-method__intro {
    margin-top: 112px;
  }
}
.construct-method__intro__title {
  color: var(--accent-color);
  font-size: 22px;
  font-weight: bold;
  line-height: 35px;
}
@media (min-width: 768px) {
  .construct-method__intro__title {
    font-size: 38px;
    line-height: 60px;
  }
}
.construct-method__intro__description {
  margin-top: 48px;
  font-size: 16px;
  line-height: 36px;
}
@media (max-width: 767px) {
  .construct-method__intro__description {
    font-size: 18px;
  }
}
.construct-method__intro__images {
  margin-top: 16px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 1025px) {
  .construct-method__intro__images {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}
.construct-method__intro__image {
  width: 215px;
  height: 285px;
  padding: 40px 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  gap: 4px;
  background-color: gray;
}
@media (min-width: 768px) {
  .construct-method__intro__image {
    padding: 90px 0 70px;
  }
}
.construct-method__intro__image__name {
  font-size: 22px;
  line-height: 29px;
  font-weight: bold;
  color: white;
}
.construct-method__intro__image__name__sub {
  font-size: 16px;
  line-height: 27px;
  color: white;
  white-space: nowrap;
}
.construct-method__intro__image__anchor {
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 8px 20px 8px;
  color: white;
}
.construct-method__intro__image__anchor img {
  width: 24px;
  height: 14px;
}
.construct-method__intro__image__anchor:hover {
  animation: hoverAnimation 0.5s infinite alternate;
}
@keyframes hoverAnimation {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(4px);
  }
}
.construct-method__intro__image {
  background-position: 85% 90%;
  background-repeat: no-repeat;
}
.construct-method__intro__image:nth-child(1) {
  background-image: url("../images/construct-method/nav-earthdrill.webp");
}
.construct-method__intro__image:nth-child(2) {
  background-image: url("../images/construct-method/nav-neweagle1.webp");
}
.construct-method__intro__image:nth-child(3) {
  background-image: url("../images/construct-method/nav-neweagle2.webp");
}
.construct-method__intro__image:nth-child(4) {
  background-image: url("../images/construct-method/nav-augercasing.webp");
}
.construct-method__feature {
  padding: 112px 0;
  display: flex;
  justify-content: center;
  background: linear-gradient(180deg, #fff 0%, #fff 50%, #f8f6f2 50%, #f8f6f2 100%);
}
.construct-method__feature h3 {
  font-size: 25px;
  line-height: 60px;
  font-weight: bold;
  color: #121212;
}
.construct-method__feature__images {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}
@media (min-width: 1025px) {
  .construct-method__feature__images {
    justify-content: flex-start;
  }
}
.construct-method__feature__images div p {
  padding: 2px 0;
  background: #f8f6f2 0% 0% no-repeat padding-box;
  font-weight: bold;
  font-size: 16px;
  line-height: 36px;
}
@media (max-width: 767px) {
  .construct-method__feature__images div p {
    font-size: 18px;
  }
}
.construct-method__feature__images div div {
  width: 296px;
  height: 424px;
  overflow: hidden;
}
.construct-method__feature__images div div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.construct-method__feature__earth-drill {
  width: 100%;
  display: flex;
  gap: 24px;
  flex-direction: column;
  margin-top: 24px;
  padding: 25px;
  background-color: white;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 4px;
  text-align: left;
}
@media (min-width: 768px) {
  .construct-method__feature__earth-drill {
    width: 100%;
    gap: 24px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 1025px) {
  .construct-method__feature__earth-drill {
    width: 900px;
    gap: 50px;
    flex-direction: row;
  }
}
.construct-method__feature__earth-drill__image {
  display: block;
  width: 100%;
  height: auto;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .construct-method__feature__earth-drill__image {
    width: 425px;
    height: 336px;
  }
}
.construct-method__feature__earth-drill__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (min-width: 768px) {
  .construct-method__feature__earth-drill__image img {
    width: 425px;
    height: 336px;
  }
}
.construct-method__feature__earth-drill__description {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
}
.construct-method__feature__earth-drill__description h4 {
  font-weight: bold;
  font-size: 16px;
  line-height: 36px;
}
@media (max-width: 767px) {
  .construct-method__feature__earth-drill__description h4 {
    font-size: 18px;
  }
}
.construct-method__feature__earth-drill__description p {
  font-weight: medium;
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .construct-method__feature__earth-drill__description p {
    font-size: 16px;
    line-height: 26px;
  }
}
.construct-method__feature__description {
  margin-top: 48px;
}
.construct-method__feature__description h4 {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .construct-method__feature__description h4 {
    font-size: 20px;
    line-height: 26px;
  }
}
.construct-method__feature__description__card__bgNumber {
  position: absolute;
  right: 4px;
  bottom: 2px;
  font: normal normal normal 62px/31px Akshar;
  color: #efeae1;
  z-index: 0;
}
.construct-method__feature__description__earthdrillCards {
  margin-top: 24px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.construct-method__feature__description__earthdrillCard {
  position: relative;
  width: 282px;
  height: 103px;
  background-color: white;
  border-radius: 3px;
  padding: 16px 28px 16px 36px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .construct-method__feature__description__earthdrillCard {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .construct-method__feature__description__earthdrillCard {
    justify-content: space-between;
  }
}
.construct-method__feature__description__earthdrillCard p {
  z-index: 1;
  text-align: left;
}
.construct-method__feature__description__earthdrillCard img {
  display: block;
  flex-shrink: 0;
  width: 62px;
  height: 62px;
}
.construct-method__feature__description__newEagleExtensionCards {
  margin-top: 24px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.construct-method__feature__description__newEagleExtensionCard {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 210px;
  align-items: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  background-color: white;
  border-radius: 3px;
  padding: 20px 28px 30px 36px;
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .construct-method__feature__description__newEagleExtensionCard {
    font-size: 16px;
    line-height: 26px;
  }
}
.construct-method__feature__description__newEagleExtensionCard p {
  z-index: 1;
  white-space: nowrap;
  text-align: center;
}
.construct-method__feature__description__newEagleSeismicCards {
  margin-top: 24px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.construct-method__feature__description__newEagleSeismicCard {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 349px;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 3px;
  padding: 16px 28px 16px 28px;
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .construct-method__feature__description__newEagleSeismicCard {
    font-size: 16px;
    line-height: 26px;
  }
}
.construct-method__feature__description__newEagleSeismicCard p {
  white-space: nowrap;
  text-align: center;
  z-index: 1;
}
.construct-method__feature__description__augercasingCards {
  margin-top: 24px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.construct-method__feature__description__augercasingCard {
  position: relative;
  background-color: white;
  border-radius: 3px;
  padding: 16px 28px 16px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .construct-method__feature__description__augercasingCard {
    font-size: 16px;
    line-height: 26px;
  }
}
.construct-method__feature__description__augercasingCard p {
  z-index: 1;
  white-space: nowrap;
  text-align: center;
}
.construct-method__feature__description__augercasingCard img {
  display: block;
  width: 62px;
  height: 62px;
}
.construct-method__feature__description__augercasingCard:nth-child(1) {
  padding: 16px 8px;
  max-width: 582px;
}
@media (max-width: 767px) {
  .construct-method__feature__description__augercasingCard:nth-child(1) {
    max-width: 349px;
    width: 100%;
  }
}
.construct-method__feature__description__augercasingCard:nth-child(2) {
  flex-shrink: 0;
  padding: 16px 74px;
}
@media (max-width: 767px) {
  .construct-method__feature__description__augercasingCard:nth-child(2) {
    max-width: 349px;
    width: 100%;
  }
}