/* Global style --------------- */
/*@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins-Regular.ttf');
    font-weight:normal;
    font-style:normal;
}*/
html,
body {
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    --mobile-width: 768px;
}

html {
    scroll-behavior: smooth;
    font-size: 10px;
}

body {
    background-color: #fbfbfb;
    color: black;
    font-family: 'Arial', sans-serif;
    padding: 0px;
    margin: 0;
    word-break: break-word;
}

a {
    text-decoration: none;
    color: black;
    cursor: pointer;
}

h1 {
    font-size: 3.5rem;
    line-height: 4.5rem;
    font-weight: 800;
}

@media(max-width:1024px) {
    h1 {
        font-size: 3.5rem ;
        line-height: 4.5rem ;
    }
}

@media(max-width:768px) {
    h1 {
        font-size: 2.5rem ;
        line-height: 3.4rem ;
    }
}

h2 {
    font-size: 4rem;
    font-weight: 600;
    line-height: 4.5rem;
    margin: 16px 0px 8px 0;
}

@media(max-width:768px) {
    h2 {
        line-height: 3.4rem;
    }
}

h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 45px 0px 8px 0px;
}

h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 8px 0px;
}

h5 {
    font-size: 2.5rem;
    font-weight: 600;
}

h6 {
    font-size: 2rem;
    font-weight: 600;
}

p {
    color: #000;
    line-height: 2.8rem;
    font-size: 1.6rem;
    margin: 10px 0px 20px 0px;
}

strong {
    color: #1b1d27;
    font-size: 1.6rem;
}

@media(max-width:768px) {

    p,
    strong {
        font-size: 1.5rem;
        line-height: 2.6rem;
    }
}

blockquote {
    font-size: 1.6rem;
    color: #36006d;
    font-weight: 700;
}

li {
    color: #343434;
    margin: 10px 0px;
    line-height: 2.3rem;
}



.green-500 {
    color: #427c02;
    font-weight: 500;
}

.green-500:hover {
    text-decoration:underline;
}

.green-700 {
    color: #427c02;
    font-weight: 700;
}

.green-700:hover {
    text-decoration:underline;
}

hr {
    border: 0px;
    height: 1px;
    background-color: #e5e5e5;
    margin: 25px auto;
}

.short-way>hr {
    border: 0px;
    height: 1px;
    background-color: #e5e5e5;
    margin: 10px auto 15px auto;
}


.circle-link{
	width: 14px;
    height: 14px;
    border-radius: 100%;
    background-color: #427c02;
    display: inline-block;
    margin: 0px 5px 0px 2px;
	position: relative;
    top: 1px;
  }

/* Global style END ---------------------*/


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

.header-margin {
    margin-bottom: 140px;
    margin-bottom: 70px;
    z-index: 150;
    transition: 0.1s;
}

@media(max-width:768px) {

    .header-margin {
        margin-bottom: 50px;
    }
}

.sticky {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
}

.sticky-header {
    background-color: #fbfbfb;
    margin: auto;
    border-bottom: 1px solid #f2f2f2;
    z-index: 150;
}

