@font-face {
    font-family: 'Gill Sans';
    src: url('../fonts/GillSans.woff2') format('woff2'),
        url('../fonts/GillSans.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html,
body {
    min-height: 100vh;
}

body {
    border: 20px solid #ffffff;
    background-color: #e7e7e8;
    text-align: center;
    font-family: 'Gill Sans';
    color: #3B3C43;
}

a {
    color: #3B3C43;
    text-decoration: none;
}

a:hover {
    color: #808f74;
}

img {
    max-width: 100%;
}

.xs-small {
    font-size: 0.75rem;
}

.lh-lg {
    line-height: 1.7 !important;
}

.text-content{
    max-width: 650px;
}
.bg-secondary{
    background-color:#C4C4C4 !important;
}
.logo-link{
    transition: all 0.3s;
    position: relative;
}
.logo-link::after{
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.3s;
}
.logo-link:hover{
    box-shadow: 8px 8px 16px 0 rgba(0, 0, 0, 0.10);
}
.logo-link:hover::after{
    opacity: 1;
}
@media (max-width: 767px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}