@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body{
    margin: 0;
    padding:0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;

}
#hero {
  width: 100%;
  height: 100vh;
}

.mySwiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps images full cover */
  position: absolute;
}

.caption {
  color: white;
  text-shadow: 0px 2px 5px rgba(0,0,0,0.7);
  z-index: 1;
  position: relative;
}
.mySwiper .swiper-slide::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    left: 0;
    top: 0;
}
.swiper-pagination-bullet{
    background: white;
}
.navbar-brand img{
    height: 40px;
    object-fit: contain;
}
nav{
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 2;
}
.container{
    max-width: 86%;
    margin: auto;
}
.swiper-cards{
    max-width: 300px;
    height: 300px;
}
.swiper-cards .swiper-slide{
    overflow: visible;
    aspect-ratio: 1;

}
.card-af{
    background: rgb(231, 231, 231);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.card-af img{
    width: 50px;
    margin-bottom: 20px;
}
a{
    cursor: pointer;
}