@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=DM+Serif+Text:ital@0;1&display=swap');

*{
    margin: 0;
    padding: 0;
}

root {
    display: block;
}

html{
    font-size: 100%;
}

html, body{
    overflow-x:hidden;
}

body {
    overflow-x: hidden;
    font-family: "DM Sans", sans-serif;
    background: var(--bs-light);
    color: var(--bs-primary);
}


::-moz-selection {
    background: rgba(140,113,46,0.2);
    text-shadow: none;
}

::selection {
    background: rgba(140,113,46,0.2);
    text-shadow: none;
}

input::-webkit-input-placeholder {
    color: #ccc!important;
}
input:-moz-placeholder {
    color: #ccc !important;
}
input::-moz-placeholder {
    color: #ccc !important;
}
input:-ms-input-placeholder {
    color: #ccc !important;
}

img::selection {
    background: 0 0;
}

img::-moz-selection {
    background: 0 0;
}

a{
    color: var(--bs-secondary);
    text-decoration: none;
    outline-width: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover{
    color: var(--bs-success);
}

p{
}

strong{
    font-weight: 700;
}

h1,h2,h3,h4,h5,h6{
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: normal;
}

.main-content{
}


.container-fluid.ws-container{
    max-width: 110rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}


.article{
    display: block;
    width: 100%;
    max-width: 60rem;
    margin: 0 auto;
    border-radius: 1rem;
    padding: 3rem 2rem;
    background: var(--bs-white);
    position: relative;
    z-index: 2;
    margin-bottom: -4rem;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 56, 48, 0.1);
    -moz-box-shadow: 0px 10px 20px 0px rgba(0, 56, 48, 0.1);
    box-shadow: 0px 10px 20px 0px rgba(0, 56, 48, 0.1);
}

.article-block h2{
    font-size: 2.5rem;
    line-height: 1.1em;
    color: var(--bs-secondary);
}

.article-block p{
    text-align: justify;
    padding: 0;
    margin: 0;
}

.main-footer{
    z-index: 1;
    padding: 8rem 0 4rem 0;
    background: #54A575;
    background: radial-gradient(circle, rgba(0, 92, 60, 1) 0%, rgba(0, 56, 48, 1) 100%);
    /*background: radial-gradient(circle, rgba(0, 56, 48, 1) 0%, rgba(0, 92, 60, 1) 100%);*/
    color: var(--bs-white) !important;
    text-align: center;
}


.contact-data{
    font-size: 1.1rem;
    padding: 0.25rem;
    margin: 0;
    line-height: 1.2em;
}

.contact-data a{
    color: var(--bs-white);
    margin: 1rem 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    white-space: nowrap;
    display: inline-block;
    background: rgba(var(--bs-info-rgb),0.15);
    font-weight: 600;
}



.contact-data a:hover{
    background: rgba(var(--bs-info-rgb),0.3);
}


@media (max-width: 440px){
    html{
        font-size: 85%;
    }
}


@media (min-width: 576px){


}

@media (min-width: 768px){


    .ws-container{
        padding-left: 2rem;
        padding-right: 2rem;
    }





}


@media (min-width: 992px){
    .article-block{
        padding: 0 1.5rem;
    }
}

@media (min-width: 1200px){

}

@media (min-width: 1440px){

}

@media (min-width: 1600px){

}
/********* THEME ********/

.btn-animate{
    transition: all .3s ease-in-out;
    display: inline-flex;
    align-items: center;
    text-align: left;
}

.btn-animate:hover{
    padding-right: 1.75rem;
}

.btn-animate i{
    padding-left: 1.5rem;
    transition: padding-left .3s ease-in-out;
}

.btn-animate:hover > i{
    padding-left: 2rem;
}


hr.divider{

    height: 1px;
    display: block;
    width: 100%;
    margin: 2rem 0;
    border: none;
    border-bottom: 1px solid var(--bs-secondary);
}


