.btn-hamburger{
    width: 32px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 11;
    
}

@media (min-width:768px){
    .btn-hamburger{
        display:none
    }
}

.btn-hamburger:focus{
    outline: none;
}

.btn-hamburger span{
    width: 22px;
    height: 2px;
    background-color: #fff;
    position: relative;
    transition: all 0.2s;
}

.btn-hamburger.open span{
    background-color: transparent;
}

.btn-hamburger span:before{
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    background-color: #fff;
    top: -9px;
    left: 0;
    transition: all 0.2s;
}

.btn-hamburger.open span:before{
    transform: rotate(45deg);
    top: 0;
}

.btn-hamburger span:after{
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    background-color: #fff;
    top: 9px;
    left: 0;
    transition: all 0.2s;
}

.btn-hamburger.open span:after{
    transform: rotate(-45deg);
    top: 0;
}

#menu-overlay{
    transform: translateX(100%);
}

#menu-overlay.has-animation{
    transition: all 0.2s;
}

#menu-overlay.open{
    transform: translateX(0%);
}

#lang-select-dropdown{
    display: none;
    animation-name: hide_lang;
    animation-duration: 0.1s;
}

#lang-select-dropdown.animating{
    display: block;
}

#lang-select-dropdown.animating-done.shown{
    display: block;
}

#lang-select-dropdown.shown{
    animation-name: show_lang;
    animation-duration: 0.1s;
}

@keyframes show_lang {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes hide_lang {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

.Homepage .slick-dots{
    font-size: 0;
    display: flex;
    position: absolute;
    bottom: -12rem;
    margin: 0 auto;
    left: 0;
    width: 100%;
    justify-content: center;
}

@media (max-width: 1023px) {
    .Homepage .slick-dots{
        bottom: -6.5rem;
    }
}

.Homepage .slick-dots li{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #182B66;
    border: 2px solid #182B66;
    margin: 0 2px;
    cursor: pointer;
}

.Homepage .slick-dots li.slick-active{
    border-color: #fff;
}

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}