@import "offcanvas.css";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
 --color-dark: #212832;
}
body
{
    font-family: 'Montserrat', sans-serif;
    background: rgba(242, 246, 252, 1);
}
.feather-8{
    width: 8px;
    height: 8px;
}
.feather-16{
    width: 16px;
    height: 16px;
}
.feather-24{
    width: 24px;
    height: 24px;
}
.feather-32{
    width: 32px;
    height: 32px;
}
.bg-teal {
    background: teal;
}
.bg-dark
{
    background: var(--color-dark);
}
.text-red
{
    color: red !important;
}
.lightened
{
    box-shadow: 1px 1px 26px -4px rgba(255,255,255,0.75);
    -webkit-box-shadow: 1px 1px 26px -4px rgba(255,255,255,0.75);
    -moz-box-shadow: 1px 1px 26px -4px rgba(255,255,255,0.75);
}
.navbar-brand img
{
    height: 50px;
}
.navbar-nav .nav-item .nav-link, a.dropdown-item {
    font-weight: 500;
}
.navbar
{
    border-bottom: 1px solid #f2f6fc;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(242, 246, 252);
}
.hoverable img.grayscale
{
    filter: grayscale(100%);
    transition-duration: 0.5s;
}
a.hoverable:hover img.grayscale
{
    filter: grayscale(0%);
    transition-duration: 0.5s;
}
a.hoverable:hover
{
    box-shadow: 1px 1px 2px -2px rgba(0,0,0,0.5);
    -webkit-box-shadow: 1px 1px 2px -2px rgba(0,0,0,0.5);
    -moz-box-shadow: 1px 1px 2px -2px rgba(0,0,0,0.5);
    transition-duration: 0.5s;
}
.portfolios .organization-logo
{
    opacity: 1;
}
.portfolios .info-panel
{
    position: absolute;
    bottom: -10%;
    left: 0;
    padding: 30px;
    text-transform: none;
    opacity: 0;
    width: 85%;
    -webkit-transition: opacity .35s,-webkit-transform .35s;
    transition: opacity .35s,transform .35s;
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(0,100%,0);
    display: table;
    height: 100%;
}
.portfolios a:hover .info-panel
{
    opacity: 1;
    width: calc(100% - 30px);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.portfolios a:hover .organization-logo
{
    opacity: 0.1;
}
.icon-stack {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 100%;
    height: 2rem;
    width: 2rem;
    font-size: 1rem;
    background-color: #eff3f9;
}
.icon-stack-xl {
    height: 5rem;
    width: 5rem;
    font-size: 1.75rem;
}
@media (max-width: 991.98px){
    .offcanvas-collapse {
        top: 77px;
        background-color: #ffffff;
    }
    .offcanvas-collapse .navbar-nav
    {
        text-align: center;
        font-size: 1.8em;
    }
}
.navbar-toggler:focus
{
    outline: 0;
}
