@font-face {
    font-family: 'Merriweather';
    src: url('../font/Merriweather/Merriweather_24pt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MerriweatherBold';
    src: url('../font/Merriweather/Merriweather_24pt-Bold.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lora';
    src: url('../font/Lora-Bold.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body {
    font-size: 16px;
    font-family: 'Merriweather', sans-serif, serif;
    color: #000;
    margin: 0;
    padding: 0;
    font-weight: 400;
    background-color: #ffffff;
}

p {
    line-height: 24px;
    font-size: 16px;
    color: #000;
    font-family: 'Merriweather', sans-serif, serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    color: #000;
    padding: 0px;
    line-height: 1.2;
    letter-spacing: 1px;
    font-weight: 900;
    font-family: "Lora", 'MerriweatherBold', Georgia, serif;
}

strong{
    margin: 0px;
    color: #000;
    padding: 0px;
    line-height: 1.2;
    letter-spacing: 1px;
    font-weight: 900;
    font-family:"Lora", 'MerriweatherBold', sans-serif, serif;
}

ul,
ol,
li {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #000;
}

a:hover {
    text-decoration: none;
}


.loading-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
}

.loading-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.scroll-top {
    display: block;
    position: fixed;
    bottom: 10px;
    text-align: center;
    right: 2%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    color: #fff;
    background-color: #b61a37;
    text-decoration: none;
    border-radius: 100%;
    z-index: 9999;
    transition: all 0.5s ease;
    cursor: pointer;
    backface-visibility: hidden;
}

.scroll-top .scroll-icon {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(-90deg);
}