.logo {
    width: 180px;
    height: 120px;
    background-image: url('https://colombiadiversa.org/c-diversa/wp-content/uploads/2023/03/Logo_principal_COLOMBIA_DIVERSA_CMYK.png');
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 1.4rem !important;
}

.content-menu {
    margin-left: 20px;
    width: 100%;
}

.content-header {
    padding: 0px 20px 0 20px;
    position: fixed;
    top: 0;
    z-index: 1071;
    display: flex;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
}


.nav-scroller a {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.8rem;
}

.nav-scroller ul li {
    padding: 0.6rem 3rem 0.6rem 0;
}

.nav-scroller ul li:last-child {
    padding-right: 0;
}

header,
.nav-scroller {
    border-bottom: 1px solid var(--primary);
}


.lang,
.search-content {
    float: left;
}

.separator {
    border-left: 1px solid var(--primary);
    float: left;
    height: 36px;
}

header .form-control {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid var(--primary);
    border-radius: 0;
    color: var(--primary) !important;
    font-weight: 600;
    max-width: 150px;
}

header .form-control:focus {
    box-shadow: none;
    border-bottom: 1px solid var(--primary);
}

header .input-group-text {
    border: 0;
    border-bottom: 1px solid var(--primary);
    border-radius: 0;
    background-color: transparent;
    color: var(--primary);
    padding: 0;

}

header ion-icon {
    color: var(--primary);
    font-size: 1rem;
}


header select {
    border: 0;
    color: var(--primary);
    font-weight: 600;
}

header select:focus,
header select:active {
    box-shadow: none;
    border: 0;

}

header .btn {
    min-width: 160px;
}

.isMobile{
    display: none;
}


/*******menu mobile************/



.menu ul li {
    list-style: none;
}

.menu-trigger {
    position: fixed;
    z-index: 5001;
    overflow: hidden;
    width: 50px;
    height: 50px;
    top: 0.3rem;
    right: 0.4rem;
    display: none;
    border-radius: 50%;
    cursor: pointer;
}

.menu-trigger__shape {
    position: absolute;
    top: 0;
    left: 0;
    fill: transparent;
    stroke: var(--primary);
    stroke-width: 2px;
    stroke-dasharray: 160px;
    stroke-dashoffset: 160px;
    transition: stroke-dashoffset 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.is-open .menu-trigger__shape,
.menu-trigger:hover .menu-trigger__shape {
    stroke-dashoffset: 0;
}

.menu-trigger__bar {
    position: absolute;
    left: 50%;
    display: block;
    overflow: hidden;
    width: 45%;
    height: 2px;
    border-radius: 10px;
    background:  var(--primary);
    transform: translate(-50%, -50%);
    transform-origin: center center;
    transition: top 0.4s, transform 0.4s, opacity 0.4s ease-in-out;
}

.menu-trigger__bar:nth-child(2) {
    top: 35%;
}

.menu-trigger__bar:nth-child(3) {
    top: 50%;
}

.menu-trigger__bar:nth-child(4) {
    top: 64%;
}

.menu-trigger__bar:nth-child(2) {
    top: 35%;
}

.is-open .menu-trigger__bar:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-trigger__bar:nth-child(3) {
    top: 50%;
}

.is-open .menu-trigger__bar:nth-child(3) {
    opacity: 0;
    transform: translate(200%, -50%);
}


.menu-trigger__bar:nth-child(4) {
    top: 64%;
}

.is-open .menu-trigger__bar:nth-child(4) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.menu {
    position: fixed;
    z-index: 4000;
    top: 0;
    right: 0;
    transform: translate(100%, 0);
    flex-direction: column;
    align-items: flex-start;
    width: 100vw;
    height: 100vh;
    user-select: none;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}

.menu.is-open {
    transform: translate(0, 0);
}

.menu__panel {
    z-index: 5000;
    height: 60vh;
    display: flex;
    align-items: center;
    
}

.menu__panel ul li {
    padding: 0 0 1rem 0;
}

.menu__panel ul li a {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}

.menu__panel ul li a.text-orange {
    color: var(--orange);
}

.menu__panel ul li a.text-green {
    color: var(--green);
}

.menu__panel ul li a.text-blue {
    color: var(--blue);
}



@media (max-width:1000px){
    .isDestock{
        display: none;
    }

    .isMobile{
        display: block;
    }

    .menu-trigger{
        display: block;
    }


    .nav-mobile{
        top:0;
        left: 0;
        position: fixed;
        z-index: 1071;
        height: 60px;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.8);
        display: flex;
    }

    .nav-mobile .logo{
        width: 85px;
        position: relative;
        margin-top: 3px !important;
    }

    .nav-mobile  select {
        border: 0;
        color: var(--primary);
        font-weight: 600;
        margin-left: 10px;
    }



}


