﻿.english {
    height: 60px;
    width: 800px;
    overflow: hidden;
    position: relative;
    vertical-align: middle;
    background: #6495ed;
    color: white;
    margin-bottom: 5vh;
}

a {
    color: white;
}

.marquee {
    height: 50px;
    overflow: hidden;
    position: relative;
    background: teal;
    color: white;
}

    .marquee p {
        display: inline;
        margin: 0;
        line-height: 50px;
        text-align: center;
        width: 100%;
    }

.infomation_content {
    height: 30vh;
    position: relative;
    background: #00808082;
    color: white;
    float: left;
    margin-top: calc((100vh / 3));
}
.marquee__content {
    -moz-animation: scroll-left 1s linear infinite;
    -webkit-animation: scroll-left 1s linear infinite;
    animation: scroll-left 90s linear infinite;
    white-space: nowrap;
}

@-moz-keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
    }

    100% {
        -moz-transform: translateX(-1000%);
    }
}

@-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(-1000%);
    }
}

@keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        -moz-transform: translateX(-1000%);
        -webkit-transform: translateX(-1000%);
        transform: translateX(-1000%);
    }
}

.menu_frame {
    margin-top: calc((100vh / 3) * 2 - 8vh);
    position: relative;
}

@media screen and (min-width:990px) {
    .menu_frame {
        margin-top: calc((100vh / 3) * 2 -5 vh);
    }
}

@media screen and (min-width:768px) and (max-width:991px) {
    .menu_frame {
        margin-top: calc((100vh / 3) * 2 - 15vh);
    }
}

@media screen and (max-width:767px) {
    .menu_frame {
        margin-top: calc((100vh / 3) * 2 - 15vh);
    }

    .infomation_content {
        margin-top: 5vh;
    }
}

@media screen and (max-height:600px) {
    .menu_frame {
        margin-top: 45vh;
    }

    .infomation_content {
        margin-top: 10vh;
        height: 30vh;
    }
}


.target-url {
    color: white;
    font-weight: 100;
    margin: 4px;
    padding-top: 60px;
    font-size: 2rem;
    vertical-align: text-bottom;
    text-shadow: 1px 1px 0 #fff, 2px 2px 0 #000;
}

.target-urlsub {
    color: white;
    font-weight: 100;
    margin: 4px;
    padding-top: 30px;
    font-size: 1.9rem;
    vertical-align: text-bottom;
    text-shadow: 1px 1px 0 #fff, 2px 2px 0 #000;
}

.target-urlthree {
    color: white;
    font-weight: 100;
    margin: 4px;
    padding-top: 0px;
    font-size: 1.9rem;
    vertical-align: text-bottom;
    text-shadow: 1px 1px 0 #fff, 2px 2px 0 #000;
}

.target-url3 {
    color: white;
    font-weight: 100;
    margin: 4px;
    padding-top: 5px;
    font-size: 1.9rem;
    vertical-align: text-bottom;
}

.btn-bg-image {
    background-size: cover;
    border: 0;
    width: 170px;
    height: 100px;
    border-radius: 15px;
    vertical-align: bottom;
    margin: 5px;
}

.btn-bg-image:hover {
    box-shadow: 15px 15px 15px rgba(0,0,0,0.5);
    transform: translateY(-10px);
    transition-duration: 0.5s;
}