@font-face {
    font-family: 'AmpleSoftProReg';
    src: url(fonts/AmpleSoftPro/AmpleSoftPro-Regular.ttf);
}
@font-face {
    font-family: 'AmpleSoftProLight';
    src: url(fonts/AmpleSoftPro/AmpleSoftPro-Light.ttf);
}
@font-face {
    font-family: 'AmpleSoftProBold';
    src: url(fonts/AmpleSoftPro/AmpleSoftPro-Bold.ttf);
}
@font-face {
    font-family: 'Calibri';
    src: url(fonts/Calibri/calibri.ttf);
}
*{
    margin: 0;
    padding: 0;
}
@media(max-width: 480px){
    body{
        width: 100%;
        height: 100vh;
        background-image: url(img/cover720.png);
        background-position: left bottom;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
    }
    .wrapper{display: none;}

    .box{
        display: flex;
        flex-direction: column;
        text-align: center;
        position: absolute;
        bottom: 4.5%;
        right: 4.5vw;
    }
    .box .btn{
        text-decoration: none;
        font-family: 'AmpleSoftProLight', sans-serif;
        font-size: calc(11px + 0.35vw);
        font-weight: bold;
        color: rgb(255,255,255);
        background-color: #003d4c;
        padding: 15px 20px;
        border-radius: 8px;
        box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
        margin-top: 10px;
    }
    .box .btn:hover{
        background-color: #6ba4b8;
        transition: all 0.15s ease;
    }

}
@media(min-width: 480px){
.wrapper{
    width: 100%;
    height: 100vh;
    background-image: url(img/cover.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}
.wrapper img{
    width: calc(150px + 15.0vw);
    position: absolute;
    top: 40%;
    left: 5%;
    -ms-transform: translateY(-40%);
    transform: translateY(-40%);
}
.wrapper p{
    position: absolute;
    top: 50%;
    left: 5%;
    font-family: 'AmpleSoftProLight', sans-serif;
    font-size: calc(15px + 0.35vw);
}
.wrapper h2{
    position: absolute;
    bottom: 10vh;
    right: calc(18vw);
    color: rgb(255,255,255);
    font-family: 'AmpleSoftProLight', sans-serif;
    letter-spacing: 5px;
    font-size: 2.5rem;
    text-shadow: 0.1px 0.5px 0.5px rgb(0,0,0);
}
.wrapper h2 span{
    font-family: 'AmpleSoftProBold', sans-serif;
}
#brR{
    display: none;
}
.box{
    position: absolute;
    bottom: 6%;
    left: 1.5vw;
}
.box .btn{
    text-decoration: none;
    font-family: 'AmpleSoftProLight', sans-serif;
    font-size: calc(11px + 0.35vw);
    font-weight: bold;
    color: rgb(255,255,255);
    background-color: #003d4c;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
    margin-left: 10px;
}
.box .btn:hover{
    background-color: #6ba4b8;
    transition: all 0.15s ease;
}

}