@charset "UTF-8";
@font-face {
    font-family: 'inter';
    src: url("./fonts/inter-medium.woff") format("woff"), url("./fonts/inter-medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-stretch: normal; 
}
@font-face {
    font-family: 'inter';
    src: url("./fonts/inter-mediumitalic.woff") format("woff"), url("./fonts/inter-mediumitalic.woff2") format("woff2");
    font-weight: 500;
    font-style: italic;
    font-stretch: normal; 
}
* {
    box-sizing: border-box; 
}
html{
    width: 100%;
    overflow: hidden;
}
body {
    font-family: "inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.02em;
    color: #fff;
    background-color: #1C1207;
    position: relative;
    margin: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    min-height: 680px;
}
.wrapper{
    width: 100%;
    height: 100%;
    
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    transform: scale(1);
    transform-origin: center;
    object-fit: cover;
    animation: heartbeat 3s infinite;
}
@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.1);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.1);
  }
  60% {
    transform: scale(1);
  }
}
.block{
    position: relative;
    z-index: 2;
    border: 1px solid rgba(242, 142, 43, 0.12);
    border-radius: 13px;
    width: 404px;
    max-width: 90%;
    box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.1);
    background: #0b0b0b;
    padding: 38px 10px 44px;
    text-align: center;
}
.logo{
    margin-bottom: 20px;
}
.text{
    margin-bottom: 54px;
}
.color{
    color: #f28e2b
}
.list{
    margin: 0 0 54px 0;
    padding: 0;
    list-style: none;
}
.item{
    margin-bottom: 14px;
    font-style: italic;
}
.item:last-child{
    margin-bottom: 0;
}
.note{
    margin-bottom: 24px;
}
.button {
    position: relative;
    z-index: 1;
    text-decoration: none;
    outline: none;
    display: block;
    border: none;
    max-width: 100%;
    width: 222px;
    padding: 12px 10px;
    margin: 0 auto;
    font-weight: 500;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    color: #fff;
    border-radius: 7px;
    transition: 0.3s;
}
.button:hover::before{
    background: linear-gradient(100.05deg, #f28e2b 10.66%, #f28e2b 132.08%);
}
.button:hover::after{
    background: linear-gradient(100.05deg, #85521f 10.66%, #85521f 132.08%);
}
.button:before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(100.05deg, #73CB3B 10.66%, #92D855 132.08%);
    border-radius: 7px;
    transform: matrix(1, 0, -0.18, 1, 0, 0);
    transition: 0.3s;
}
.button:after {
    content: "";
    display: block;
    position: absolute;
    z-index: -2;
    top: 3px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(96.81deg, #396B19 7.55%, #66AA2B 93.54%);
    box-shadow: 0px 13px 72px rgba(65, 249, 49, 0);
    border-radius: 7px;
    transform: matrix(1, 0, -0.18, 1, 0, 0);
    transition: 0.3s;
}

@media only screen and (max-width: 767px) {
    body {
        font-size: 12px;
    }
    .block{
        background: rgba(11, 11, 11, 0.4);
        padding: 32px 10px 38px;
    }
    .logo{
        margin-bottom: 16px;
    }
    .text{
        margin-bottom: 44px;
    }
    .list{
        margin-bottom: 44px;
    }
    .item{
        margin-bottom: 10px;
    }
    .button{
        font-size: 14px;
    }
}