


*{
    font-family: 'Montserrat', sans-serif;
}

a {
text-decoration: none;
}
        a:hover{
text-decoration: none;
}
ul {
list-style: none;
}


.top-banner .nav-link{
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: white;
}
.top-banner .nav-link img{
    margin-right: 10px;
    fill: white;
}
.top-banner .nav-link p{
    margin-bottom: 0px;
}
/* .navbar .nav-link{
    text-transform: uppercase;
    font-weight: bold;
} */
.parent-portal{
    background-color: #ff1cb1;
    font-weight: bolder;
}
    .parent-portal > .nav-link {
        transition: all 0.2s ease-in-out;
    }

        .parent-portal > .nav-link:hover {
            transition: all 0.2s ease-in-out;
            transform: translateY(-2px)
        }


/*.magazine {
    background-color: #ff8a00;
    font-weight: bolder;
}
    .magazine > .nav-link {
        transition: all 0.2s ease-in-out;
    }
    .magazine > .nav-link:hover {
        transition: all 0.2s ease-in-out;
        transform: translateY(-2px)
    }*/



    .navbar .navbar-nav .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        transition: all .1s ease-in;
        transform: translateY(20px) scale(0);
    }
.navbar .navbar-nav .nav-item:hover{
    background-color: rgb(224, 224, 224);
}
.navbar .navbar-nav .nav-item:hover .dropdown-menu{
    display: block;
    opacity: 1;
    transform: translateY(0px) scale(1);
    margin: 0px;
}
@media only screen and (max-width: 992px){
    .navbar .navbar-nav .dropdown-menu{
        transform: scale(1) !important;
        opacity: 1 !important;
    }
    .top-banner .nav-item:not(:nth-child(3)){
        display:block !important;
        float:left;
        margin-left:10px;
    }
}


.pulse-button {
    position: relative;
    display: inline-block;
    padding: 2px 22px 2px 22px;
    font-size: 1.em;
    font-weight: bold;
    font-family: 'Trebuchet MS', sans-serif;
    text-transform: uppercase;
    text-align: center;
    line-height: 40px;
    letter-spacing: 0px;
    color: white;
    border: none;
    border-radius: 0%;
    background: rgb(102,89,221);
    background: linear-gradient(90deg, rgba(102,89,221,1) 0%, rgba(12,0,246,1) 0%, rgba(246,0,21,1) 100%);
    cursor: pointer;
    box-shadow: 0 0 0 0 rgb(101 55 143 / 25%);
    -webkit-animation: pulse 1.7s infinite;
    border-radius: 5px;
    -webkit-box-shadow: 1px 1px 17px 0px rgb(0 0 0 / 36%);
    -moz-box-shadow: 1px 1px 17px 0px rgba(0,0,0,0.36);
    box-shadow: 1px 1px 17px 0px rgb(0 0 0 / 36%);
}

    .pulse-button:hover {
        -webkit-animation: none;
        color: #f6ff00;
    }

@-webkit-keyframes pulse {
    0% {
        -moz-transform: scale(0.95);
        -ms-transform: scale(0.95);
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }

    70% {
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
    }

    100% {
        -moz-transform: scale(0.95);
        -ms-transform: scale(0.95);
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
    }
}
.bn39 {
    background-image: linear-gradient(135deg, #008aff, #86d472);
    border-radius: 6px;
    box-sizing: border-box;
    color: #ffffff;
    display: block;
    height: 50px;
    font-size: 1.4em;
    font-weight: 600;
    padding: 4px;
    position: relative;
    text-decoration: none;
    width: 7em;
    z-index: 2;
}

    .bn39:hover {
        color: #fff;
    }

    .bn39 .bn39span {
        align-items: center;
        background: #0e0e10;
        border-radius: 6px;
        display: flex;
        justify-content: center;
        height: 100%;
        transition: background 0.5s ease;
        width: 100%;
    }

    .bn39:hover .bn39span {
        background: transparent;
    }


/*------------------------------------------------------------*/

.item {
    background-color: #daa520;
    border: double 10px darkred;
}

.TopperCover {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
}

    .TopperCover img {
        width: 250px;
        height: 250px;
        border-radius: 50%;
        background-position: center;
        background-size: cover;
        object-fit: cover;
        padding: 10px;
    }


