html{
    box-sizing: border-box;
}

*,*::after,*::before{
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

h1{
    font-size: calc(14px + 12 * (100vw / 1200));
    color: inherit;
}

@media (max-width:767px) {
    h1{
        font-size: calc(23px + (10 + 10 * 0.7) * ((100vw - 320px) / 1200));
    }
}

body{
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: calc(18px + 10 * (100vw / 1200));
    color: #ffffff;
}

@media (max-width:767px) {
    body{
        font-size: calc(16px + (18 + 18 * 0.7) * ((100vw - 320px) / 1200));
    }
}

a{
    text-decoration: none;
}

.wrapper {
    height: 100vh;
    position: relative;
  }
  
.wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background-image: url(../img/bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(6px);
    z-index: -1;
}

span{
    color: #C3002E;
    text-shadow: 1px 1px 5px #000000, 0 0 0.2em rgb(0, 0, 0);
}

.container{
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    height: 100vh;
    padding: 0 15px;
}

main{
    text-align: center;
}

.main_inner{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    background-image: url(../img/bg_main02.webp);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 500px;
    min-height: 50svh;
    border-radius: 15px;
    box-shadow: 2px 2px 0px transparent, 0 0 75em #C3002E;
}

.block_text{
    max-width: 100%;
    padding: 0 5px;
    margin-bottom: 5px;
}

.logo{
    padding: 15px 0px;
    max-width: 180px;
    height: auto;
    margin: 0 auto;
}

.logo-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text_main{
    padding: 0 10px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 0 20px rgb(0, 0, 0);
}

.btn_block{
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 15px;
}

.btn{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: none;
    padding: 15px 45px;
    width: 90%;
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 2px;
    background: #28a909;
    border: solid 1px #b2f2a3;
    border-radius: 1.25rem;
    text-shadow: 0 1px 2px rgba(0,0,0,.5);
    box-shadow: inset 0 1px 1px #ffffff80;
}

.btn:hover{
    background: #29a909d8;
    transition: .3s;
}

.block_photo{
    width: 100%;
    height: 30svh;
    overflow: hidden;
    margin: 0 auto;
}

.photo_1{
    width: 100%;
    height: 200px;
    object-fit: contain;
}

@media(max-width:414px){
    .wrapper::before {
        background-image: url(../img/bg.webp);
        min-height: 100vh;
    }
}

@media(max-width:360px){
    h1{
        font-size: calc(22px + (10 + 10 * 0.7) * ((100vw - 320px) / 1200));
    }
    .btn{
        padding: 15px 40px;
    }
}

@media(max-width:320px){
    h1{
        font-size: calc(20px + (10 + 10 * 0.7) * ((100vw - 320px) / 1200));
    }
    .btn{
        padding: 15px 25px;
    }
}

