* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Julius Sans One', sans-serif !important;
}

:root {
    --primary-color: #CD152D;
    --assets-color: #ffffff;
    --text-color: #6E6E6E;
    --card-bg: #F8F8F8;
    --light: #fff;
    --dark: #000;
}

body {
    background-color: var(--light) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0 !important;
}

a {
    color: #000 !important;
    text-decoration: none !important;
}

.fi {
    display: inline-flex !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.form-control::placeholder {
    color: var(--primary-color) !important;
}


/* HEADER SECTION */

header {
    max-height: 100px !important;
    background-color: var(--primary-color);
}

header .branding img {
    width: 100%;
    height: 100%;
    min-width: 80px !important;
    min-height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
    object-fit: contain;
    object-position: center;
}

header .menu-items {
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

header .menu-items .item-list {
    font-size: 14px;
}

header .menu-items a {
    color: var(--light) !important;
    transition: all 0.3s linear;
}

header .menu-items .item-list:hover a {
    font-weight: 600;
}

header .menu-items.branding {
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
    background-color: var(--light);
    padding: 20px 40px !important;
}


/* HERO SECTION */

.hero-section {
    background-color: var(--primary-color);
    padding: 0 !important;
}

.hero-section .row.align-middle {
    height: calc(100vh - 100px);
}

.hero-section .card {
    border: none;
    outline: none;
    box-shadow: none;
    background-color: transparent !important;
}

.hero-section .card .play-btn {
    width: 100px;
    height: 100px;
    cursor: pointer;
}

.hero-section .card .time,
.hero-section .card .title,
.hero-section .card .sub-title {
    color: var(--light);
}

.hero-section .card .time {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    margin-block-start: 10px;
}

.hero-section .card .title {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
}

.hero-section .card .sub-title {
    font-size: 12px;
    line-height: 16px;
    font-weight: 300;
    margin-block-end: 10px !important;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.hero-section .card .live {
    background-color: var(--light);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 100px;
    margin-block-end: 20px !important;
}

.hero-section .card .live .circle {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    background-color: #FF0000;
    animation: blink 1.2s infinite;
}

.hero-section .card .live .text {
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    color: var(--dark);
}

.hero-section .card .sound-control {
    color: var(--light);
}

.hero-section .card .sound-control input[type=range] {
    background: var(--light);
}


/* SECTION */

section,
footer {
    padding-block-start: 100px;
}

.section-title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: var(--dark);
    margin-block-end: 20px !important;
}

.section-paragraph {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--text-color);
}


/* NEWS SECTION */

.news-section .card {
    border: none;
    outline: none;
    box-shadow: none;
    margin-block-end: 30px;
    border-radius: 20px;
    background-color: var(--light);
    cursor: pointer;
    transition: all 0.3s linear;
}

.news-section .card:hover {
    transform: scale(1.04);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.news-section .card-body {
    padding: 0 !important;
    margin: 0 !important;
}

.news-section .card-body img {
    width: 100%;
    max-height: 200px;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.news-section .card-body .paragraph {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    padding: 20px;
    color: var(--text-dark);
}

.btn {
    font-size: 14px;
    line-height: 22px;
    border-radius: 60px;
    padding: 10px 26px;
    color: var(--light) !important;
    background-color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    outline: none !important;
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    color: var(--primary-color) !important;
    background-color: transparent !important;
    border: 1px solid var(--primary-color) !important;
}


/* CONTACT SECTION */

.contact-section .card {
    border: none;
    outline: none;
    box-shadow: none;
}

.contact-section .form-control {
    font-size: 14px;
    color: var(--dark);
    border-radius: 20px;
    padding: 12px 20px;
    outline: none;
    border: none;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}


/* FOOTER  */

footer .menu-items .item-list img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    min-width: 75px !important;
    min-height: 75px !important;
    max-width: 75px !important;
    max-height: 75px !important;
}

footer .contact,
footer .social-media,
footer .copyright {
    color: var(--dark);
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

footer .copyright {
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 20px !important;
}