/* */

.text-white {
  color: var(--color-white) !important;
}
.text-red {
  color: var(--color-red) !important;
}
.text-grey-dark,
.text-dark-grey {
  color: var(--color-grey-dark) !important;
}
.text-grey-black {
  color: var(--color-grey-black) !important;
}

/* */

.bg-red {
  background-color: var(--color-red) !important;
}
.bg-grey-light {
  background-color: var(--color-grey-light) !important;
}
.bg-light-grey {
  background-color: var(--color-grey-light) !important;
}
.bg-grey-black {
  background-color: var(--color-grey-black) !important;
}

/* */

.object-fit-contain {
  object-fit: contain !important;
}
.object-fit-cover {
  object-fit: cover !important;
}

.fw-normal {
  font-weight: normal;
}

.eq-box {
  position: relative;
  width: 100%;
  display: block;
  padding-top: 100%;
}
.eq-box.eq-box-25 {
  padding-top: 25%;
}
.eq-box.eq-box-50 {
  padding-top: 50%;
}
.eq-box.eq-box-66 {
  padding-top: 66%;
}
.eq-box.eq-box-75 {
  padding-top: 75%;
}
.eq-box > .body {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

img.i {
  margin-right: 1rem;
  margin-top: -7px;
}

.bg-cover {
  background-size: cover;
  background-position: center;
}

.bg-cover.bg-stats {
  background-image: url("/assets/images/bg-stats.jpg");
}

.border-bottom-red {
  border-bottom: 3px solid var(--color-red);
}

.border-top-red {
  border-top: 3px solid var(--color-red);
}

.border-radius-0 {
  border-radius: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.icon-linkedin {
  padding-left: 5px;
  transform: translateY(-5px);
  display: inline-block;
}

.portfolio-modal-image {
  max-height: 120px;
  max-width: 100%;
}

.modal-portfolio-close {
  position: absolute;
  right: 6px;
  top: 6px;
  /* background-color: white; */
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.crop-circle {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
}