@charset "utf-8";

/* Global variables */
:root {
    --primary-font: "Titillium Web", "Trebuchet MS", sans-serif;
    --primary-color: #05371C;
    --secondary-font: "Urbanist", "Trebuchet MS", sans-serif;
    --secondary-color: #E6474E;
    --white-color: #F7F6F2;
    --green-dark-color: #D2E4D6;
    --animation-duration: 0.5s;
}


/* Common settings */
* {
    outline: none;
    box-sizing: border-box;
}
*:focus {
    outline: none;
}
::-moz-selection { /* Code for Firefox */
    background-color: var(--primary-color);
    color: #FFF;
}
::selection {
    background-color: var(--primary-color);
    color: #FFF;
}
:-moz-placeholder,
::-moz-placeholder {
    opacity: 1;
}
.offscreen {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
.focus-visible {
    outline: 2px dotted var(--ski-school-lackner-color);
}


/* Common transitions */
a,
/*head,*/
/*.header_logo,
.header_logo img,*/
/*:where(.header_logo, .header_contact, .fixed_bar, #language_btn, .close_popup) svg,*/
.aside_contact rect,
#menu_btn .line,
/*.header_info .languages,
.fixed_bar .more,
.popup_map,*/
.menu_c, 
/*.h_menu_c .menu_image,*/
.deskmenu_c :where(ul, a, svg) {
    transition: all var(--animation-duration) ease;
}


/* IPhone Querformat font-size bug */
html {
    -webkit-text-size-adjust: 100% !important;
}


/* Body defaults */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #F0F3ED;
    font-weight: 300;
    line-height: 150%;
    font-family: var(--secondary-font);
    /*top: 0 !important;*/
    letter-spacing: 0.125em;
}



/* Google Translate Element Dropdown & Hide translate banner on the top */
/*body > .skiptranslate,
.goog-te-gadget > span {
    display: none !important;
}
.goog-te-gadget {
    font-size: 0 !important;
}
.goog-te-gadget .goog-te-combo {
    width: 100%;
    margin: 0 !important;
    font: 500 0.875rem/120% Outfit,'Trebuchet MS',sans-serif;
    letter-spacing: 0.05em;
}*/


/* Image defaults */
img {
    /*image-rendering:pixelated;*/
    image-rendering:-webkit-optimize-contrast;
}
/*header img[data-src],*/
footer img[data-src] {
    transition: opacity .3s ease-in;
}
:where(header, footer) img[src='img/px.webp'] {
    opacity: 0;
}


/* Anchors */
a {
    color: currentColor;
    cursor: pointer;
    text-decoration: none;
    /*text-underline-offset: 3px;
    text-decoration-thickness: 1px !important;*/
}
footer :where(a:hover, a:focus) {
    text-decoration: underline;
    color: var(--secondary-color);
}
a img {
    border: 0px solid;
}
a.art_anchor {
    width: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    font-size: 0;
}
a.email > span {
    unicode-bidi: bidi-override;
    direction: rtl;
}


/* Paragraphs */
p {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
}
.content p {
    float: none;
}


/* jQuery UI overrides */
/*body .ui-widget { 
    font-size: 11px; 
}
.sc_only { 
    width: 0px;
    height: 0px;
    overflow: hidden; 
}
@media only screen and (max-width: 1025px) {
    body .ui-widget { font-size: 14px; }
}
@media only screen and (max-width: 650px) {
    body .ui-widget { font-size: 16px; }
}*/


/* Buttons */
button {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: inherit;
    font: inherit;
}


/* Page container */
.page_c {
    width: 100%;
    min-width: 320px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}


