.main_header {
    position: fixed;
    box-shadow: 0 0 10px 10px rgba(21, 181, 254, 0.5);
    z-index: 100;
    width: 100%;
    top: 0;
    -moz-transition: all .9s ease-in;
    -o-transition: all .9s ease-in;
    -webkit-transition: all .9s ease-in;
    transition: all .9s ease-in;
    background: black;
    left: 0;
    min-height: 40px;
}

.main_header:hover {
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.5);
}

.logo {
    margin-left: 40px;
    min-width: 190px;
}

/********* START : slogan *******/
.slogan_location {
    margin-bottom: 5px;
    margin-top: -15px;
}

.sloganbody {
    font-size: 9.5px;
    color: #fff;
    background: transparent;
    padding: 25px;
}

slogan {
    color: #fff;
    animation: slogan_blur 10s ease-out infinite;
    -webkit-animation: slogan_blur 10s ease-out infinite;
}

slogan:nth-child(1) {
    animation-delay: 0.1s;
    -webkit-animation-delay: 0.1s;
}

slogan:nth-child(2) {
    animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
}

slogan:nth-child(3) {
    animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
}

slogan:nth-child(4) {
    animation-delay: 0.7s;
    -webkit-animation-delay: 0.7s;
}

slogan:nth-child(5) {
    animation-delay: 0.9s;
    -webkit-animation-delay: 0.9s;
}

@keyframes slogan_blur {
    0% {
        text-shadow: 0 0 100px #fff;
        opacity: 0;
    }
    5% {
        text-shadow: 0 0 90px #fff;
    }
    15% {
        opacity: 1;
    }
    20% {
        text-shadow: 0 0 0px #fff;
    }
    80% {
        text-shadow: 0 0 0px #fff;
    }
    85% {
        opacity: 1;
    }
    95% {
        text-shadow: 0 0 90px #fff;
    }
    100% {
        text-shadow: 0 0 100px #fff;
        opacity: 0;
    }
}

@-webkit-keyframes slogan_blur {
    0% {
        text-shadow: 0 0 100px #fff;
        opacity: 0;
    }
    5% {
        text-shadow: 0 0 90px #fff;
    }
    15% {
        opacity: 1;
    }
    20% {
        text-shadow: 0 0 0px #fff;
    }
    80% {
        text-shadow: 0 0 0px #fff;
    }
    85% {
        opacity: 1;
    }
    95% {
        text-shadow: 0 0 90px #fff;
    }
    100% {
        text-shadow: 0 0 100px #fff;
        opacity: 0;
    }
}

/********* END : slogan *******/


/********* START : switch *******/
.onoffswitch {
    position: fixed;
    width: 40px;
    right: 20px;
    top: 20px;
    z-index: 11;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.onoffswitch-checkbox {
    display: none;
}

.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #15B5FE;
    border-radius: 20px;
}

.onoffswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before, .onoffswitch-inner:after {
    display: block;
    float: left;
    width: 50%;
    height: 10px;
    padding: 0;
    line-height: 10px;
    font-size: 10px;
    color: white;
    font-family: Trebuchet, Arial, sans-serif;
    font-weight: bold;
    box-sizing: border-box;
}

.onoffswitch-inner:before {
    content: "TR";
    padding-left: 5px;
    background-color: #15B5FE;
    color: #FFFFFF;
}

.onoffswitch-inner:after {
    content: "EN";
    padding-right: 5px;
    background-color: #FFFFFF;
    color: #15B5FE;
    text-align: right;
}

.onoffswitch-switch {
    display: block;
    width: 15px;
    margin: -2.5px;
    background: #FFFFFF;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 26px;
    border: 2px solid #15B5FE;
    border-radius: 20px;
    transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px;
}
/********* END : switch *******/