html {
    position: relative;
    min-height: 100%;
}

@media only screen and (max-width: 769px) {
    body {
        margin-bottom: 245px;
    }

    .footer {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 245px;
        /*background-color: #55555;*/
    }

    .border-sm-bottom {
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }

    .border-sm-right-0 {
        border-right: 0;
    }

}

@media screen and (min-width: 770px) {
    body {
        margin-bottom: 130px;
    }

    .footer {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 130px;
        /*background-color: #55555;*/
    }

}

.social-hover {
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin: 5px 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #D8E2DC;
    /*float: left;*/
    transition: all 0.5s ease;
}

.social-hover .fab {
    color: #D8E2DC;
    margin-top: 14px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;

}

.social-hover:hover {
    border: 2px solid #3b5998;
    box-shadow: 0 0 15px #3b5998;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;

}

.scale:hover {
    overflow: hidden;
    background-color: white;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 25%) !important;
    transition: .2s ease;
    backface-visibility: hidden;
    transform: scale(1.085);
    /*cursor: pointer;*/
}

.btn-purple {
    background-color: #7c509f;
    color: #f8fafc;
}

.btn-purple:hover {
    transition: 0.2s;
    opacity: 0.9;
}

.btn-outline-purple {
    border-color: #7c509f;
    color: #7c509f;
}

.btn-outline-purple:hover {
    transition: 0.2s;
    background-color: #7c509f;
    color: white;
}

.effect:hover {
    opacity: 0.9;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

/*Animated underline on hover*/
.nav-item .nav-link {
    position: relative;
    color: #F8F9Fa;
    text-decoration: none;
}

.nav-item .nav-link:hover {
    color: #F8F9Fa;
}

.nav-item .nav-link::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #F8F9Fa;
    transform: scaleX(0);
    /*transform-origin: top left;*/
    transition: transform 0.5s ease;
}

.nav-item .nav-link:hover::before {
    transform: scaleX(1);
}

/*Animated underline on hover*/

.border-15 {
    border-width: 10px !important;
}


.dropdown-menu li {
    position: relative;

}
.dropdown-menu > li > a:hover:after {
    text-decoration: underline;
    transition: transform 0.3s ease;
    transform: scale(1.3);
}
a.dropdown-toggle  {
    display: flex;
    justify-content: space-between;
    align-items: center;
}