/* Accessibility map */
.as_map_c {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
.as_map {
    height: 28px;
    margin: -250px auto 0 auto;
    display: table;
    table-layout: fixed;
    padding: 10px 20px;
    background-color: #FFF;
    transition: margin-top 400ms;
    -webkit-transition: margin-top 400ms;
}
.as_map.opened { margin-top: 0; }
.as_map ul { float: left; margin: 0; padding: 0; list-style: none; }
.as_map ul li { float: left; margin: 15px 10px; }
.as_map ul li > * {
    padding: 7px 12px;
    background-color: var(--tertiary-color);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    text-decoration: none;
}
.as_map ul li > *:focus {
    background-color: var(--white-color);
    outline: 1px dotted var(--secondary-color);
}


/* Header, main and footer commons */
header, .header_image_c,
.main_c, main, 
.footer_c {
	width: 100%;
    float: left;
    position: relative;
    z-index: 0;
}


/* Header */
header {
    height: 100vh;
}
.header_image_c,
.header_image {
    height: 100%;
}


/* Header image container */
.header_image_c::after {
    z-index: 1;
    background-color: rgba(240, 243, 237, 0.2);
}
.header_image_c::after {
    content: '';
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}


/* Header image */
.header_image_c .header_image
{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-image ease 1s;
    -webkit-transition: background-image ease 1s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.header_image_c .header_image .img_c
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform ease 4s;
    transition-delay: 1s;
    transform: none;
}
.header_image_c .header_image .img_c img
{
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    object-fit: cover;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    margin: 0;
    transform: none;
    -webkit-transform: none;
}
/*.header_image_c .slick-list
{
    width: 100%;
    height: 100%;
}
.header_image_c .slider_image
{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.header_image_c .slider_image.current
{
    z-index: 2;
}*/


/* Header logo container */
.header_logo_c {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    z-index: 1;
    text-align: center;
    box-shadow: 5px 10px 8px 0 rgba(0, 0, 0, 0.3);
    background-color: rgba(210, 228, 214, 0.4);
    backdrop-filter: blur(50px);
    transform: translateY(-50%);
}


/* Fixed asides */
.fixed_aside {
    position: fixed;
    z-index: 1;
    gap: 20px;
    display: inline-flex;
    flex-direction: column;
}
:where(.fixed_aside, .menu_anchors) a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 35px;
}
.fixed_aside a:hover {
    background-color: var(--primary-color) !important;
}
.fixed_aside a:where(:hover, :focus) {
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
}
a.aside_contact {
    background-color: var(--green-dark-color);
}
a.aside_contact rect {
    fill: var(--primary-color);
}
a.aside_contact:hover rect {
    fill: var(--white-color);
}
a:where(.aside_anchor, .menu_anchor).gollner {
    background-color: #BDD3C3;
}
a:where(.aside_anchor, .menu_anchor).pool {
    background-color: #11474B;
}
.menu_opened .fixed_aside.right {
    z-index: 2;
}
.menu_opened .aside_anchor {
    opacity: 0;
    visibility: hidden;
} 


/* Menu button */
#menu_btn {
    background-color: var(--secondary-color);
}
#menu_btn .lines {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#menu_btn .line {
    background-color: var(--white-color);
    width: 100%;
    height: 2px;
    border-radius: 2px;
}


/* Menu container */
.menu_c {
    width: 100vw;
    background-color: var(--green-dark-color);
    /*height: calc(100vh - 100px);*/
    min-height: 100vh;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    opacity: 0;
    /*transition: all ease 0.7s, top ease 0.3s;*/
    z-index: 0;
}
.menu_opened .menu_c {
    opacity: 1;
    z-index: 2;
}
/*.h_menu_c*/ /*.menu_c {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    z-index: 1;
}*/
.menu_c .menu {
    width: 100%;
    min-height: 100%;
    /*padding-bottom: 50px;*/
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 2;
}
.deskmenu_c {
    width: 100%;
    max-width: 1100px;
    /*display: flex;
    align-items: center;*/
}


