@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont_wght.ttf');
}
@font-face {
    font-family: 'AtlasTypewriter';
    src: url('../fonts/AtlasTypewriter-Regular-Web.ttf');
}
*{
    padding:0px;
    margin:0px;
    font-family:'AtlasTypewriter';
    color:#3B454D;
}
html{
    width:100%;
    height:100%;
}
body{
    width:100%;
    height:100%;
    position: relative;
}
.bg{
    width:100%;
    height:100%;
    background-image: url("../images/bg.jpeg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-size:3500px;
    background-position-y:-220px;
}
.info{
    max-width: 720px;
    font-size: 20px;
    line-height: 26px;
    background:#fff;
    border-radius: 10px;
    padding:20px;
    color:#000;
    margin:auto;
    position: absolute;
    bottom:80px;
    left:50%;
    margin-left:-380px;

}
.title{
    color:#34424E;
    text-align: center;
    font-size: 84px;
    line-height: 80px;
    font-family: 'Montserrat';
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    top: 96px;
}
.title:after{
    content:"";
    position: absolute;
    width:100%;
    height:90%;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    left:0px;
    top:0px;
    opacity: 0.7;
}
.title:before{
    content:"";
    position: absolute;
    width:100%;
    height:110%;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    left:0px;
    top:90%;
    opacity: 0.7;
}

@media (max-width: 960px) {
    .title{
        font-size: 28px;
        line-height: 34px;
        top:48px;
    }
    .info{
        right:20px;
        left:20px;
        bottom:20px;
        margin-left:-0px;
        line-height: 17px;
        font-size: 14px;

    }
    .bg{
        background-size:2500px;
        background-position-y:-240px;
    }
}