@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');
*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:active,
:hover,
:focus {
    outline: 0 !important;
    outline-offset: 0;
}
a,
a:hover {
    text-decoration: none;
}
ul,
ol {
    margin: 0;
    padding: 0;
}





/* ===== Variable Define ===== */
:root {
    --color-black: #000000;
    --color-wax-flower: #FCC594;
    --color-axolotl: #697452;
    --color-sand: #F7F1D9;
    --color-british-racing-green: #064530;
    --color-warm-of-white: #faf9f6;
    --color-mustard-gold: #ebb02d;
    --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    --border: .2rem solid rgba(0, 0, 0, .1);
    --outline: .1rem solid rgba(0, 0, 0, .1);
    --outline-hover: .2rem solid var(--black);
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--color-warm-of-white);
    font-size: 100%;
    font-weight: 400;
    font-family: 'Dosis', sans-serif;
}





/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: .3125rem;
}
::-webkit-scrollbar-track {
    background: var(--color-warm-of-white);
}
::-webkit-scrollbar-thumb {
    background: var(--color-british-racing-green);
}





/* ===== Custom CSS Design ===== */
h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: var(--color-black);
}
h2 {
    font-size: 1.5625rem;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 2.5rem;
    color: var(--color-black);
}
h4 {
    font-size: 1.125rem;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: .9375rem;
    color: var(--color-black);
    transition: all .3s linear;
}
h5 {
    font-size: .875rem;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: var(--color-black);
}
p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75rem;
    letter-spacing: .0625rem;
    opacity: .8;
    color: var(--color-black);
}





@media (max-width: 1024px) {
    h1 {
        font-size: 3.25rem;
    }
    h2 {
        font-size: 1.125rem;
        line-height: 1.5625rem;
    }
}
@media (max-width: 991px) {
    h4 {
        font-size: .9375rem;
        margin-bottom: .625rem;
    }
    p {
        font-size: .875rem;
        line-height: 1.3125rem;
    }
    .text-content {
        width: 100%;
    }
}
@media (max-width: 575px) {
    h1 {
        font-size: 1.25rem;
    }
    h2 {
        font-size: 1rem;
        line-height: 1rem;
        margin-bottom: 5px;
    }
}
@media (max-width: 430px) {
    h1 {
        margin-bottom: 0;
    }
}