.sticky-header-shadow {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(186, 186, 186, 1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(186, 186, 186, 1);
    box-shadow: 0px 0px 10px 0px rgba(186, 186, 186, 1);
}


/* animacja zmniejszania i zwiększania wysokości headera */

.header-shrink {
    animation: shrinkHeight 0.3s 0.1s both;
}

@keyframes shrinkHeight {
    0% {
        height: 70px;
    }

    100% {
        height: 55px;
    }
}

.header-grow {
    animation: growHeight 0.3s 0.1s both;
}

@keyframes growHeight {
    0% {
        height: 55px;
    }

    100% {
        height: 70px;
    }
}


/* --------------------------------------------- */


/* animacja zmniejszania i zwiększania logo */

.logo-shrink {
    animation: shrinkLogoHeight 0.3s 0.1s both;
}

@keyframes shrinkLogoHeight {
    0% {
        height: 60px;
        width: 158px;
    }

    100% {
        height: 45px;
        width: 118px;
    }
}

.logo-grow {
    animation: growLogoHeight 0.3s 0.1s both;
}

@keyframes growLogoHeight {
    0% {
        height: 45px;
        width: 118px;
    }

    100% {
        height: 60px;
        width: 158px;
    }
}


/* ------------------------------------------------*/


/* animacja zmniejszania napisów pod linkami w menu */

.link-menu-shrink {
    animation: shrinkLinkMenu 0.1s 0.1s both;
}

@keyframes shrinkLinkMenu {
    0% {
        font-size: 1.4rem;
        margin-top: 5px;
    }

    100% {
        font-size: 0px;
        margin-top: 0;
    }
}

.link-menu-grow {
    animation: growLinkMenu 0.1s 0.1s both;
}

@keyframes growLinkMenu {
    0% {
        font-size: 0px;
        margin-top: 0px;
    }

    100% {
        font-size: 1.4rem;
        margin-top: 5px;
    }
}


/* ---------------------------------------------- */


/* animacja zmniejszania napisów pod pogodą */

.link-weather-shrink {
    animation: shrinkWeatherLink 0.1s 0.1s both;
}

@keyframes shrinkWeatherLink {
    0% {
        color: black;
    }

    100% {
        color: white;
    }
}

.link-weather-grow {
    animation: growWeatherLink 0.1s 0.1s both;
}

@keyframes growWeatherLink {
    0% {
        color: white;
    }

    100% {
        color: black;
    }
}


/*----------------------------------------------- */

.sticky-header-container {
    width: 92%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0px 0;
    display: flex;
    height: 70px;
    justify-content: space-between;
    box-sizing: border-box;
    gap:2%;

}

@media(max-width:1024px) {
    .sticky-header-container {
        justify-content: space-between;
       /* width: 96%;*/
    }
}

@media(max-width:768px) {
    .sticky-header-container {

        padding: 0  0;
        height: 55px;
    }
}
/*@media(max-width:380px) {
    .sticky-header-container {
        width: 92%;
    }
}
*/


/* logo START---------------------------- */

.header-logo {
    /*min-width: 200px;*/
    display: flex;
    align-items: flex-start;
    margin-right:10px;
    height: 60px;
    width: 158px;
    /*min-width:158px;*/
    min-width:115px;
}
@media(max-width:768px) {
    .header-logo {
        min-width:auto;
        height: 45px;
        width: 145px;
        min-width:115px;
    }
}


a.header-logo-link {
    display: flex;
    align-items: flex-start;
    width:100%;
    height:100%;
}

.header-logo-img{
    width:100%;
    height:100%;
}

.header-logo-img>svg {
    width:100%;
    height:100%;
}
@media(max-width:768px) {
    .header-logo-img>svg {
        width:100%;
        height:100%;
    }
}


/* logo END ---------------------------- */

.header-weather {
    width: 20%;
    min-width: 260px;
    margin-left: 5px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    font-size: 1.5rem;
    margin-right: 0;
    position: relative;
}

@media(max-width:1400px) {
    .header-weather {
        margin-right: 0;
    }
}

@media(max-width:1300px) {
    .header-weather {
        margin-right: 0;
    }
}

@media(max-width:1230px) {
    .header-weather {
        margin-right: 0;
    }
}

@media(max-width:1190px) {
    .header-weather {
        margin-right: 0;
    }
}
@media(max-width:1100px) {

    .header-weather {
        margin-right: 0%;
    }
}
@media(max-width:950px) {

    .header-weather {
        margin-right: 0%;
    }
}
@media(max-width:560px) {

    .header-weather {
        align-items: center;
        min-width: 116px;
    }
}

@media(max-width:352px) {
    .header-weather {
        display: none;
    }
}

.header-weather-top {
    display: flex;
    justify-content: center;
    align-items: center;
}

.weather {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -4px;
}

.weather-icon {
    height: 100%;
    max-height: 40px;
    margin-right: 5px;
    height: 40px;
    width: 40px;
}

.weather-temp-city {
    border-right: 1px solid #e4e4e4;
    padding-right: 8px;
    margin-right: 8px;
}
@media(max-width:768px){
    .weather-temp-city {
        margin-right:0;
        padding-right:0;
    }
}

.weather-temp {
    font-size: 2rem;
    font-weight: 500;
}

.weather-city {
    font-size: 1.1rem;
    font-weight: 600;
    margin-right: 0;
    transition: 0.1s;
}

.weather-city:hover {
    color: #cb209f;
    cursor: pointer;
    transition: 0.1s;
}

.header-air-condition {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header-air-circle {
    width: 20px;
    height: 20px;
    background-color: #d2fbd2;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 5px 0 0px;
}

.header-air-circle>div {
    width: 7px;
    height: 7px;
    background-color: #32d332;
    border-radius: 10px;
}

.header-air-title {
    font-size: 1rem;
    margin-left: -24px;
}

.header-air-subtitle {
    font-size: 1.2rem;
    margin-top: 8px;
    font-weight: 600;
    color: #32d332;
}

.header-weather-bottom {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    margin-top: 7px;
}

.h-w-b-shrink {
    animation: hwbShrink 0.3s 0.1s both;
}

@keyframes hwbShrink {
    0% {
        height: 13px;
    }

    100% {
        height: 0;
    }
}

.h-w-b-grow {
    animation: hwbGrow 0.3s 0.1s both;
}

@keyframes hwbGrow {
    0% {
        height: 0;
    }

    100% {
        height: 13px;
    }
}

#href-48h {
    padding-left: 10px;
    padding-right: 10px;
}

.header-weather-bottom>span {
    font-size: 1rem;
}

.header-weather-bottom>a {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
}

.header-weather-bottom>a:hover {
    text-decoration: underline;
    color: #55cb20;
}

.weather-choose-city {
    position: absolute;
    top: 55px;
    left: 0;
    width: 200px;
    height: 290px;
    max-height: 100vh;
    /*overflow-Y: scroll;*/
    background-color: #fbfbfb;
    padding: 20px;
    font-size: 1.5rem;
    z-index: 120;
    -webkit-box-shadow: 0px 10px 25px 0px rgba(128, 128, 128, 0.32);
    -moz-box-shadow: 0px 10px 25px 0px rgba(128, 128, 128, 0.32);
    box-shadow: 0px 10px 25px 0px rgba(128, 128, 128, 0.32);
}

.choose-city-x {
    display: inline-flex;
    cursor: pointer;
    width: 22px;
    height: 20px;
    float: right;
}

.choose-city-l1 {
    width: 2px;
    height: 20px;
    transform: rotate(45deg);
    background-color: black;
    position: relative;
    left: 10px;
}

.choose-city-l2 {
    width: 2px;
    height: 20px;
    transform: rotate(-45deg);
    background-color: black;
    position: relative;
    left: 8px;
}

.choose-city {
    margin: 5px 20px;
    cursor: pointer;
    transition: 0.1s;
}

.choose-city:hover {
    color: #cb209f;
    transition: 0.1s;
}


/* nav menu ---------------------------- */

.sticky-nav {
    width: 70%;
    margin-left: 0%;
    margin-right: 0%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    /*justify-content: space-evenly;*/
}



.sticky-subnav {
    display: flex;
    justify-content: flex-end;
    gap:10px;
}

@media(max-width:1218px){
    .sticky-subnav{
        gap:0;
    }
}
@media(max-width:1024px){
    .sticky-subnav{
        display:none;
        background-color: #fbfbfb;
        flex-direction: column;
        position: fixed;
        height: 100vh;
        justify-content: flex-start;
        top: 0;
        right: 0;
        min-width: 200px;
        width: 50%;
        padding: 20px 0 50px;
        box-sizing: border-box;
        overflow-y:scroll;
        -webkit-box-shadow: 0px 0px 10px 0px rgba(186, 186, 186, 1);
        -moz-box-shadow: 0px 0px 10px 0px rgba(186, 186, 186, 1);
        box-shadow: 0px 0px 10px 0px rgba(186, 186, 186, 1);
        z-index:100;
    }
}
@media(max-width:768px){
    .sticky-subnav{
        width: 100%;
    }
}

.sticky-subnav::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: rgba(0,0,0,0); /* or add it to the track */
}

