/* define root*/
:root {
    --primary-color: #1a73e8;
    --secondary-color: #fbbc05;
    --text-color: #333;
    --background-color: #fff;
    --border-color: #ddd;
    --font-family: 'Lato', sans-serif;
}

html
h1,h2,h3,h4,h5,h6,p,span,a,li,div,input,label {
    font-family: var(--font-family);
    font-weight: 400;
    font-style: normal;
}
/*h1,h2,h3{*/
/*    text-transform: capitalize;*/
/*}*/
p{
    text-align: justify !important;
}
footer p{
    text-align: left!important;
}
.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 30px;
    font-weight: 900;
    color: rgba(255, 255, 255, .8) !important;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .3);
}
.swiper-pagination-bullet-active{
    background-color: #fff !important;
}
.swiper-button-prev{
    left:-30px
}
.swiper-button-next{
    right:-30px
}
.post-content {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}
.post-content a {
    color: var(--primary-color);
    text-decoration: none;
}
.post-content a:hover {
    text-decoration: underline;
}
.post-content p {
    margin: 10px 0;
}
.post-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}
.post-content ul, .post-content ol {
    padding-left: 20px;
    margin: 20px 0;
}
.post-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    list-style-type: disc; /* or circle/square as needed */
}

.post-content li::marker {
    color: #c20033;
}

.post-content blockquote {
    border-left: 4px solid var(--border-color);
    padding-left: 20px;
    margin: 20px 0;
    color: var(--text-color);
    font-style: italic;
}
.with-red-header #menuButton,
.with-red-header #langToggle,
.with-red-header #langMenu a,
.with-red-header #contactLink {
    color: #c20033;
}

.open_menu{
    cursor:pointer;
}
.hide_block {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease;
}
.hide_block.active {
    max-height: 500px; /* enough to fit content */
    transition: max-height .5s ease;
}
.open_contact_block{
    display: none;
    margin-top: 20px;
}
.open_contact_btn {
    cursor: pointer;
}