/* Menu items */
.deskmenu_c li:not(.opened) > ul {
    visibility: hidden;
    opacity: 0;
}
.deskmenu_c li.opened > ul {
    visibility: visible;
    opacity: 1;
}
.deskmenu_c > ul {
    position: relative;
    display: flex;
    flex-direction: column;
    /*overflow: auto;*/
    overflow-x: visible;
    margin: 0;
    padding: 0;
    z-index: 1;
}
.deskmenu_c li {
    margin: 0;
    list-style: none;
    display: inline-block;
    z-index: 2;
    text-transform: none;
}
.deskmenu_c li li {
    width: 100%;
}
.deskmenu_c li a {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    margin:0;
    padding: 20px 0;
    position: relative;
    color: var(--primary-color);
    text-decoration: none;
    overflow: hidden;
}
.deskmenu_c li li *:focus {
    outline: none;
    border: none;
}
/*.deskmenu_c li.opened > a,*/
.deskmenu_c ul li.current_link > a,
.deskmenu_c ul a:where(:hover, :focus) {
    color: var(--secondary-color);
}
.deskmenu_c > ul > li > a {
    font-family: var(--primary-font);
    text-transform: uppercase;
    font-weight: 300;
    line-height: 1.4em;
}
.deskmenu_c li li a {
    line-height: 1.5em;
    font-weight: 400;
    /*padding: 12px 10px 12px 55px;*/
    /*opacity: 1;*/
}
.deskmenu_c > ul > li > a > span {
    /*display: inline-block;*/
    position: relative;
    background-color: var(--green-dark-color);
}
.deskmenu_c  > ul > li > ul {
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px 0;
    opacity: 0;
}


















/* Mobile menu */
/*.mobile_menu_btn
{
    display: none;
}

.menu_slide_c
{
    right: 99999px;
    position: absolute;
}*/


/* Main section */
.main_c, .main {
    overflow: hidden;
}


/* Footer */
.footer_c {
    background-color: var(--primary-color);
}
footer {
    display: flex;
    flex-wrap: wrap;
    /*align-items: center;*/
    justify-content: space-between;
    font-family: var(--secondary-font);
    color: var(--white-color);
    /*font-weight: 300;*/
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}
.footer_left {
    text-align: center;
}
.footer_left img {
    display: block;
}
.footer_left p {
    line-height: 1.2em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-top: 30px;
}
.footer_center,
.footer_right {
    align-self: end;
}
.footer_bottom {
    width: 100%;
    max-width: 1300px;
    display: flex;
}


/* Footer social */
.footer_socials * {
    display: inline-block;
}
.social_c {
    position: relative;
}
.social_c.facebook {
    margin: 0 20px;
}
.social_c::before {
    content: '';
    position: absolute;
    display: inline-block;
    opacity: 0;
}
.social_c.instagram::before {
    width: 36px;
    height: 34px;
}
.social_c.facebook::before {
    width: 40px;
    height: 38px;
}
.social_c:where(.instagram, .facebook):where(:hover, :focus)::before {
    opacity: 1;
}
.social_c.instagram:where(:hover, :focus)::before {
    background-image: url('/img/icons/instagram_red.svg');
}
.social_c.facebook:where(:hover, :focus)::before {
    background-image: url('/img/icons/facebook_red.svg');
}
.social_c:where(:hover, :focus) img {
    opacity: 0;
}
.footer_socials span {
    font-weight: 500;
    vertical-align: top;
}


/* Footer internal links */
.footer_bottom a {
    font-weight: 500;
    letter-spacing: 0.1em;
    /*position: relative;*/
    display: inline-flex;
    align-self: baseline;
    float: right;
    line-height: 0.875rem;
}
.footer_bottom a:not(:first-child)::before {
    content: "|";
    float: right;
    color: var(--white-color);
}


/* Algo anchor */
.algo_link {
    white-space: nowrap;
}
.algo_link span:not(.algo_c) {
    vertical-align: top;
    line-height: 14px;
    padding-right: 4px;
}
.algo_c {
    position: relative;
    display: inline-block;
    margin-top: -3px;
    height: 14px;
}
.algo_c::before {
    content: '';
    position: absolute;
    height: 14px;
    width: 46px;
    display: inline-block;
    opacity: 0;
}
.algo_link:where(:hover, :focus) .algo_c::before {
    opacity: 1;
    background-image: url('/img/logos/algo_red.svg');
}
.algo_c img {
    vertical-align: top;
    opacity: 1;
}
.algo_link:where(:hover, :focus) img {
    opacity: 0;
}





/*------------------------- Responsivity - Height ------------------------*/
@media(min-width:651px) and (max-height:1000px) {
    /* Popup interactive map */
    .close_popup {
        margin-bottom: -55px;
    }

    /* Menu container */
    .menu_logo {
        margin-top: 2vh;
        /*margin-bottom: 5vh !important;*/
    }
    .menu_c .menu {
        padding-top: 5vh !important;
    }

    /* Menu container */
    /*.menu_c {
        padding-bottom: 0 !important;
    }*/
}


