.hamburger-container{
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: white;
    display: none;
}
.small-nav {
    box-shadow: 0 4px 2px -2px lightgray;
    padding-bottom: 10px;
    display: none;
}

.small-nav .logo {
    margin-left: 50px;
    width: 170px;
    height: auto;
}
.small-nav ul {
    list-style: none;
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 100;
    padding-left: 0;
    background: white;
    transition: 0.3s;
    gap: 4rem;
    padding-top: 2rem;
    overflow: scroll;
    padding-bottom: 20rem;
  /*  transition: 0.3s;*/
    -webkit-animation: scale-up-hor-right 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-hor-right 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.small-nav ul li{
    font-family: Avenir Next LT Pro, sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
}
.small-nav ul li a{
    text-decoration: none;
    color: rgba(37, 43, 66, 1);
}
.small-nav ul li:hover{
    color: rgba(0, 155, 223, 1);
}
.active-list {
    display: flex !important;
    right: 0% !important;

}

@-webkit-keyframes scale-up-hor-right {
    0% {
        -webkit-transform: scaleX(0.4);
        transform: scaleX(0.4);
        -webkit-transform-origin: 100% 100%;
        transform-origin: 100% 100%;
    }
    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: 100% 100%;
        transform-origin: 100% 100%;
    }
}
@keyframes scale-up-hor-right {
    0% {
        -webkit-transform: scaleX(0.4);
        transform: scaleX(0.4);
        -webkit-transform-origin: 100% 100%;
        transform-origin: 100% 100%;
    }
    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: 100% 100%;
        transform-origin: 100% 100%;
    }
}



.col {
    display: block;
    float: left;
    margin: 1% 0 1% 1.6%;
}
.col:first-of-type {
    margin-left: 0;
}


/* ALL */
.row .three {
    padding: 80px 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
}
.hamburger .line {
    width: 50px;
    height: 5px;
    background-color: #35c4fa;
    display: block;
    margin: 8px 15px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.hamburger .line:nth-child(1) {
    width: 30px;
    margin-left: 35px;
}
.hamburger {
    z-index: 101;
    float: right;
    position: absolute;
    right: 20px;
    top: 15px;
}

.hamburger:hover {
    cursor: pointer;
}
/* ONE */
#hamburger-1.is-active .line:nth-child(3) {
    opacity: 0;
}
#hamburger-1.is-active .line:nth-child(1) {
    width: 50px;
    margin-left: 15px;
    -webkit-transform: translateY(13px) rotate(45deg);
    -ms-transform: translateY(13px) rotate(45deg);
    -o-transform: translateY(13px) rotate(45deg);
    transform: translateY(13px) rotate(45deg);
}
#hamburger-1.is-active .line:nth-child(2) {
    -webkit-transform: translateY(0px) rotate(-45deg);
    -ms-transform: translateY(0px) rotate(-45deg);
    -o-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
}

.engDropdownLinks{
    text-decoration: none;
    color: rgba(37, 43, 66, 1);
    font-weight: 400;
    text-align: center;
}
