.container{
    max-width: calc(1398px + 140px);
}

.sticky{
    position: sticky;
    z-index: 1050;
    inset: 0 auto auto 0;
    background-color: var(--white);
}

.sticky .container,
.sticky .navbar{
    height: inherit;
}

.sticky .navbar{
    align-items: stretch;
    padding: 0;
}

.sticky .navbar-brand{
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    margin-right: clamp(1rem,6.97vw,134px);
}

.sticky .navbar-brand img{
    width: clamp(10px,12vw,146px);
    max-width: unset;
}

.sticky .navbar>*:has(.menu){
    display: flex;
    display: -webkit-flex;
    align-items: stretch;
    width: fit-content;
}

.sticky .menu{
    display: flex;
    display: -webkit-flex;
    align-items: stretch;
    width: fit-content;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sticky .menu>*{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    border-bottom: 7px solid transparent;
}

.sticky .menu>*.current-menu-item{
    border-color: var(--main);
}

.sticky .menu>*:not(:last-child){
    margin-right: clamp(1rem,4.16vw,80px);
}

.sticky .menu>* a,
#offcv ul li a{
    color: var(--text);
    font-size: 18px;
    line-height: 24px;
}

.sticky .menu>*.current-menu-item>a{
    color: var(--main);
    font-weight: 700;
}

.sticky .menu>*.menu-item-has-children>a{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    grid-gap: 7px;
}

.sticky .menu>*.menu-item-has-children>a::after{
    content: '▾';
    color: var(--text);
    font-size: 18px;
    line-height: 24px;
}

.sticky .menu>*.menu-item-has-children .sub-menu{
    display: none;
    list-style: none;
    position: absolute;
    top: 100%;
    min-width: 235px;
    width: fit-content;
    background: var(--white);
    border-bottom: 7px solid var(--main);
    box-shadow: 0px 0px 8px #7090b040;
    padding: 1rem;
}

.sticky .menu>*.menu-item-has-children:hover .sub-menu{
    display: block;
}

.sticky .menu>*.menu-item-has-children .sub-menu>*{
    width: 100%;
    padding: 5px 0;
}

.sticky .menu>*.menu-item-has-children .sub-menu>* a{
    display: block;
    display: -webkit-block;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
}

.sticky .cont{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: .15px;
    background: var(--gradient);
    padding: 1rem clamp(1rem,3.125vw,60px);
}

.sticky .navbar-toggler{
    box-shadow: none;
}

.sticky .navbar-toggler{
    border: none;
}

.sticky .navbar-toggler .navbar-toggler-icon{
    background-image: url(../../assets/img/barsy.svg);
    transition: all .3s ease-in-out;
}

.toggled{
    background-image: url(../../assets/img/xx.svg) !important;
    transform: rotateZ(180deg) !important;
    transition: all .3s ease-in-out !important;
}

/* OFFCANVAS */

#offcv{
    background-color: #F8F8F8;
    z-index: 1050;
}

#offcv .offcanvas-header{
    justify-content: end;
}

#offcv .offcanvas-body{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#offcv .logo a{
    margin-bottom: 2rem;
    display: block;
}

#offcv .logo img{
	width: 70%;
}

#offcv .offcanvas-body ul{
    list-style: none;
    margin: 0;
    padding: 0 !important;
}

#offcv .offcanvas-body ul li{
    padding: 5px 0 !important;
    margin: 0 !important;
}

#offcv .local,
#offcv .rss,
#offcv .rss>*{
    display: flex;
    align-items: start;
    gap: 8px;
}

#offcv .local{
    color: var(--text);
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
    margin-bottom: 1rem;
}

#offcv .rss,
#offcv .rss>*{
    align-items: center;
}

#offcv .rss>*{
    justify-content: center;
    width: 28px;
    aspect-ratio: 1/1;
    background-color: #E3E1F3;
    border-radius: 50%;
}

#offcv .rss>* svg path{
    fill: var(--text2);
}

#offcv .local svg{
    min-width: fit-content;
    margin-top: 3px;
}

#offcv .dbtn{
	width: 100%;
}

/* OFFCANVAS ! */

/* WHATSAPP */

.wpp{
    font-family: "Ubuntu", sans-serif;
    font-size: 16px;
    font-weight: 200;
    position: fixed;
    bottom: 37px;
    right: 36px;
    z-index: 1040;
    display: flex;
    align-items: center;
    width: fit-content;
    height: 46px;
    padding: 0 27px;
    color: #fff !important;
    border-radius: 10px;
    background-color: #25D366;
    box-shadow: 0 3px 25px rgba(37, 211, 102, 50%);
}

.wpp svg{
    margin-right: 14px;
}

/* WHATSAPP ! */

/* MEDIA QUERIES */

@media(max-width: 1260px){
    .sticky .menu>*{
        margin-right: 1vw;
    }
    .sticky .menu>* a{
        text-align: center;
    }
}

@media(max-width:1200px){
    .sticky .cont{
        display: none;
        display: -webkit-none;
    }
    .sticky .menu>*>a{
        white-space: nowrap;
    }
}

@media(max-width: 992px){
    .sticky .navbar>*:has(.menu){
        display: none;
        display: -webkit-none;
    }
    .sticky,
    .sticky .navbar{
        height: fit-content;
    }
    .sticky .navbar{
        align-items: center;
    }
    .sticky .navbar-brand img{
        width: 146px;
    }
    .sticky .navbar-brand{
        padding: .3125rem 0;
    }
}

@media(max-width: 768px){
    .wpp{
        padding: 0 1rem;
    }
    .wpp svg{
        margin-right: 0;
    }
    .sticky .header1,
    .wpp .t{
        display: none;
    }
}

@media(min-width: 768px){
    .container{
        padding: 0 70px;
    }
}

/* MEDIA QUERIES ! */