:root { 
  --yellow: #F9F871;
  --gray: #AFAFA3;
  --brown-gray: #CCC1A7;
  --red: #FA9054;

  --gradient__gray-yellow-gray: linear-gradient(90deg, rgba(249, 248, 113, 0.20) 0%, #f9f971c5 46.88%, rgba(249, 248, 113, 0.20) 100%);
  --gradient__yellow-gray: linear-gradient(90deg, #f9f971 0%, rgba(249, 248, 113, 0.20) 100%);
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

section {
  padding-top: 160px;
  padding-bottom: 160px;
  position: relative;
}

.content {
  position: relative;
  margin: 0 auto;
  max-width: 1696px;
  width: calc(100% - 32px);
}

.mb-40 {
  margin-bottom: 40px;
}

h2.section-title {
  font-size: 92px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 80px;
}

h3.section-subtitle {
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 80px;
}

p.target-subtitle {
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  padding-bottom: 40px;
}

p.target-subtitle2 {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  padding-bottom: 32px;
}

.target-image {
  height: 360px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 40px;
}

p.under-border {
  padding-top: 8px;
  position: relative;
}

p.under-border::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  left: 0;
  top: 0;
  background-image: var(--gradient__yellow-gray);
}

.section-number {
  font-size: 92px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  position: relative;
}

.section-number::before {
  content: '';
  position: absolute;
  width: 96px;
  height: 96px;
  top: -25px;
  left: -70px;
  background-image: url(../img/shaded-gear.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

._yellow-text {
  color: var(--yellow);
}

._gray-text {
  color: var(--gray);
}

.side-text {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-transform: uppercase;
}

.trans {
  transition: .28s ease-in-out;
}

.trans-slow {
  transition: .36s ease-in-out;
}

.flex {
  display: flex;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-justify-between {
  display: flex;
  justify-content: space-between;
}

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

.flex-align-center {
  display: flex;
  align-items: center;
}

.flex-align-start {
  display: flex;
  align-items: flex-start;
}

.flex-stretch {
  display: flex;
  align-items: stretch;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

a {
  text-decoration: none;
  color: black;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  color: black;
  padding: 24px 48px;
  background-color: var(--yellow);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}

.button:hover {
  background-color: white;
}

.button._empty {
  background-color: transparent;
  color: var(--yellow);
  border-bottom: 1px solid var(--yellow);
}

.button._empty:hover {
  color: white;
  border-color: white;
}

.gradient-border-top,
.gradient-border-bottom {
  position: relative;
}

.gradient-border-top::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  top: 1px;
  background-image: var(--gradient__gray-yellow-gray);
  z-index: 5;
}

.gradient-border-bottom::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-image: var(--gradient__gray-yellow-gray);
  z-index: 5;
}


@media screen and (max-width: 1511px) {
  h2.section-title {
    font-size: 68px;
  }
  .section-number {
    font-size: 68px;
  }
  h3.section-subtitle {
    font-size: 30px;
  }
  .target-image {
    height: 220px;
  }
}

@media screen and (max-width: 1199px) {
  h2.section-title {
    font-size: 42px;
    margin-bottom: 40px;
  }
  .section-number {
    font-size: 42px;
  }
  h3.section-subtitle {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .target-image {
    height: 280px;
    margin-bottom: 24px;
  }
  .side-text {
    margin-bottom: 40px;
  }
  .section-number::before {
    top: unset;
    bottom: 10px;
    left: -10px;
  }
}

@media screen and (max-width: 767px) {
  .button {
    display: flex;
    font-size: 16px;
  }
  h2.section-title {
    font-size: 28px;
  }
  .section-number {
    font-size: 28px;
  }
  .side-text {
    font-size: 18px;
  }
  h3.section-subtitle {
    font-size: 24px;
    margin-bottom: 0;
  }
  .target-image {
    height: 200px;
    margin-bottom: 24px;
  }
  .section-number::before {
    bottom: -10px;
    left: -20px;
  }
  p.target-subtitle {
    font-size: 18px;
  }
  p.target-subtitle2 {
    font-size: 16px;
  }
}

@media screen and (max-width: 550px) {
  h2.section-title {
    padding-left: 16px;
  }
}