:root {
    --accent: #729c0b;
    --accent: #db5a5a;
    --yellow: #f4cd76;
    --light: #f5f5f5;
    --light-yellow: #fff4dc;
}


@media screen and (max-width:1280px) {

    .home h2,
    h2 {
        font-size: 36px;
    }

}



@media screen and (max-width:1200px) {
    .handicap-icon {
        top: 16px;
    }

    .burger-container {
        position: absolute;
        top: 12px;
        right: 55px;
        display: inline-block;
        height: 50px;
        width: 50px;
        cursor: pointer;
        transform: rotate(0deg);
        transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99) 0.2s;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        z-index: 15;
    }

    .nav-row.menu-opened .burger-container {
        position: fixed;
    }


    .burger-container #burger {
        width: 40px;
        height: 12px;
        position: relative;
        display: block;
        margin: -5px auto 0;
        top: 50%;
    }

    .burger-container #burger .bar {
        width: 100%;
        height: 3px;
        display: block;
        position: relative;
        background: #222;
        transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    }

    .burger-container #burger .bar.topBar {
        transform: translateY(0px) rotate(0deg);
    }

    .burger-container #burger .bar.btmBar {
        transform: translateY(6px) rotate(0deg);
    }

    .nav-row.menu-opened .burger-container {
        transform: rotate(90deg);
    }

    .nav-row.menu-opened .burger-container #burger .bar {
        transition-delay: 0s;
        transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    }

    .nav-row.menu-opened .burger-container #burger .bar.topBar {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-row.menu-opened .burger-container #burger .bar.btmBar {
        transform: translateY(4px) rotate(-45deg);
    }

    .main-navigation {
        position: fixed;
        background: white;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        padding: 0;
        overflow: hidden;
        z-index: -1;
        overflow-y: auto;
        align-items: flex-start;
        flex-direction: column;

    }

    .nav-row.menu-opened .main-navigation {
        height: 100vh;
        padding: 50px 30px 30px;
        z-index: 5;
    }

    .main-navigation ul.menu {
        flex-direction: column;
    }

    .main-navigation ul.menu>li.current-menu-item>a {
        border-bottom: 2px dashed var(--main);
    }

    .main-navigation ul.menu li a {
        display: inline-block;

    }

    .main-navigation ul.menu li.current-menu-item>a {
        color: var(--main);
    }

    .main-navigation ul .sub-menu {
        border-radius: 0;
        border: none;
        background: transparent;
        box-shadow: none;
        position: relative;
        top: 0;
        left: 0;
        z-index: -2;
        opacity: 1;
    }

    .main-navigation ul .sub-menu a {
        padding: 8px 10px;
        font-size: 15px;
        /* color: #fff; */
    }

    .main-navigation ul .sub-menu a:hover {
        color: var(--accent);
        background-color: transparent;
    }

    .main-navigation ul .menu-item-has-children::before {
        content: none;
    }

    .nav-row ul.menu>li.menu-item {
        transform: scale(1.15);
        opacity: 0;
        transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    }

    .nav-row.menu-opened ul.menu>li.menu-item {
        transform: scale(1);
        opacity: 1;
    }

    .nav-row ul.menu>li.menu-item:nth-child(1) {
        transition-delay: 0.07s;
    }

    .nav-row ul.menu>li.menu-item:nth-child(2) {
        transition-delay: 0.14s;
    }

    .nav-row ul.menu>li.menu-item:nth-child(3) {
        transition-delay: 0.32s;
    }

    .nav-row ul.menu>li.menu-item:nth-child(4) {
        transition-delay: 0.28s;
    }

    .nav-row ul.menu>li.menu-item:nth-child(5) {
        transition-delay: 0.35s;
    }

    .nav-row ul.menu>li.menu-item:nth-child(6) {
        transition-delay: 0.42s;
    }

    .nav-row ul.menu>li.menu-item:nth-child(7) {
        transition-delay: 0.49s;
    }






}


@media screen and (max-width:1024px) {


    .required,
    .home-news,
    .home-about {
        padding-block: 60px;
    }

    .articles-item p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    /* 

    .articles-item {
        padding: 14px 14px 50px;
    } */


    /* .single-body article {
        width: 100%;
    } */

    .team-item {
        row-gap: 8px;
        width: calc(25% - 8px);
        font-size: 14px;
    }

    .team-row {
        gap: 10px;
    }

    .cookie-popup {
        max-width: 90%;
    }
}


