@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@500&display=swap');

/* DEFAULT COLORS */
/* color: #3b92de;
background-color: #f7e0cd;
new background-color: #f6f9fe;
*/

*{
    font-family: 'Cabin', sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body{
    overflow-x: hidden;
}


.page-bg {
    background-color: #f6f9fe;

}

.navbar-nav .nav-item .nav-link {
    color: #1A129F;
    font-weight: 300px;
}


.nav-bar {
    position: absolute;
    top: 0;
    z-index: 50;
}

.text-color {
    color: #ccc1e6;
}

::placeholder {
    color: #bdbfc2 !important;
}

.footer-text{
    color: #585859;
}

.navbar-toggler:focus{
    outline: none;
}

@media screen and ( max-width: 547px) {
    .form-mobile{
        display: block;
    }

    .card{
        width: 22rem;
    }

    .input-mobile {
        width: 100% !important;
        margin: 0 auto;
        text-align: center;
        padding: 28px;
        margin-bottom: 10px;
    }

    #logo-img{
        width: 86% !important;
    }

    .mobile-btn{
        width: 100%;
        padding: 18px;
    }

    #jsonContent{
        margin-top: 20px;
    }


    /* .mobile-height{
        height: 125vh !important;
    } */

    .navbar-nav {
        padding-top: 20px;
    }
    .site-nav {
        background-color: #f6f9fe;
        box-shadow: 0 0 5px #00000015;
        backdrop-filter: blur(3px);
    }

    .site-nav .nav-link {
        color: #1A129F !important;
        background-color: white;
        padding: 10px 20px;
        box-shadow: 0 0 5px #00000015;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .mb-nav{
        width: 100%;
    }


}

@media screen and ( min-width: 547px) {
    .card{
        width: 16rem;
    }

    #logo-img{
        width: 250px;
    }

    .input-mobile {
        /* padding: 28px; */
        margin-bottom: 10px;
    }

    #email{
        width: 100% !important;
    }
}

.medium-card span {
    padding: 8px 8px 8px 8px;
}

.medium-card span img {
    width: 100px;
    height: 100px;
    object-fit: cover; /* https://developer.mozilla.org/en-US/docs/Web/CSS/object-fit */
    object-position: center; /* Center the image within the element */
    min-height: 100%;
    min-width: 100%;
}

#pagin {
  display: flex;
  justify-content: center;
}

#pagin a {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color .3s;
}
#pagin a.active {
  background-color: dodgerblue;
  color: white;
}
#pagin a:hover:not(.active) {background-color: #ddd;}