body {
    font-family: 'Poppins', sans-serif !important;
    margin: 0;
    overflow-x: clip !important;
    width: 100vw !important;
    /* 
    min-height: 100vh; */
    font-weight: 400;
    color: #000;
}

.max-row {
    max-width: 1200px;
}

.carousel-nav {
    position: relative;
}

.carousel-nav-container {
    height: 50px;
    border-radius: 25px;
    width: 200px !important;
}

.carousel-nav-el {
    width: 18px;
    height: 18px;
    border-radius: 13px;
    border: solid 2px #fff;
    transition: background-color 0.4s ease-in-out;
}

.carousel-nav-el.active {  
    background-color: #fdd669;
}

.carousel-nav-el:hover {
    cursor: pointer;
    background-color: #fdd669;
}

.carousel-img-container a {
  display: block; 
  width: 100%;
  height: 100%;
}

.carousel-img-container {
    flex: 0 0 100%;
    transition: transform 0.6s ease;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-img-container img {
    display: block;
    max-width: 100%;
}

.carousel-img-div {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.carousel-img-container {
    flex: 0 0 100%;
    transition: transform 0.6s ease;
}

.carousel-img-container img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-img-div {
    position: relative;
}

.carousel-nav-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: auto;
}