@import url("https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&display=swap");
:root {
    --banner-display: block;
}

.main-area--only-first-sidebar .main-area__inside {
    gap: 30px;
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- header -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.logo {
    display: block;
    flex-shrink: 1;
    background-color: #fff;
}

.logo-social-wrapper {
    display: block;
}

.social__list {
    list-style: none;
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
}
.social-godlo-wrapper {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
}
.social__link img {
    transition: transform 0.3s ease;
    &:hover {
        transform: scale(1.1) rotate(10deg);
    }
}

@media (min-width: 700px) {
    .logo-social-wrapper {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        justify-content: space-between;
    }
}

.menu-search-wrapper {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 0.6em 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-form--header-area {
    width: 100%;
}

@media (min-width: 700px) {
    .search-form--header-area {
        width: 40%;
    }
    .header-nav-ul > li > a::before {
        content: "";
        width: 0.5em;
        height: 0.5em;
        background: #72a6cd;
        display: inline-block;
        margin-right: 0.5em;
        transform: translateY(-0.1em);
    }
}

@media (min-width: 1170px) {
    .search-form--header-area {
        width: 30%;
    }
}

.contact-area__inside {
    margin-top: 10px;
    border-top: 1px solid #d3d3d3;
    border-bottom: 1px solid #d3d3d3;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 2em;
    gap: 2em;
}

.contact-content__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    width: 100%;
}

.contact-content__item:not(:last-child) {
    padding-bottom: 2em;
    border-bottom: 1px solid #d5d5d5;
}

.contact-content__text {
    text-align: center;
}

.contact-content__text * {
    color: var(--contact-content-color, #fff);
    text-decoration: none;
    font-size: 1.1em;
}

.contact-content__link:hover,
.contact-content__link:focus {
    color: var(--contact-content-color, #fff);
    text-decoration: underline;
}

@media (min-width: 700px) {
    .contact-area__inside {
        width: 100%;
        flex-direction: row;
        align-items: stretch;
        padding: 10px;
        gap: 15px;
        justify-content: space-between;
    }
    .contact-content__item {
        width: auto;
    }
    .contact-content__item:not(:last-child) {
        border-bottom: none;
        padding-bottom: 0;
        padding-right: 10px;
    }
}

@media (min-width: 1170px) {
    .contact-content__item {
        flex-direction: row;
        gap: 30px;
    }
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- news -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.news-item {
    padding: 10px !important;
    margin-bottom: 10px !important;
}

.news-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    border-top: var(--news-list-items-separator-border, 1px dashed #d5d5d5);
}

.news-item__title,
.news-item__text,
.news-item__read-more-block,
.main-header__title,
.main-text {
    font-family: "PT Serif";
}

.news-item__title,
.main-header__title {
    font-style: italic;
    font-weight: 600;
}

.news-item__read-more-link {
    padding: 0.3em 1.2em;
    border-radius: 0;
    font-size: 1em;
}

.news-item__read-more-icon {
    display: none;
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- sidebar -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.sidebar__addon:not(.survey-addon) {
    padding-left: 0;
    padding-right: 1em;
}

.sidebar-first__inside > * + *::before {
    display: none;
}

.nav-addon .sf-menu li {
    border-bottom: 1px dashed #dadada;
}

.nav-addon .sf-menu > li > a {
    padding: 0.8em 0;
    line-height: 1.2;
    padding-left: 1.2em;
    position: relative;
}

.nav-addon .sf-menu > li > a::before {
    content: "";
    width: 0.5em;
    height: 0.5em;
    background: #72a6cd;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.sidebar__addon.nav-addon .sidebar__addon-header {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.carrousel__button-container {
    margin-top: -15px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}
.carrousel__button-container:focus-within,
.banner-area__inside:hover .carrousel__button-container {
    opacity: 1;
}
.carrousel__button__button {
    background: rgb(0 0 0 / 20%);
}
.carrousel__button__previous {
    left: 30px;
}
.carrousel__button__previous span {
    /* margin: 0px 0 0 -2px; */
}
.carrousel__button__next {
    right: 30px;
}
.carrousel__button__next span {
    /* margin: 0 -2px 0 0; */
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- inside-top-menu -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.header-container {
    display: flex;
    align-items: center;
    margin: 0 auto;
    padding: 20px 0;
}

.header-container h2 {
    font-size: 1.5em;
    color: #fff;
    font-weight: 500;
    margin-right: 15px;
    padding: 0;
    white-space: nowrap;
}

.header-line {
    flex-grow: 1;
    height: 1px;
    margin-top: 5px;
    background-color: #d5d5d5;
}

.insidetop_addon.nav-addon .sf-menu {
    display: flex;
    gap: 10px;
    list-style: none;
    flex-wrap: wrap;
    padding: 0;
    justify-content: space-around;
}

.insidetop_addon.nav-addon .sf-menu li {
    border: none;
    text-align: center;
    width: 100%;
}
@media (min-width: 625px) {
    .insidetop_addon.nav-addon .sf-menu li {
        width: 200px;
    }
}

.insidetop_addon.nav-addon .sf-menu > li > a {
    padding: 0;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.3em;
    word-break: auto-phrase;
}
.insidetop_addon.nav-addon .sf-menu > li > a:hover,
.insidetop_addon.nav-addon .sf-menu > li > a:focus {
    text-decoration: underline;
    color: var(--link-hover-color);
}

.insidetop_addon.nav-addon .sf-menu > li > a::before {
    display: none;
}

.insidetop_addon.nav-addon .sf-menu > li > a > .menu-image {
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto 12px;
    max-width: 100%;
    height: auto;
}

.insidetop_addon.nav-addon .sf-menu > li > a:hover .menu-image,
.insidetop_addon.nav-addon .sf-menu > li > a:focus .menu-image {
    transform: scale(1.05) rotate(2deg);
}

/* GRUPY */
#nav-addon-300.insidetop_addon.nav-addon .sf-menu > li {
    width: 160px;
}

#nav-addon-300.insidetop_addon.nav-addon .sf-menu > li > a > .menu-image {
    height: 186px;
}
/* center images vertically inside .menu-image */
#nav-addon-300.insidetop_addon.nav-addon .sf-menu > li > a > .menu-image img {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
