/*Set background size */

@media (min-width: 1280px) {
    .navbar {
        background-size: cover;
        background-position: center;
    }
    .imgBG {
        width: 100%;
        height: 100vh;
        position: fixed;
        z-index: -2;
    }
}

@media (max-width: 1279px) {
    .imgBG {
        width: 300%;
        height: 100vh;
        position: fixed;
        z-index: -2;
    }
}

body {
    background-color: #FDDEE8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #FFFFFF;
    font-weight: 700;
}

.full-height {
    min-height: 100vh;
    height: 100%;
    padding-top: 100px;
    justify-content: center;
    align-items: center;
}

a {
    text-decoration: none;
    color: #DCEFF9;
    transform: all 0.4s ease;
}

img {
    width: 100%;
}

.bg-base {
    background-color: #865FBA;
}


/* CARD */

.card-custom .card-custom-image {
    overflow: hidden;
}

.card-custom .card-custom-image img {
    transition: all 0.4s ease;
}

.card-custom:hover .card-custom-image img {
    transform: scale(1.1);
}


/* CARD SHADOW EFFECT */

.shadow-effect {
    transition: all 0.5s;
}

.shadow-effect:hover {
    box-shadow: 8px 8px 0 0 #E56A93;
}


/* button */

.btn {
    color: #ffffff;
    background-color: rgb(229, 106, 147);
    border: solid 2px #865FBA;
}

.btn:hover {
    color: white;
    background-color: #865FBA;
}


/* link bar.. Underlinepink */

.link-customBar {
    font-weight: 700;
    position: relative;
}

.link-customBar::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #E56A93;
    position: absolute;
    left: 0;
    top: 100%;
    transition: all 0.4s;
}

.link-custom:hover::after {
    width: 100%;
}


/* NAV BAR */

.navbar-brand img {
    width: 300px;
}

.navbar {
    /*background-color: var(--color-heading);*/
    background-color: #F090B0;
    object-fit: cover;
    background-size: cover;
    background-position: center;
}

.nav_item a {
    color: white;
    font-size: larger;
    font-weight: bold;
}

.nav_item a:hover {
    color: #865FBA;
}