<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.mistectvo {
    margin: 5% auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 90%;
    animation: fadein 0.7s ease-in-out;
}

.mistectvo .top img {
    height: 450px;
    object-fit: contain;
    margin-left: 20px;
}


.mistectvo .top{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.top-inside{
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 60%;
    margin-left: 20px;
}

.mistectvo .top .top-inside p{
    font-size: 24px;
    font-weight: 100;
    margin: 2% 0;
    text-align: left;
}

.top-inside h2{
    font-weight: 600;
    text-align: left;

}

/* .mistectvo h2 {
    text-align: justify;
    margin: 2% 5%;
} */

.mistectvo p {
    font-size: 18px;
    font-weight: 600;
    margin: 2% 0;
    text-align: justify;
}

.schools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 75vw;
    margin-top: 2%;
}

.mistectvo ul {
    width: 80%;
}

.mistectvo ul li {
    margin: 1% 0;
    font-size: 18px;
}

.mistectvo button {
    border: none;
    margin: 10px 20px;
    padding: 15px 20px;
    background-color: #002855;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    transition: border, background-color 0.7s ease-in-out;

    &amp;:hover {
        border: 3px solid #002855;
        color: black;
        background-color: transparent;
    }
}

.buttonsclick{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.mistectvo .buttonsclick button {
    margin-left: 10px;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}</pre></body></html>