:root
{
    --white-dark:#DAD5D2;
    --green-dark:#4F6947;
    --green-light:#b9c2ad;
}

@font-face {
    font-family: "Obibok";
    src: url("../resources/fonts/Obibok-Light.otf");
    font-weight: 300;
}
@font-face {
    font-family: "Obibok";
    src: url("../resources/fonts/Obibok-Regular.otf");
    font-weight: 400;
}
@font-face {
    font-family: "Obibok";
    src: url("../resources/fonts/Obibok-Bold.otf");
    font-weight: 600; 
}
 
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*overflow: hidden;*/
    font-family: 'Obibok', sans-serif;
    scroll-behavior: none;
}

html
{   
    position: relative;
    overflow: hidden;
}

body
{
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: #DAD5D2;
}

body::-webkit-scrollbar {
    display: none;
  }


h1,h2,h3
{
    font-weight: 600;
}

p,ul,li
{
    font-weight: 400;
}

#whatsapp-button
{
    display: block;
    position: fixed;
    top: 85%;
    left: 90%;
    z-index: 100;
    transform: scale(0.8);   
}
.absoluto
{
    position: absolute;
}

.mobile-only 
{
    display: none;
}

.green-color
{
    color: var(--green-dark) !important;
}
.underTitle
{
    height: 1px;
    border: none;
    margin-top: 15px;
    margin-bottom: 50px;
    background-color: var(--green-dark);

}
.underline
{
    text-decoration: underline;
}
.section
{
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 45px 0;
    box-shadow: 0px -5px 15px -3px rgba(0,0,0,0.05);
}
.section * 
{
    align-self: center;
}

.section .container
{
    position: relative;
    width: 100%;
    max-width: 840px;
}


.section .container-large
{
    width: 100%;
    max-width: 1300px;
}

.video
{
    background-color: var(--white-dark);
    width: 100%;
    max-width: 100%;
    padding: 0;
    height: fit-content;
    min-height: fit-content;
    max-height: fit-content;
}
.video video
{
    width: 100%;
    max-width: 100%;
    align-self: flex-start;
}

video, source
{
    user-select: none;
}

.section-background-green
{
    background-image: url(../resources/images/green-background.webp);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
}

.section-background-white
{
    background-image: url(../resources/images/white-background.webp);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
}

@media (max-width:700px){
    *{
        scroll-behavior: auto;
    }
    #whatsapp-button
    {
        left: 80%;
    }
}
@media (min-width:701px){
    body
    {
        overflow: hidden;
    }
}