:root {
    --primary: #FF3B3C;
}

body {
    font-family: 'Poppins', sans-serif;
    
    font-weight: 300;
}

.nav-link.active {
    font-weight: 500;
}

@media (min-width: 992px) {
    .nav-link.active {
        border-bottom: 2px solid var(--primary);
    }
}

@media (max-width: 991px) {
    .nav-link {
        text-align: center;
    }
}

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.animated-icon {
    width: 28px;
    height: 22px;
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.animated-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: black;
    opacity: 1;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.animated-icon span:nth-child(1) {
    top: 0;
}

.animated-icon span:nth-child(2) {
    top: 9px;
}

.animated-icon span:nth-child(3) {
    top: 18px;
}

.navbar-toggler.collapsed .animated-icon span:nth-child(1) {
    top: 0;
    transform: rotate(0deg);
}

.navbar-toggler:not(.collapsed) .animated-icon span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

.navbar-toggler:not(.collapsed) .animated-icon span:nth-child(2) {
    scale: 0;
}

.navbar-toggler:not(.collapsed) .animated-icon span:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}