/* Theme Name:    victorsandbx
 * Theme URI:     http://victorsandbx.demo.supertusch.com
 * Description:   First sandbox child theme
 * Author:        Supertusch
 * Version:       1.0
 * Author URI:    http://supertusch.dk
 * Template:      basically-bootstrap-5
 * Version:       1.0.0
 * Domain Path:   /languages/
 * Text Domain:   slug */
/* Extra small devices (phones) */
@media (max-width: 479px) {
  /* Styles for xs */
}
/* Small devices (phones/tablets) */
@media (min-width: 480px) and (max-width: 767px) {
  /* Styles for sm */
}
/* Medium devices (tablets) */
@media (min-width: 768px) and (max-width: 991px) {
  /* Styles for md */
}
/* Large devices (desktops) */
@media (min-width: 992px) and (max-width: 1199px) {
  /* Styles for lg */
}
/* Extra large devices (large desktops) */
@media (min-width: 1200px) and (max-width: 1599px) {
  /* Styles for xl */
}
/* Extra extra large devices (very large screens) */
@media (min-width: 1600px) {
  /* Styles for xxl */
}
.body {
  color: #263238;
}

.hero {
  background-color: #F5F7FA;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 3rem 1rem;
}
.hero__text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: -moz-fit-content;
  height: fit-content;
  flex: 1;
}
.hero__text__headline {
  color: #263238;
}
.hero__text__headline--highlight {
  display: block;
  color: #4CAF4F;
}
.hero__text__cta-btn {
  background: #4CAF4F;
  color: #FFFFFF;
  padding: 1rem 2rem;
  border-radius: 0.25rem;
  border: none;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  transition: opacity 0.3s;
}
.hero__text__cta-btn:hover {
  opacity: 0.8;
  color: #FFFFFF;
}
.hero__illustration {
  flex: 0 0 30%;
  max-width: 33%;
}
.hero:has(> .hero__illustration--reverse) {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 600px) {
  .hero {
    flex-direction: column;
  }
}

.clients {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem;
}
.clients__headline, .clients__paragraph {
  text-align: center;
}
.clients__companies {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1rem;
  padding: 1rem;
  width: 100%;
}

.repeater {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem;
}
.repeater__headline, .repeater__paragraph {
  text-align: center;
}
.repeater__companies {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1rem;
  padding: 1rem;
  width: 100%;
}
.repeater__icon-cards {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 3rem 1rem;
}
.repeater__icon-cards__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  flex: 1 1 1;
  max-width: 300px;
}
.repeater__icon-cards__item > * {
  text-align: center;
}/*# sourceMappingURL=style.css.map */