.fw-1{
    font-weight: 100;
}

.fw-2{
    font-weight: 200;
}

.fw-3{
  font-weight: 300;
}

.fw-4{
  font-weight: 400;
}

.fw-5{
  font-weight: 500;
}

.fw-6{
  font-weight: 600;
}

.fw-7{
  font-weight: 700;
}

.fw-8{
  font-weight: 800;
}

.fw-9{
  font-weight: 900;
}

.text-light{
  color: #f4fcfc;
}

.bg-gray-dark{
  background-color: #5b5f97;
}

.bg-gray{
  background-color: #b8b8d1;
}

.bg-gray-light{
  background-color: #ebebeb;
}

.img-fluid{
  max-width: 400px;
  height: auto;
}

.btn{
  background-color: #5b5f97;
  color: #f4fcfc;
  border-color: #5b5f97;
}

.btn:hover{
  background-color: #f4fcfc;
  color: #5b5f97;
  border-color: #5b5f97;
}

@media (max-width: 600px) {
  .fs-3{
    font-size: 1.2rem !important;
  }

  .img-fluid{
    max-width: 100%;
    height: auto;
  }
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}
.footer {
  flex-shrink: 0;
  position: relative;
  bottom: 0;
  width: 100%;
  flex: 1 0 auto;
}

#infoDiv {
  background-image: url('./assets/office.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
  overflow: hidden;
}

#infoDiv:hover {
  transform: scale(1.1);
}

.overlay{
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}

.card-img-top {
  height: 210px;
  object-fit: cover;
  width: 100%;
}

.card:hover {
  transform: scale(1.1);
  transition: transform 0.5s ease;
}