.sticky-subnav::-webkit-scrollbar-thumb{
    width:8px;
    border-radius:10px;
    background-color: rgba(0,0,0,0.2);
}

.sticky-subnav-top{
    display: none;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 20px;
}
@media(max-width:1024px) {
    .sticky-subnav-top{
        display:flex;
    }
}

.sticky-subnav-top-h{
    font-size: 2rem;
    padding-left: 40px;
    font-weight: 600;
}

.link-menu {
    font-size: 1.4rem;
    font-weight: 700;
    transition: 0.1s;
}

@media(max-width:1218px){
    .link-menu {
        font-size: 1.25rem;
    }
}

@media(max-width:1024px){
    .link-menu {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 40px;
        text-align: center;
        font-weight: 600;
        font-size: 1.8rem!important;
        margin: 0px 0;
        padding: 0;
    }
}

.link-menu:hover {
    color: #55cb20;
    transition: 0.1s;
}

.link-menu:hover>div {
    color: #55cb20;
    transition: 0.1s;
}

@media(max-width:1024px){
    .link-menu svg{
        display:none;
    }
}

.link-menu2 {
    font-size: 1.4rem;
    font-weight: 400;
    transition: 0.1s;
}

.link-menu2:hover {
    color: #55cb20;
    transition: 0.1s;
}