/*----------------------- Responsivity - Width -----------------------*/
@media(min-width:1367px) {
    /* Menu container */
    .menu_c .menu {
        padding: 11vh 120px 0 120px;
    }

    /* Menu items */
    .deskmenu_c li.top_link {
        width: calc(100% - 460px);
    }
    .deskmenu_c > ul > li > ul {
        width: 460px;
    }
    .deskmenu_c > ul > li > a {
        letter-spacing: 0.15em;
    }

    /* Fixed asides */
    .fixed_aside.left {
        left: 45px;
    }
    .fixed_aside.right {
        right: 45px;
    }

    /* Footer */
    .footer_left {
        width: 474px;
        height: 420px;
        align-self: start;
    }
    .footer_center > div {
        padding-top: 30px;
    }
}

@media(max-width:1366px) {
    /* Fixed asides */
    .fixed_aside.left {
        left: 20px;
    }
    .fixed_aside.right {
        right: 20px;
    }

    /* Footer */
    .footer_left {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .footer_left > * {
        margin-left: auto;
        margin-right: auto;
    }
}

@media(min-width:1026px) and (max-width:1366px) {
    /* Menu items */
    .deskmenu_c li.top_link {
        width: calc(100% - 420px);
    }
    .deskmenu_c > ul > li > ul {
        width: 420px;
    }
    
    /* Footer */
    .footer_right {
        width: 260px;
    }
}

@media(min-width:1026px) {
    /* Body defaults */
    body {
        font-size: 1.25rem;
    }

    /* Menu container */
    .menu_c {
        padding-bottom: 100px;
    }
    /*.menu_logo {
        margin-bottom: 11vh;
    }*/
    /*.menu_c .menu {
        padding-top: 22vh;
    }
    .deskmenu_c {
        justify-content: space-between;
    }*/

    /* Menu items */
    .deskmenu_c > ul > li > a {
        font-size: 2.25rem;
    }
    .deskmenu_c > ul > li > a > span::before {
        top: 26px;
    }

    /* Footer */
    .footer_center,
    .footer_right {
        font-size: 1.125rem;
    }
}

@media(max-width:1025px) {
    /* Accessibility map */
    .as_map_c {
        display: none !important;
    }

    /* Common hides */
    /*.header_logo img,
    .header_contact span,
    .h_menu_c .menu_image_c,
    .fixed_bar.map,
    .fixed_bar :where(.course span, .map span) > span {
        display: none;
    }*/

    
    /* Menu container */
    /*.menu_c {
        top: 70px;
        min-height: calc(100vh - 70px);
    }
    /*.menu_c .menu {
        padding-top: 50px;
    }*/
    /*.deskmenu_c {
        justify-content: center;
    }*/

    /* Menu */
    /*.deskmenu_c > ul {
        width: 100%;
        max-width: 650px;
    }*/















    /*Mobile Menu*/
    /*.mobile_menu_btn
	{
		display:block;
		margin:3px 0;
		padding:0 5px;
		float:right;
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		cursor:pointer;

        font:400 1.125em/120%  Tahoma, sans-serif;
        color: #394E65;
		letter-spacing:0.03em;
		text-transform:uppercase;
	}

    .mobile_menu_btn.closed
	{
	}

	.mobile_menu_btn span
	{
		display:block;
		padding:10px 33px 10px 0;
        position: relative;

	}

    .mobile_menu_btn span:before
    {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        z-index: 2;

        content: '\f00d';
        font-family: "FontAwesome";
        font-size:28px;

    }

	.mobile_menu_btn.closed span:before
	{
		content: '\f0c9';
        font-family: "FontAwesome";
        font-size:28px;
	}*/

    /*Mobile Menu*/
    /*.menu_slide_c
    {
    	width: 320px;
    	float: left;
        padding: 0;
        box-sizing: border-box;
    	position: absolute;
    	top:102px;
    	right: 0;
    	z-index: 6;
    	overflow:hidden;
    	position:absolute;
    	z-index:3;
        box-shadow: 0 10px 10px -5px #666;

    	background: #fff url(../img/logo_boegen_menue.svg) no-repeat;
        background-size: 148px 22px;
        background-position: bottom 22px center;
    }
    .menu_slide_c.closed
    {
    	display: none;
    }

    .menu_slide_c .menusl
    {
    	width: 100%;
    	float: left;
    	position: relative;
    	z-index: 1;
    	overflow: hidden;
    }
    .menu_slide_c .menusl .menuslbox
    {
    	width: 100%;
        padding:20px 36px 60px;
        box-sizing: border-box;
    	position: absolute;
    	top: 0px;
    	left: -100%;
    	z-index: 2;
    }
    .menu_slide_c .menusl .menuslbox.current
    {
    	left: 0%;
    }
    .menusl ul
    {
    	width:100%;
    	margin:0;
    	padding:10px 0;
    	overflow:hidden;
    	box-sizing: border-box;
    	-moz-box-sizing: border-box;
    	-webkit-box-sizing: border-box;
    }

    .menusl ul li
    {
    	width:100%;
    	margin:0;
    	padding:12px 0;
    	box-sizing: border-box;
    	-moz-box-sizing: border-box;
    	-webkit-box-sizing: border-box;
    	list-style:none;


        font:400 1.125em/120% 'Open Sans', Tahoma, sans-serif;
        text-transform: uppercase;
    	letter-spacing:0;
    }

    .menusl ul li:hover,
    .menusl ul li.current_link,
    .menusl ul li.current_path
    {

    }

    .menusl ul li a
    {
    	display:block;
    	width:100%;
        margin: 0;
    	padding:0;
    	box-sizing: border-box;
    	-moz-box-sizing: border-box;
    	-webkit-box-sizing: border-box;
    	text-decoration:none;

    	color: #727D8A;
        text-decoration: none;
    }

    .menusl ul li a span
    {
    }

    .menusl ul li.sub_links a
    {

    }

    .menusl ul li a:focus
    {
        border: none;
        outline: none;
    }

    .menusl ul li:hover a,
    .menusl ul li a:focus,
    .menusl ul li.current_link a,
    .menusl ul li.current_path a
    {
        color: #00A4B4;
    }*/

    /*Mobile Submenu*/
    /*.menusl .submenu
    {
        padding:0 30px 15px 0;
        box-sizing: border-box;
    }

    .menusl .submenu li
    {
        padding: 0 15px;
        padding:15px 0;
        border-bottom: 2px dotted #838E98;
        text-transform: none;
        font:400 0.95em/120% 'Open Sans', Tahoma, sans-serif;
    }

    .menusl .submenu li,
    .menusl .submenu li:nth-child(2n+1)
    {
    }

    .menusl .submenu li a
    {

    }

    .menusl .submenu li:hover a,
    .menusl .submenu li a:focus,
    .menusl .submenu li.current_path a,
    .menusl .submenu li.current_link a
    {
    }

    .menusl .submenu li a span
    {
    }

    .menusl .submenu li:hover a span,
    .menusl .submenu li a:focus span,
    .menusl .submenu li.current_path a span,
    .menusl .submenu li.current_link a span
    {

    }

    .menusl .submenu li.mm_parent
    {
        text-transform: uppercase;
        font-size: 1.125em;
        letter-spacing: 0;
        border-bottom: 4px dotted #838e98;
        margin-bottom: 9px
    }

    .menusl .submenu li.mm_parent a
    {
    }

    .menusl .submenu li.mm_parent a span
    {
        padding: 17px 0;
    }


    .menusl .submenu li.mm_parent a span::before
    {
        content: none;
    }

    .menusl .submenu li.mm_parent:hover a span,
    .menusl .submenu li.mm_parent a:focus span,
    .menusl .submenu li.mm_parent.current_link a span,
    .menusl .submenu li.mm_parent.current_path a span
    {

    }

    .menusl .submenu li.back_link
    {
        border-bottom: none;
    }

    .menusl .submenu li.back_link a
    {
        position: relative;
        padding-left: 20px;

    }

    .menusl .submenu li.back_link a::before
    {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        content: '\f100';
        font-family: "FontAwesome";
        font-size:16px;
    }

    .menusl .submenu li.back_link a:hover
    {
    }*/
}

@media(min-width:851px) and (max-width:1366px) {
    /* Footer */
    .footer_center {
        width: calc(100% - 260px);
        padding-top: 75px;
    }
    .footer_socials {
        padding-top: 30px;
    }
}

@media(min-width:851px) and (max-width:1025px) {
    /* Footer */
    .footer_right {
        width: 230px;
    }
}

@media(min-width:851px) {
    /* Footer */
    .footer_bottom {
        padding-top: 75px;
        justify-content: end;
    }
    .footer_right {
        padding-bottom: 77px;
    }
}

@media(max-width:850px) {
    /* Footer */
    footer > div {
        width: 100%;
        text-align: center;
    }
    .footer_center,
    .footer_bottom {
        padding-top: 50px;
    }
    .footer_socials {
        padding: 50px 0;
    }
    .footer_bottom {
        justify-content: center;
    }
}

@media(min-width:769px) and (max-width:1366px) {
    /* Menu container */
    .menu_c .menu {
        padding: 9vh 95px 0 75px;
    }
}

@media(min-width:769px) and (max-width:1025px) {
    /* Menu container */
    /*.menu_logo {
        margin-bottom: 13vh;
    }*/

    /* Menu items */
    .deskmenu_c li.top_link {
        width: calc(100% - 250px);
    }
    .deskmenu_c > ul > li > ul {
        width: 250px;
    }
}

@media(min-width:769px) {
    /* Header */
    .header_logo_c {
        padding: 125px 0;
    }

    /* Menu button */
    #menu_btn .lines {
        width: 36px;
        gap: 11px;
    }
    .menu_opened #menu_btn .lines .line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .menu_opened #menu_btn .lines .line:nth-child(2) {
        transform: translateY(-6px) rotate(-45deg);
    }

    /* Menu anchors */
    .menu_anchors a {
        display: none;
    }

    /* Fixed asides */
    .fixed_aside {
        top: 50%;
        transform: translateY(-50%);
    }
    .aside_contact {
        width: 50px;
        height: 50px;
    } 
    .fixed_aside.right a {
        width: 72px;
        height: 72px;
    }

    /* Footer */
    .footer_c {
        padding: 135px 150px 50px 150px;
    }
}

