@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Rozha+One&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Rozha+One&display=swap');

.poppins-regular {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: normal;
}

.rozha-one-regular {
    font-family: "Rozha One", serif;
    font-weight: 400;
    font-style: normal;
}

*,
*::before,
*::after {
    box-sizing: inherit
}
html {
    font-size: 62.5%;
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
    scroll-behavior: smooth
}

body,
button,
input,
select,
optgroup,
textarea {
    color: var(--c-primary);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;

}
body{
    background: var(--c-background);
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 27.2px;
    margin: 0
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Rozha One", serif;
    font-weight: 400;
    clear: both;
    margin: 0;
    line-height: 1.1;
}
h1{
    font-size: 76px;
    line-height: 68.4px;
}
h2{
    font-size: 48px;
    line-height: 50.88px;

}
h3{
    font-size: 32px;
    line-height: 40px;
}
h4{
    font-size: 18px;
    line-height: 25.2px;
}
h5{
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
}
h6{
    font-size: 12px;
}
p {
    margin: 0;
}

.page,
.post{
    margin: 0;
}
.site-main{
    min-height: calc(100vh - 150px);
    background: var(--c-background);
    margin-top: 72px;
}
.page-template-home .site-main,
.page-template-redirect .site-main{
    margin-top: 0;
}
main {
    display: block;
}
a{
    position: relative;
    text-decoration: none;
    transition: all .3s ease-in-out
}
ul{
    margin: 0;
    padding: 0
}
li{
    list-style-type: none;
    padding: 0;
    margin: 0;
}

p:empty{
    display: none
}
body:has(.main-navigation.toggled){
    overflow: hidden
}
::-webkit-scrollbar {
    height: 8px;
    width: 8px;
    background-color: var(--c-background)
}
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: var(--c-emphasis-blue);
    border: solid 1px var(--c-background)
}
body.color-blue::-webkit-scrollbar-thumb {
    background-color: var(--c-emphasis-blue)
}
body.color-red::-webkit-scrollbar-thumb {
    background-color: var(--c-emphasis-red)
}
body.color-brown::-webkit-scrollbar-thumb {
    background-color: var(--c-emphasis-brown)
}
body.color-peach::-webkit-scrollbar-thumb {
    background-color: var(--c-emphasis-peach)
}
.no-scroll {
    overflow: hidden;
}
