

body {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
}

.btn {
    border: none;
    box-shadow: 1px 2px 8px #000000c5;
}
.bg-primary, .btn-primary {
    background-color: #247392 !important;
}

.btn-warning {
    background-color: #247392 !important;
}

.text-green {
    color: #247392
}
.text-yellow {
    color: #e1d821;
}

.welcome-text {
    position: relative;
}
.welcome-text::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 140%;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    border-top: 13px solid #e1d821;
    border-left: 13px solid #e1d821;
    border-right: 13px solid #e1d821;
    z-index: -1;
}
.color-brand{
    content: "";
    position: relative;
    width: 100%;
}
.color-brand .green-brand {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
}
.color-brand .yellow-brand {
    position: absolute;
    transform: translateX(-50%) rotateY(180deg);
    left: 50%;
}

@media (min-width: 1200px){
    .display-3 {
        font-size: 4rem;
    }
}

.display-3 {
    /* font-size: calc(1.525rem + 3.3vw); */
    font-weight: 600;
    line-height: 1.3;
}