@media(max-width:768px) {
    /* Header logo */
    .header_logo_c {
        padding: 100px 80px;
    }
    .header_logo img {
        max-width: 300px;
        width: 100%;
        height: auto;
    }

    /* Menu container */
    .menu_logo {
        padding-top: 10px;
    }
    .menu_c .menu {
        padding: 5vh 40px 4vh 40px;
    }
    .menu_anchor.gollner {
        margin-right: 20px;
    }

    /* Menu button */
    #menu_btn .lines {
        width: 26px;
        gap: 8px;
    }
    .menu_opened #menu_btn .lines .line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .menu_opened #menu_btn .lines .line:nth-child(2) {
        transform: translateY(-4px) rotate(-45deg);
    }

    /* Fixed asides */
    .fixed_aside {
        top: 30px;
    }
    :where(.fixed_aside, .menu_anchors) a {
        width: 50px;
        height: 50px;
    }
    .aside_anchor {
        display: none;
    }

    /* Footer */
    .footer_c {
        padding: 65px 40px 20px 40px;
    }
}


@media(min-width:651px) and (max-width:1366px) {
    /* Menu items */
    .deskmenu_c > ul > li > a {
        letter-spacing: 0.1em;
    }

    /* Footer */
    .footer_left img {
        height: 95px;
    }
    .footer_left :where(img, p) {
        max-width: 425px;
    }
}

