@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'MuseoSansCyrl-500';
    src: url('./font/MuseoSansCyrl-500.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap; 
}

@font-face {
    font-family: 'MuseoSansCyrl-700';
    src: url('./font/MuseoSansCyrl-700.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap; 
}

@font-face {
    font-family: 'MuseoSansCyrl-900';
    src: url('./font/MuseoSansCyrl-900.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap; 
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #0F4128;
    user-select: none;
}
.left {
    width: 45vw;
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    overflow: hidden;
}
img {
    width: 60%;
}
.right {
    width: 40vw;
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.circle {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    width: 20vw;
    height: 20vw;
    border-radius: 50%;
    z-index: -1;
    background: radial-gradient(#1E8B54, #0F4128);
    filter: blur(10vw);
}
h2 {
    font-family: 'MuseoSansCyrl-700', sans-serif;
    font-weight: 700;
    font-size: 1.5vw;
    color: #FFF;
    margin-bottom: 1vw;
}
label {
    background-color: #FFF;
    width: 100%;
    padding: 1.2vw 1vw;
    border-radius: 1vw;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: .3s ease-in-out;
    margin-bottom: 1vw;
}
label:hover {
    cursor: pointer;
    box-shadow: 0 0 1vw rgba(255, 255, 255, 0.1);
}
input[type="radio"] {
    margin-right: .5vw;
}
span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1vw;
    font-weight: 400;
    color: #333;
}
progress {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: .5vw;
    background-color: #ffffff;
    border-radius: 1vw;
    border: none;
    margin-top: 1vw;
}

progress::-webkit-progress-bar {
    background-color: #ffffff;
    border-radius: 1vw;
}

progress::-webkit-progress-value {
    background: #C8EB1E;
    border-radius: 1vw;
    transition: .3s ease-in-out;
}

progress::-moz-progress-bar {
    background: #ffffff;
    border-radius: 1vw;
}

progress::-moz-progress-value {
    background: #C8EB1E;
    border-radius: 1vw;
    transition: .3s ease-in-out;
}

.btn {
    width: 100%;
    border: none;
    outline: none;
    padding: 1vw 2vw;
    border-radius: 1vw;
    background-color: #C8EB1E;
    text-transform: uppercase;
    color: #0F4128;
    transition: .3s ease-in-out;
    font-family: 'MuseoSansCyrl-700', sans-serif;
    font-weight: 700;
    font-size: 1vw;
    text-transform: uppercase;
    margin-top: 2vw;
}

.btn:hover {
    cursor: pointer;
    box-shadow: 0 0 1vw #c9eb1e1a;;
}
input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 1.5vw;
    height: 1.5vw;
    border: .1vw solid #333;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    position: relative;
}

input[type="radio"]:hover {
    border-color: #0F4128;
}

input[type="radio"]:checked {
    border-color: #0F4128;
}

input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: .8vw;
    height: .8vw;
    background: #0F4128;
    border-radius: 50%;
}

.message {
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: rgba(0, 0, 0, .8);
    padding: 1vw 2vw;
    border-radius: 1vw;
    z-index: 10;
    display: none;
}

@media (max-width: 960px) {
    .circle {
        top: 25%;
        left: 50%;
    }
    body {
        flex-direction: column;
    }
    .left {
        width: 70%;
        height: 40%;
    }
    .right {
        width: 70%;
        height: 50%;
    }
    img {
        width: 30%;
    }
    h2 {
        font-size: 3vw;
        text-align: center;
    }
    span {
        font-size: 1.5vw;
    }

    .btn {
        font-size: 1.7vw;
        padding: 1.5vw 2.5vw;
    }
    label {
        padding: 2vw;
    }

    input[type="radio"] {
        width: 1.7vw;
        height: 1.7vw;
        border: .1vw solid #0F4128;
    }

    input[type="radio"]:checked::before {
        width: 1vw;
        height: 1vw;
    }

    progress {
        height: .75vw;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 7vw;
    }
    img {
                width: 50%;
            }
    .left {
        height: 40%;
        width: 90%;
    }
    .right {
        height: 60%;
        width: 90%;
    }
span {
        font-size: 4vw;
    
    }
     .btn {
        width: 100%;
                padding: 4vw;
                font-size: 4vw;
                margin-bottom: 2vw;
          border-radius: 3vw;
    }
     progress {
        height: 1vw;
         width: 100%;
    }
    label {
    padding: 3vw;
    border-radius: 3vw;
}
    input[type="radio"] {
    width: 5vw;
    height: 5vw;
        margin-right: 1vw;
}

input[type="radio"]:checked::before {
    width: 2vw;
    height: 2vw;
}
    .fix input[type="radio"] {
    width: 6vw;
    height: 5vw;
        margin-right: 1vw;
}
}






















