@charset "UTF-8";

.globalnav .container{
    display: flex;
    justify-content: space-between;
    margin-right: 50px;
    margin-left: 300px;
    gap: 25px;
}

.globalnav .container a{
    text-decoration: none;
}

ul{
    list-style: none;
}

h1{
    margin-left: 20px;
}

h2 a{
    text-decoration: none;
}

.contain{
    background-image: url(../img/6DAB459A-F2D1-4420-9214-1788C4DAAC19_1_105_c.png);
    background-size: 1000px 800px;
    background-repeat: no-repeat;
}

.wrapper{
    position: relative;
    margin-top: 50px;
}

.button-10 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 250px;
    margin: 0 auto;
    padding: 1em 2em;
    overflow: hidden;
    border: none;
    border-radius: 25px;
    background-color: #35a7ed;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
}

.button-10::before {
    display: block;
    position: absolute;
    top: -50%;
    left: -30%;
    transform: rotate(30deg);
    width: 70px;
    height: 100px;
    content: '';
    background-image: linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
    background-image: -webkit-gradient(linear, left bottom, right bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 0)));
    animation: animation-button-10 2s infinite linear;
}

@keyframes animation-button-10 {
    17% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}

.button-10::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
}

.button-10:hover {
    background-color: #46a5e0;
}