@media(min-width:651px) and (max-width:1025px) {
    /* Body defaults */
    body {
        font-size: 1.125rem;
    }

    /* Menu items */
    .deskmenu_c > ul > li > a {
        font-size: 1.75rem;
    }
    .deskmenu_c > ul > li > a > span::before {
        top: 21px;
    }

    /* Footer */
    .footer_center,
    .footer_right {
        font-size: 1rem;
    }
}

@media(min-width:651px) and (max-width:850px) {
    
}

@media(min-width:651px) and (max-width:768px) {
    .menu_logo {
        width: 393px;
        height: 150px;
        /*margin-bottom: 80px;*/
    }

    /* Menu items */
    .deskmenu_c li.top_link {
        width: calc(100% - 220px);
    }
    .deskmenu_c > ul > li > ul {
        width: 220px;
    }
}

@media(min-width:651px) {
    /* Menu container */
    .menu_c {
        padding-bottom: 100px;
    }

    /* Menu items */
    .deskmenu_c li li a {
        padding: 7px 0 8px 30px;
    }
    .deskmenu_c > ul > li > a > span::before {
        content: '';
        position: absolute;
        z-index: -1;
        right: -20px;
        transform: translateX(100%);
        width: 0;
        height: 1px;
        background-color: var(--primary-color);
        transition: width ease 0.5s;
    }
    /*.deskmenu_c ul > li > a:where(:hover, :focus) > span::before,
    .deskmenu_c ul > li:where(.opened, .current_link, .current_path) > a > span::before {
        width: 370px;
    }*/
    .deskmenu_c ul > li.opened > a > span::before {
        width: 420px;
    }

    /* Footer */
    .footer_center,
    .footer_right {
        letter-spacing: 0;
    }
    .footer_socials span {
        font-size: 0.875rem;
        margin-top: 6px;
    }
    .footer_bottom a {
        font-size: 0.75rem;
    }
    .footer_bottom a:not(:first-child)::before {
        padding: 0 10px;
    }
}

