@font-face {
    font-family: 'ptsans';
    src: url(pt-sans-reg.ttf);
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ptsans';
    src: url(pt-sans-bold.ttf);
    font-weight: bold;
    font-display: swap;
}

:root {
    --transition: all 0.4s 0.02s ease;
    --radius: 5px;
    --c-error: red
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0;
    padding: 0;
    position: relative;
    font-size: 18px;
    font-family: 'ptsans', sans-serif;
    color: #fff;
    background: linear-gradient(to right, rgb(75, 118, 46), rgb(129, 186, 94));
    min-width: 320px;
    text-align: center;
}

a {
    background-color: transparent;
    text-decoration: underline;
    transition: var(--transition)
}

.container {
    width: 95%;
    position: relative;
    margin: 0 auto;
    box-sizing: border-box;
    max-width: 1600px
}


footer .container, header .container {
    height: 100%
}

.btn{
    display: block;
    cursor: pointer;
    outline: none;
    box-sizing: border-box;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: normal;
    padding: 23px 0;
    height: 70px;
    text-align: center;
    border: none;
    background-color: rgb(64,149,14);
    color: #fff;
    transition: var(--transition);
    margin-bottom: 20px;
    border-radius: 10px;
    line-height: 1.2;
}

.btn:hover{
    background-color: rgb(186,209,11);
    color: #287722;
}


#fon{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: transparent url('/img/fon-pattern.png') top repeat;
    opacity: 0.05;
    height: 363px;
}


#logo{
    width: 215px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
}

h1{
    margin-top: 15px;
    font-size: 33px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

p{
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 1.3;
}


.telz{
    margin-bottom: 3vw;
}

.telz a{
    font-size: 21px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}


.telz span{
    color: #b8d000;
}

.buttonz{
    margin-bottom: 3vw;
    width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.buttonz h2{
    font-size: 21px;
    margin-top: 0;
    text-transform: uppercase;
}

.buttonz h2 span{
    color: #b7d000;
}

#logo img{
    width: 100%;
    height: auto;
}


.footer{
    height: 44px;
    box-sizing: border-box;
    padding-top: 15px;
    background-color: rgb(40, 86, 10);
    font-size: 14px;
    margin-top: 4vw;
}


@media(max-width: 900px){
    .telz {
        margin-bottom: 5vw;
    }

    .buttonz {
        margin-bottom: 5vw;
    }

    .footer{
        margin-top: 7vw;
    }
}


@media(max-width: 800px){
    .buttonz{
        width: 100%;
    }
}


@media(max-width: 605px){
    h1{
        font-size: 30px;
    }

    .btn{
        padding: 19px 0;
        height: 60px;
    }

    .buttonz {
        margin-bottom: 8vw;
    }

    .footer {
        margin-top: 9vw;
    }
}


@media(max-width: 455px){
    h1 {
        font-size: 28px;
    }

    .telz {
        margin-bottom: 7vw;
    }

    .telz a {
        font-size: 19px;
    }
}


@media(max-width: 405px){
    .buttonz h2 {
        font-size: 19px;
    }

    .telz a {
        font-size: 18px;
    }

    .btn {
        padding: 16px 0;
        height: 54px;
    }

    .buttonz {
        margin-bottom: 10vw;
    }
}


@media(max-width: 365px){
    h1 {
        font-size: 24px;
    }
}