@media screen and (max-width:991px) {


    .breadcrumbs {
        font-size: 14px;
    }

    h1.page-title,
    h1.article-title {
        font-size: 26px;
    }

    .home h2 {
        font-size: 30px;
    }

    .contact-page article,
    .single-event-body article {
        padding: 22px 22px;
        margin-bottom: 30px;
    }

    .single-body {
        flex-direction: column;
        row-gap: 30px;
    }

    .single-body article {
        width: 100%;
        margin-bottom: 0;
    }

    .about-row {
        flex-direction: column;
        row-gap: 30px;
    }

    .about-row>div {
        width: 100%;

    }

    .about-row:first-child {
        margin-bottom: 0px;
    }

    .articles-item h3 {
        font-size: 18px;
    }

    .home h2,
    h2 {
        font-size: 28px;
    }

    .contact-info {
        flex-direction: column;
        row-gap: 30px;
    }

    .contact-info .entry-content,
    .contact-form {
        width: 100%;
    }
}


@media screen and (max-width:767px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .site-branding .custom-logo-link {
        width: 200px;
    }

    .burger-container {
        /* top: 3px; */
        right: 50px;
        height: 44px;
    }

    .burger-container #burger {
        width: 33px;
    }

    .main-banner {
        height: 200px;
    }

    h1,
    h2,
    h5 {
        letter-spacing: 0;
    }

    .home h1 {
        font-size: 20px;
    }

    .required,
    .home-news,
    .home-about {
        padding-block: 40px;
    }

    h2 {
        font-size: 24px;
        margin: 0 0 16px;
    }

    .home h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
        line-height: 1.3;
    }

    h4 {
        font-size: 18px;
    }

    .required-widgets-wrapper {
        flex-direction: column;
        row-gap: 30px;
    }

    .widgets-links {
        column-count: 2;
    }

    .required-widgets-wrapper>div:first-child,
    .required-widgets-wrapper>div:last-child {
        width: 100%;
    }

    .articles-row {}

    .articles-item {
        width: 100%;
        row-gap: 15px;
    }

    footer#footer {
        padding-block: 40px 20px;
    }

    .footer-col {
        width: 100%;
    }

    footer#footer .d-flex {
        flex-wrap: wrap;
        row-gap: 30px;
    }

    .footer-col:nth-child(2) {
        margin-top: 0;
        align-items: flex-start;
    }

    .footer-col:nth-child(3) {
        margin-top: 0;
        width: 100%;
    }

    .footer-col:nth-child(3) img {
        max-width: 100px;
    }

    .to-top {
        display: none !important;
    }

    .related-posts h3 {
        font-size: 20px;
    }

    .mobile-none {
        display: none !important;
    }

    .single-body {
        margin-top: 25px;
    }

    .single-body article {
        margin-bottom: 0;
        padding: 20px 20px;
    }

    .about-content {
        padding: 20px;
    }

    .single-body aside {
        padding: 20px 20px;
        width: 100%;
    }

    .contact-page article {
        border-radius: 0;
        padding: 0;
        background: transparent;
    }

    .related-posts {
        padding-block: 30px 40px;
    }

    .pagination {
        gap: 10px;
    }

    .main-banner {
        background-position: 0 center;
    }

    .team-item {
        row-gap: 8px;
        width: calc(50% - 5px);
    }

    .about-row {
        row-gap: 20px;
    }

    .afisha {
        padding-block: 25px;
    }

    .search-more {
        gap: 10px;
        flex-direction: column;
    }

    .error-404 {
        border-radius: 30px;
        width: 100%;
        padding: 30px 40px 140px;
        background-position: right bottom;
        background-size: auto 150px;
    }

    .error-404 .page-content {
        max-width: 100%;
        padding-top: 0;
    }

    .error-404 p {
        font-size: 16px;
    }

    .cookie-popup {
        padding: 25px;
        right: 30px;
    }

    .cookie-popup .d-flex {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 15px;
    }
}

@media screen and (min-width:768px) {
    .desktop-none {
        display: none !important;
    }
}