::selection {
  background: var(--radical-red);
  color: var(--white);
}

.container {
  padding-inline: 15px;
}

.shape {
  display: none;
}

.section {
  padding-block: var(--section-padding);
}

.radical_highlight {
  color: var(--radical-red);
  font-size: var(--fs-8);
  font-family: var(--ff-recoleta);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--ff-recoleta);
  line-height: 1.2;
}

.h1 {
  font-size: var(--fs-1);
  font-weight: var(--fw-400);
}

.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: var(--fw-300);
}

.h2 {
  font-size: var(--fs-2);
}

.h3 {
  font-size: var(--fs-3);
}
.h4 {
  font-size: var(--fs-4);
}
.h5 {
  font-size: var(--fs-5);
}
.h6 {
  font-size: var(--fs-6);
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--jet-1);
  overflow: hidden;
}

.has-before {
  position: relative;
  z-index: 1;
}

.has-before::before {
  content: "";
  position: absolute;
}

.img-holder.has-before::before {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: var(--gradient-1);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-icon {
  background-color: var(--bg-color, var(--white));
  border-radius: var(--border-radius, var(--radius-circle));
  display: grid;
  place-content: center;
  transition: var(--transition-2);
}

.btn-icon path {
  transition: var(--transition-2);
}

.btn-icon:is(:hover, :focus-visible) {
  background-color: var(--hover-bg-color, var(--white));
}

.btn-icon:is(:hover, :focus-visible) path {
  stroke: var(--hover-text-color, var(--black));
}

.section-subtitle {
  color: var(--white_a25);
  font-size: var(--fs-7);
  text-transform: uppercase;
  letter-spacing: 3.5px;
}

[data-reveal] {
  transform: translateY(50px);
  opacity: 0;
  transition: var(--transition-3);
}

[data-reveal="left"] {
  transform: translate(-50px, 0);
}
[data-reveal="right"] {
  transform: translate(50px, 0);
}

[data-reveal].revealed {
  transform: translate(0, 0);
  opacity: 1;
}

/* Responsive Styles for screens larger than 575px - START */
@media (min-width: 575px) {
  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }

  :is(.header, .gallery, .technologies) .container {
    max-width: unset;
  }
}
/* Responsive Styles for screens larger than 575px - END */

/* Responsive Styles for screens larger than 768px - START */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
/* Responsive Styles for screens larger than 768px - END */

/* Responsive Styles for screens larger than 992px - START */
@media (min-width: 992px) {
  .section {
    position: relative;
  }

  .container {
    max-width: 960px;
  }

  .shape {
    display: block;
    position: absolute;
  }
}
/* Responsive Styles for screens larger than 992px - END */

/* Responsive Styles for screens larger than 1200px - START */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
/* Responsive Styles for screens larger than 1200px - END */

/* Responsive Styles for screens larger than 1400px - START */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  :is(.header, .gallery, .technologies) .container {
    max-width: 1580px;
  }
}
/* Responsive Styles for screens larger than 1400px - END */