@media(max-width:650px) {
    /* Body defaults */
    body {
        font-size: 0.938rem;
    }

    /* Menu container */
    .menu_c {
        padding-bottom: 50px;
    }
    .menu_logo {
        /*margin-bottom: 9vh;*/
        width: 40vw;
        min-width: 145px;
        height: auto;
    }

    /* Menu */
    /*.menu_c .menu {
        padding-left: 30px;
        padding-right: 30px;
    }*/

    /* Menu items */
    .deskmenu_c > ul > li.link_down > a {
        padding-right: 20px;
    }
    .deskmenu_c > ul > li.link_down > a::after {
        content: '';
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        width: 13px;
        height: 7px;
        background-size: 100% 100%;
        transition: all ease var(--animation-duration);
    }

    /* Menu items */
    .deskmenu_c > ul > li {
        border-bottom: 1px solid var(--primary-color);
    }
    .deskmenu_c > ul > li > a {
        letter-spacing: 0.15em;
        font-size: 1.313rem;
        padding: clamp(10px, 2.2vh, 20px) 0;
    }
    .deskmenu_c > ul > li.link_down.opened > a::after {
        transform: translateY(-50%) rotate(180deg);
    }
    .menu_opened .deskmenu_c > ul > li.link_down > a::after {
        background-image: url(../img/icons/angle_down_green.svg);
    }
    .menu_opened .deskmenu_c > ul > li.link_down.opened > a::after {
        background-image: url(../img/icons/angle_down_red.svg);
    }
    .deskmenu_c > ul > li > ul {
        position: static;
        right: auto;
        padding: 0;
        transition: none;
        opacity: 1;
        overflow: hidden;
        max-height: 0;
        transition: all ease var(--animation-duration);
    }
    .deskmenu_c > ul > li.opened > ul {
        max-height: 800px;
        padding-bottom: clamp(15px, 3vh, 30px);
    }
    .deskmenu_c li li a {
        font-size: 1.125rem;
        letter-spacing: 0.03em;
        padding: 3px 0 3px 20px;
    }
    .deskmenu_c li li a::before {
        content: "- ";
    }

    /* Footer */
    .footer_left img {
        width: 284px;
        height: 67px;
    }
    .footer_left p {
        max-width: 320px;
    }
    .footer_center,
    .footer_right {
        font-size: 0.813rem;
        letter-spacing: 0.05em;
    }
    .footer_socials span {
        font-size: 0.75rem;
        margin-top: 8px;
    }
    .footer_bottom a {
        font-size: 0.688rem;
    }
    .footer_bottom a:not(:first-child)::before {
        padding: 0 6px;
    }
}

@media(max-width:374px) {
    /* Footer */
    .footer_left img {
        width: 100%;
        height: auto;
    }
    .footer_bottom {
        flex-wrap: wrap;
    }
    .algo_link {
        margin-top: 15px;
    }
    .algo_link::before {
        display: none;
    }
}