.column-menu {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    margin-right: 10px;
    margin-left: 10px;
}
@media(max-width: 1218px) {
    .column-menu {
        margin-right: 4px;
        margin-left: 4px;
    }
}
@media(max-width: 1024px) {
    .column-menu {
        /*display: none;*/
    }
}

.column-menu>ul {
    display: none;
    width: 100px;
    background-color: #fff;
    text-align: left;
    padding: 10px 20px 10px 30px;
    -webkit-box-shadow: 0px 8px 15px 0px rgb(128 128 128 / 10%);
    -moz-box-shadow: 0px 8px 15px 0px rgb(128 128 128 / 0.10);
    box-shadow: 0px 8px 15px 0px rgb(128 128 128 / 10%);
}
@media(max-width: 1024px) {
    .column-menu>ul{
        color: black !important;
        display: flex;
        flex-direction:column;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-weight: 500;
        font-size: 1.4rem;
        margin: 0px 0;
        padding: 0;
        list-style-type:none;
        background-color:rgba(0,0,0,0);
        box-shadow:none;
        border:none;
        width:100%;
    }
}

.column-menu>ul li {
    border-bottom: 1px dotted silver;
    font-size: 1.2rem !important;
    line-height:2.3rem;
	margin: 6px 2px;
}
.column-menu>ul>li::marker {
    color: #000;
}
.column-menu>ul>li::marker:hover {
    color: #427c02;
}

.column-menu>ul>li>a {
	display: block;
}
@media(min-width: 1025px) {
.column-menu>ul>li a:hover {
	background-color: #fbfbfb;
	border-radius: 4px;
}
}
.column-menu svg{
    transform: rotate(90deg);
    width:1.4rem;
    position:relative;
    top:2px;
}

@media(min-width:1025px){

    .column-menu {
        padding: 20px 0px;
    }

    .column-menu:hover>ul{
        display: block;
        position: absolute;
        top: 50px;
        width: auto;
        border-radius: 8px;
    }
}

.column-menu>a>img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
}

.column-menu>a>div {
    margin-top: 5px;
}

.header-socials {
    display: flex;
    flex-direction: row;
}

.header-socials>a {
    margin-left: 5px;
    margin-right: 5px;
}

.header-socials>a>i {
    background-color: #fbfbfb;
    box-shadow: none;
    transition: 0.2s;
}

.header-socials>a>i:hover {
    box-shadow: none;
    background-color: #e7e7e7;
    transition: 0.2s;
}

.header-socials>a>i:before {
    height: 16px;
}


@media(max-width:1185px) {
    .header-socials {
        display: none;
    }
}

.my-hamburger-menu{
    color: white;
    min-width: 25px;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    display:none;
}
.my-hamburger-menu img, .my-hamburger-menu svg{
    width: 25px;
    height: 25px;
    cursor:pointer;
}

.mobile-menu-line {
    display:none;
}

@media(max-width:1024px) {

.mobile-menu-line {
    height: 2px;
    width: 50px;
    background-color: #cb209f;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 30px;
}
}

@media(max-width:1024px) {
    .my-hamburger-menu {
        display: flex;
    }

    .my-hamburger-menu {
        align-items: center;
    }
}



.my-x {
    display:none;
}

