:root {
    --dark: #4F5357;
    --primary: #074A82;
    --light: #B4C8D9;
    --blue: #217EE0;
    --danger: #E03821;
    --warnning: #FFB200;
}
/* hebrew */
@font-face {
    font-family: 'MVV';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/alef/v12/FeVfS0NQpLYgnjdRCqFx.woff2) format('woff2');
    unicode-range: U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F;
  }
/* latin */
@font-face {
    font-family: 'MVV';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/alef/v12/FeVfS0NQpLYgnjVRCg.woff2) format('woff2');
    unicode-range: U+0000-002F, U+003A-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* hebrew */
@font-face {
    font-family: 'MVV';
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/alef/v12/FeVQS0NQpLYglo50H5xQ2Ixi.woff2) format('woff2');
    unicode-range: U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* latin */
@font-face {
    font-family: 'MVV';
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/alef/v12/FeVQS0NQpLYglo50H55Q2A.woff2) format('woff2');
    unicode-range: U+0000-002F, U+003A-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
    font-family: 'MVV';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/baloo2/v2/wXKrE3kTposypRyd51jcAA.woff2) format('woff2');
    unicode-range: U+0030-0039;
  }
/* latin */
@font-face {
    font-family: 'MVV';
    font-style: normal;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/baloo2/v2/wXKuE3kTposypRyd76v_FeMKmA.woff2) format('woff2');
    unicode-range: U+0030-0039;
}
/* latin */
@font-face {
    font-family: 'MVV';
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/baloo2/v2/wXKuE3kTposypRyd7-P5FeMKmA.woff2) format('woff2');
    unicode-range: U+0030-0039;
}
html body{
    margin: 0;
    padding: 0;
    color: var(--dark);
    font-family: 'MVV';
    font-size: 18px;
    font-weight: 400;
    line-height: 1.33;
    min-height: 100vh;
}
p, h1, h2, h3, h4, h5, h6{
    margin: 0;
    unicode-bidi: plaintext;
}
button{
    padding: 0;
}
button, button:hover, button:focus, button:active{
    background-color: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    color: var(--primary);
}
a, a:hover, a:focus, a:active{
    outline: none;
    color: var(--primary);
    text-decoration: unset;
}
.button-primary, .button-primary:hover, .button-primary:focus, .button-primary:active{
    background-color: var(--primary);
    color: white;
}
.button-danger, .button-danger:hover, .button-danger:focus, .button-danger:active{
    background-color: var(--danger);
    color: white;
}
.button-primary, .button-danger{
    padding: 12px 28px 13px 28px;
    border-radius: 10px;
    font-weight: 700;
}
button.disabled{
    opacity: .2;
    pointer-events: none;
}

header{
    height: 62.5px;
    box-shadow: inset 0px -1.04167px 0px rgba(7, 74, 130, 0.2);
}

main{
    padding: 30px 20px;
}
.hello-text{
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    color: var(--primary);
}
.rate-block:not(:last-child){
    margin-right: 21px;
}
.rate-block img{
    margin-bottom: 8px;
}
.rate-block img:nth-child(1){
    display: inline;
}
.rate-block img:nth-child(2){
    display: none;
}
.rate-block.selected img:nth-child(1){
    display: none;
}
.rate-block.selected img:nth-child(2){
    display: inline;
}
.rate-block p{
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: #8F8F8F;
    opacity: 0.5;
    text-align: center;
}
.rate-block.selected p{
    color: var(--primary);
    opacity: 1;
}
.title{
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: var(--primary);
}

footer{
    width: 100%;
    position: fixed;
    bottom: 0;
    padding: 12.5px 15px;
    border-top: 1px solid rgba(7, 74, 130, 0.3);
}
footer .button-primary{
    width: 100%;
    height: 50px;
    font-weight: 700;
}