body {
  background-color: var(--whitesmoke-light);
}

h2 {
  font-size: 32px;
}
h5 {
  font-size: 20px;
  font-family: var(--heading-family);
}
/****************************** hero section *****************************/

.hero {
  background: url(../media/bg/new-homepage/hero-background.svg);
  background-position: bottom center;
  background-blend-mode: multiply;
}

.hero .form-control {
  padding: 18px 24px;
  max-width: 522px;
}
.hero ul li {
  list-style: none;
}
.hero ul img {
  max-width: 15px;
  max-height: 15px;
  margin-right: 7px;
}
.hero .weak-text {
  color: var(--medium-grey);
}

/******************************** Logo Cloud **********************************/
.logo-banner {
  background-color: white;
  justify-content: space-between;
  align-items: center;
}
.logo-banner img {
  max-width: 200px;
  max-height: 50px;
  transition: ease 0.2s;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * 8));
  }
}
@keyframes scroll-reverse {
  0% {
    transform: translateX(calc(-200px * 8));
  }
  100% {
    transform: translateX(0);
  }
}

.logo-slider {
  overflow: hidden;
  position: relative;
}

.logo-slider::before,
.logo-slider::after {
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100%;
  position: absolute;
  width: 40px;
  z-index: 2;
}

.dark-bg .logo-slider::before,
.dark-bg .logo-slider::after {
  background: linear-gradient(to right, rgba(21, 22, 27, 1) 0%, rgb(21, 22, 27, 0) 100%);
}
.logo-slider::after {
  right: -5px;
  top: 0;
  transform: rotateZ(180deg);
}

.logo-slider::before {
  left: 0px;
  top: 0;
}

.logo-slider-track {
  animation: scroll 50s linear infinite;
  display: flex;
  width: calc(200px * 16);
}

.slider-right .logo-slider-track {
  animation: scroll-reverse 50s linear infinite;
}

@media screen and (min-width: 800px) {
  .logo-banner {
    padding: 2rem 0;
  }

  .logo-banner > :first-child {
    padding: 0;
  }
}

/****************************** contract opportunities *****************************/
.contract-opportunities .card-wrapper {
  gap: 20px;
  width: fit-content;
  justify-content: center;
}

.contract-opportunity-card {
  width: 312px;
  max-width: 90vw;
  height: 100%;
  padding: 16px 24px 24px;
  border-radius: 10px;
  border: 1px solid var(--light-grey);
  box-shadow: var(--box-shadow-1);
}

.contract-opportunity-card .live {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--light-grey);
  width: 100%;
  display: block;
}

.contract-opportunity-card .live::before {
  content: "";
  display: inline-block;
  margin-right: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #89ce7e;
  border: 1px solid #57b260;
}

.contract-opportunity-card h5 {
  margin-bottom: 24px;
}

.contract-opportunity-card .link {
  color: var(--blue);
  display: block;
  margin-top: 16px;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
}

@media screen and (min-width: 1440px) {
  .contract-opportunities .card-wrapper {
    gap: 36px;
    justify-content: space-between;
  }
}

/****************************** button group *****************************/

.button-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.button-group button {
  min-width: 214px;
  border: 1px solid #ffffff;
  filter: drop-shadow(0px 8px 8px rgba(144, 126, 232, 0.2));
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  gap: 10px;
  background-color: transparent;
  color: white;
  font-weight: 700;
}

@media screen and (max-width: 480px) {
  .button-group {
    justify-content: center;
  }

  .button-group button {
    width: 100%;
  }
}