@media(max-width:1024px) {
    .my-x {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-right: 26px;
        margin-bottom: 0px;
    }

    .my-x-close {
        width: 34px;
        height: 34px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        margin-left: -30px;
    }

    .my-x-1 {
        width: 2px;
        height: 30px;
        background-color: black;
        transform: rotate(45deg);
        margin-left: 0px;
    }

    .my-x-2 {
        width: 2px;
        height: 30px;
        background-color: black;
        transform: rotate(135deg);
        margin-left: -2px;
    }
}
@media(max-width:500px) {
    .my-x {
        margin-right: 10px;
    }
}
@media(max-width:1024px) {

    .my-mobile-menu::-webkit-scrollbar {
        width: 0px;
        height: 0px;
    }

    .my-mobile-menu {
        min-width: 100%;
        width: 100%;
        max-width: 100vw;
        height: calc(100vh - 30px - 40px);
        position: fixed !important;
        left: 0;
        top: 0;
        background-color: #fbfbfb;
        padding: 30px 0 40px 0;
        display: none;
        z-index: 150;
        overflow: scroll;
    }

    .mobile-menu-link2:last-child {
        margin-bottom: 40px;
    }



    .logo-mobile-menu-flex {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 0;
    }

    .logo-mobile-menu-link {
        display: block;
        height: auto;
        padding: 0;
        text-align: center;
        margin-top: 8px;
    }

    .logo-mobile-menu-link>img {
        height: 56px;
        width: auto;
        margin-bottom: 10px;
    }

    .header-socials {
        justify-content: center;
    }



    .mobile-menu-link {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 40px;
        text-align: center;
        font-weight: 600;
        font-size: 1.8rem;
        margin: 0px 0;
        padding: 0;
    }

    .mobile-menu-link2 {
        color: black !important;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 30px;
        text-align: center;
        font-weight: 500;
        font-size: 1.4rem;
        margin: 0px 0;
        padding: 0;
    }

    .mobile-menu-button {
        border: 2px solid #88af1a;
        color: #88af1a;
        font-weight: 500;
        margin: 0 10%;
        display: block;
        width: calc(80% - 34px);
        text-align: center;
        padding: 12px 15px;
        font-size: 1.6rem;
        margin-top: 20px;
        transition: 0.3s;
    }

    .mobile-menu-button:hover {
        transition: 0.3s;
        background-color: #88af1a;
        color: white;
    }
}

@media(max-width:950px) {
    .sticky-nav {
        margin-left: 1%;
    }
}


@media(max-width:768px) {

    .header-logo-img>img {
        height: 33px;
    }

    .header-weather-bottom {
        display: none;
    }
}

@media(max-width:560px) {

    .header-air-condition {
        display: none;
    }

    .header-weather-bottom>span {
        display: none;
    }

    .weather-temp-city {
        border: none;
    }
}

@media(max-width:560px) {
    .header-logo-link>.header-logo-img>img {
        height: 33px !important;
    }

}

@media(max-width:380px) {

    .header-logo-link>.header-logo-img>img {
        height: 30px !important;
    }

}

.search-box{
    display:flex;
    align-items: center;
    cursor:pointer;
}
@media(max-width:1024px) {
    .search-box{
        margin-left:10px;
    }
}
.search-box img{
    width: 20px;
    height: 19px;
    padding:8px;
    margin-right:-10px;
}
.search-box>img:hover{
    background-color:#f2f0f4;
    border-radius:6px;
}
.search-box form{
    display:none;
    position:absolute;
    right: 0;
    width: 100%;
    top: 70px;
    background-color: #f2f0f4;
    padding: 20px;
    box-sizing: border-box;
    justify-content: center;
    z-index:100001;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
}
@media(max-width:1024px) {
    .search-box form{
        top:50px;
    }
}
.search-box input{
    width: 400px;
    max-width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 20px 0 0 20px;
    outline:none;
    border:none;
}

.search-box input{
    width: 400px;
    max-width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border-radius: 10px 0 0 10px;
    border:2px solid rgb(231, 227, 235);;
    border-right:none;
}
@media(max-width:1024px) {
    .search-box input{
        width: calc(100% - 128px);
    }
}

.search-box input:focus{
    border:2px solid rgb(159, 141, 177);
    border-right:none;
}

.search-box button{
    border-radius: 0 10px 10px 0;
    background-color:#36006d;
    color:#fff;
    font-weight:600;
    outline:none;
    border:none;
    padding:0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:6px;
    font-size:1.5rem;
    cursor:pointer;
}
@media(max-width:1024px) {
    .search-box button{
        width:100px;
        padding: 0 12px 0 4px;
    }
}
.search-box button:hover{
    background-color: #6d4298;
}

.search-box-cover{
    display:none;
    position: fixed;
    z-index:10000;
    width:100%;
    left:0;
    top:0;
    height:100vh;
    background-color: #9a8eb442;
}


/* menu header END---------------------------- */


/* style do diva z reklamą */

.ascript {
    overflow: hidden;
    width: 100%;
    height: 280px!important;
    background: #f2f2f2 url(img/tlo-r.svg) center center no-repeat;
    background-size: 90px;
}

@media(max-width:500px) {
    .ascript {
        height: 400px;
    }
}

@media(max-width:400px) {
    .ascript {
        height: 350px;
    }
}

@media(max-width:360px) {
    .ascript {
        height: 280px;
    }
}

/* style do diva z reklamą END */


