:root {
    --yellow: #ECD325;
    --black: #181617;
    --white: #fff;
    --red: #980321;
    --green: #03212B;
}

/* input:focus,
textarea:focus {
    outline: none;
    border: none
} */

.bg-red {
    background-color: var(--red);
}

.background-black {
    background-color: var(--black);
}

.background-white {
    background-color: var(--white);
}

.bg-yellow {
    background: var(--yellow);
}

.bg-green {
    background: var(--green);
}

.txt-black {
    color: var(--black);
}

.txt-green {
    color: var(--green);
}

.txt-white {
    color: var(--white);
}

.txt-yellow {
    color: var(--yellow);
}

.txt-red {
    color: var(--red);
}

img {
    max-width: 100%;
}

section {
    padding: 50px 0;
}

.f60 {
    font-size: 60px;
}

.f50 {
    font-size: 50px;
}

.f40 {
    font-size: 40px;
}

.f36 {
    font-size: 36px;
}

.f34 {
    font-size: 34px;
}


.f30 {
    font-size: 30px;
}

.f24 {
    font-size: 24px;
}

.f26 {
    font-size: 26px;
}

.f22 {
    font-size: 22px;
}

.f20 {
    font-size: 20px;
}

.f16 {
    font-size: 16px;
}

.f12 {
    font-size: 12px;
}

.medium {
    font-weight: 500;
}

a {
    text-decoration: none;
}

.f18 {
    font-size: 1.8rem;
}

.f14 {
    font-size: 14px;
}

.PoetsenOne {
    font-family: 'PoetsenOne';

}

ul {
    padding: 0;
    margin: 0;
}

.order-now {
    font-size: 16px;
    transition: all 0.6s linear;
    border-radius: .5rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 06px 2rem;
    font-family: "Limelight", sans-serif;
    justify-content: center;
}

.order-now:hover {
    background: var(--black);
    color: var(--white);
    transition: all 0.6s linear;

}

.live-chat {
    font-size: 16px;
    transition: all 0.6s linear;
    border-radius: .5rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 06px 2rem;
    font-family: "Limelight", sans-serif;
    justify-content: center;
}

.live-chat:hover {
    background: var(--black);
    color: var(--white);
    transition: all 0.6s linear;
}

.whatsapp {
    font-size: 16px;
    transition: all 0.6s linear;
    border-radius: .5rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: "Limelight", sans-serif;
    justify-content: center;
}

.whatsapp:hover {
    color: var(--white);
}