.menu {
    width: 100%;
    float: left;
    background-color: #A41F35;
    padding: 20px 0;
}


/* Logo Section */

.logo_section {
    width: 20%;
    float: left;
}

.logo_section img {
    width: 100%;
    float: left;
    height: auto;
    margin-top: 10px;
}


/* Menu List */

.menu nav {
    float: right;
    font-size: 16px;
    margin-top: 1.5%;
}

.menu nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    cursor: pointer;
}

.menu nav ul li {
    list-style: none;
    position: relative;
}

.menu nav ul li:last-child {
    display: none;
}

.menu nav ul li.sub-menu:before {
    content: '\f078';
    font-family: fontAwesome;
    position: absolute;
    line-height: 50px;
    color: #181818;
    right: 1px;
}

i {
    margin-right: 10px;
}

.menu nav ul li a {
    height: 70px;
    line-height: 70px;
    padding: 0 15px;
    font-weight: 500;
    color: whitesmoke;
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    font-family: lemon_milkbold_italic, sans-serif;
}

.menu nav ul li a:active,
.menu nav ul li a:visited {
    color: whitesmoke;
    text-decoration: none;
}

.menu-toggle {
    color: #c3161c;
    float: right;
    line-height: 65px;
    font-size: 24px;
    cursor: pointer;
    display: none
}

a:active {
    color: #181818;
    text-decoration: none;
}


/* Search Bar */

.search-bar {
    width: 90%;
    margin-top: 1%;
}

.search-bar input,
.search-bar button {
    background-color: #f4f4f4;
    float: left;
}

.search-bar input {
    width: 68%;
    margin-right: 2%;
}

.search-bar button {
    width: 30%;
}

.search-bar button:hover {
    background-color: #dcdcdc;
}

/* Header dropdown */

.header-dropdown {
    background-color: white;
    display: none;
    position: absolute;
    width: max-content;
    z-index: 1;
    padding: 10px 0;
}

.arrow-down-header {
    position: absolute;
    margin-left: 20px;
    margin-top: -5px;
    z-index: 5;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #183029;
    display: none;
}

.competitions-btn .competitions-dropdown a, .about-btn .about-dropdown a{
    color: black !important;
    text-decoration: none;
    display: block;
    background-color: white;
    line-height: 40px !important;
    font-family: 'roboto', sans-serif !important;
    height: 40px !important;
    font-weight: bold !important;
    text-transform: none !important;
}

.header-dropdown a:hover {background-color: whitesmoke;}

.competitions-btn:hover .competitions-dropdown,  .competitions-btn:hover .arrow-down-competitions,
.about-btn:hover .about-dropdown,  .about-btn:hover .arrow-down-about
{display: block;}

/* Smaller screen display */

@media (min-width: 970px) and (max-width: 1143px) {
    .menu {
        padding: 0 13px;
    }
}

@media (max-width: 550px) {
    .logo_section {
        width: 55%;
    }
}

@media (max-width: 1024px) {
    .menu {
        padding: 0 20px;
    }
    .menu-toggle {
        display: block;
        margin-top: 4%;
        color: white;
    }
    .menu nav {
        /* use display none or left:-100% to hide the nav  */
        /* display: none; */
        position: absolute;
        top: 25%;
        left: -100%;
        width: 100%;
        height: calc(100vh - 50px);
        background: #f4f4f4;
        transition: 0.5s;
    }
    .menu nav.active {
        left: 0;
        z-index: 1;
    }
    .menu nav ul {
        display: block;
        text-align: center;
    }
    .menu nav ul li a {
        border-bottom: 0.9px solid #A41F35;
        color: #A41F35 !important;
        background: #f4f4f4;
    }
    .logo_section {
        width: 80%;
        margin: 10px 0;
    }
    .logo_section img {
        width: 28%;
        margin: 0;
    }
    .header-dropdown {
        position: relative;
        display: inline;
    }
    .arrow-down-header {
        display: none;
    }
    .competitions-btn:hover .competitions-dropdown,
    .about-btn:hover .about-dropdown {display: inline;}
    .competitions-btn:hover .arrow-down-competitions,
    .about-btn:hover .arrow-down-about
    {display: none;}
}
