:root {
    --bs-body-font-size: 13px;
}
body, * {
    font-size:  13px;
}
a, a:hover, a:visited, a:active{
    text-transform: none;
    text-decoration: none;
}
.section{
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    flex:1;
}
.section:hover:before {
    background-color: rgba(20,40,50,0.4);
    transition: all 1s;
}
.section:before {
    content: '';
    position: absolute;
    top:0px;
    left:0px;
    right:0px;
    bottom:0px;
    background-color: rgba(20,40,50,0.9);
}
.section a {
    transform: scale(1);
    z-index: 1;
    position: relative;
    transition: all 1s;
}
.section:hover a {
    transform: scale(1.2);
    margin-bottom:30px
}
.section img {
    max-width:40%;
}

.btn {
    border-radius: 0px !important;
}