/* bottom menu bar START */
@media(min-width:769px){
    .menu-bar{
        display:none!important;
    }
}
@media(max-width:768px){
    .menu-bar{
        display:none;
        position:fixed;
        width:100%;
        left:0;
        bottom:0;
        height:60px;
        background-color:#fff;
        -webkit-box-shadow: 0px 0px 10px 0px rgba(186, 186, 186, 1);
        -moz-box-shadow: 0px 0px 10px 0px rgba(186, 186, 186, 1);
        box-shadow: 0px 0px 10px 0px rgba(186, 186, 186, 1);
        width: 100%;
        box-sizing:border-box;
        display:flex;
        justify-content: space-around;
        align-items: center;
        padding: 34px 0;
    }
}

.column-menu>ul>li>a.link-submenu{
    display: flex;
    justify-content: space-between;
    margin-right: -15px;
    padding-right: 10px;
}
@media(max-width:1024px){
    .column-menu>ul>li>a.link-submenu{
        justify-content: center;
        color: black !important;
        display: flex;
        align-items: center;
        height: 30px;
        text-align: center;
        font-weight: 500;
        font-size: 1.4rem;
        margin: 0px 0;
        padding: 0;
        gap:4px;
    }
}

.link-submenu .arrow{
    transform: rotate(270deg);
}
@media(max-width:1024px){
    .link-submenu .arrow{
        transform: rotate(0deg);
    }
}

.column-menu .li-submenu{
    position: relative;
}

.submenu{
    display:none;
    position: absolute;
    width: 200px;
    flex-direction: column;
    left: 100%;
    left: calc(100% + 10px);
    background-color: #fff;
    list-style-type:none;
    padding-left: 10px;
    top:-10px;
    border-radius:10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 4px 2px;
    -webkit-box-shadow: 1px 1px 6px 0px rgb(128 128 128 / 10%);
    -moz-box-shadow: 1px 1px 6px 0px rgb(128 128 128 / 0.10);
    box-shadow: 1px 1px 6px 0px rgb(128 128 128 / 10%);
}
@media(max-width:1024px){
    .submenu{
        display:flex;
        position: relative;
        box-shadow: none;
        border:none;
        left:0;
        background-color:rgba(0,0,0,0);
        padding-left:5px;
        width:auto;
    }
}

.submenu a{
    display:block;
}
@media(max-width:1024px){
    .submenu a{
        color:#494949;
    }
}

.column-menu .submenu>li{
    margin: 6px 10px 2px ;
}
@media(max-width:1024px){
    .column-menu .submenu>li{
        border:none;
    }
}

.submenu>li:last-child{
    border:none;
}


.li-submenu:hover .submenu{
    display:flex;
}

.link-btn, .link-btn-open-div{
    display:flex;
    flex-direction: column;
    align-items: center;
    gap:5px;
    max-width: 25%;
    cursor:pointer;
}

.menu-bar img, .menu-bar svg{
    width:30px;
    height:30px;
}

.menu-bar span{
    font-size:1.2rem;
    text-align: center;
}



#red-dot{
    animation: circle-job-grow 1s 0s linear infinite;
    animation-duration: 0.1s 0.1s 0.3s;

}

/*#red-dot:before{
    content:"x";
    width:100px;
    height:100px;
    display:block;

}*/

@keyframes circle-job-grow{


    0%{
        r: 5.75;
        /*stroke:rgba(255,255,255,0);*/
        fill: rgb(214 0 0 / 50%);
    }

    50%{
        r: 7;
        stroke: rgb(214 0 0 / 20%);
        fill: rgb(214 0 0 / 20%);
    }

    80%{
        r: 7.8;
        stroke: rgb(214 0 0 / 10%);
        fill: rgb(214 0 0 / 10%);
    }

    100%{
        r: 7.8;
        stroke: rgb(214 0 0 / 0%);
        fill: rgb(214 0 0 / 0%);
    }
}

.cover-directions{
    display:none;
    position:fixed;
    width:100%;
    height:100vh;
    z-index:10000;
    justify-content: center;
    align-items: flex-end;
    bottom: 68px;

}

.directions-wrapper{
    background-color: #fff;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;

    font-size: 1.6rem;
    -webkit-box-shadow: 0px -6px 10px 0px rgba(186, 186, 186, 0.3);
    -moz-box-shadow: 0px -6px 10px 0px rgba(186, 186, 186, 0.3);
    box-shadow: 0px -6px 10px 0px rgba(186, 186, 186, 0.3);
    padding:25px 30px;
    box-sizing:border-box;
    width:100%;
}

.directions-wrapper a{
    padding: 10px;
}
/* bottom menu bar END */