.lh-1 {
  line-height: 1.5;
}
.f-14 {
  font-size: 14px;
}
.f-18 {
  font-size: 18px;
}
.f-12{
  font-size: 12px;
}
.f-80{
  font-size: 80px;
  font-weight: 500;
}

.width-680{
  width: 680px;
}
.width-160{
  width: 160px;
}


.w-600{
  font-weight: 600;
}

.no-border{
  border-bottom: none !important;
}
.padding{
  padding: 25px 45px;
}

.mt-20{
  margin-top: 20px !important;
}
.mt-80{
  margin: 80px 0 0 0;
}

.mb-60{
  margin: 0 0 60px 0;
}
.mb-120{
  margin-bottom: 120px;
}
.mb-30{
  margin-bottom: 30px;
}

.mtb-50 {
  margin: 50px 0;
}
.mt-40{
  margin: 40px 0 0 0;
}
.mtb-30 {
  margin: 30px 0;
}
.mtb-20 {
  margin: 20px 0;
}
.mtb-10 {
  margin: 10px 0;
}

.inline-block{
  display: inline-block; 
}

.row-reverse{
  display: flex;
  flex-direction: row-reverse;
}

.height-100p {
  height: 100%;
  object-position: -518px;
}

.max-width-680{
  max-width: 680px !important;
}

.max-width-80{
  max-width: 80px !important;
}

.last-item {
  grid-column: 2 / 3;
  object-position: -280px;
}

.tall {
  grid-row: span 2;
}

.lime {
  background-color: #D2F705;
  color: #000000;
}
.lime:hover {
    background-color: #a2be00;
}

.grey{
  background-color: #7E9296;
  color: #FFFFFF;
}
.grey:hover{
  background-color: #657679;
}

.object__pos--right {
  object-position: right center;
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
}
.hover-underline-animation::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 10px;
  left: 0;
  background-color: #d0f600;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.hover-underline-animation-black {
  display: inline-block;
  position: relative;
}
.hover-underline-animation-black::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0px;
  left: 0;
  background-color: #0C0C0C;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.hover-underline-animation-black:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}