@import url('https://fonts.googleapis.com/css?family=Noto+Serif');
@import url('https://fonts.googleapis.com/css?family=Noto+Sans');

body {
    font-family: 'Noto Sans', sans-serif;
    color: #333;
    width: 100%;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif', serif;
}
h1 {
    font-size: 48px;
    line-height: 65px;
    margin-bottom: 3rem;
}
h2 {
    font-size: 40px;
    line-height: 54px;
}
h3 {
    font-size: 32px;
    line-height: 44px;
}
h4 {
    font-size: 20px;
    line-height: 27px;
    margin-top: 2rem;
}
@media (max-width:767px) {
    h1 {
        font-size: 28px;
        line-height: 38px;
    }
    h2 {
        font-size: 20px;
        line-height: 27px;
    }
    h3 {
        font-size: 18px;
        line-height: 25px;
    }
    h4 {
        font-size: 16px;
        line-height: 24px;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
}

ul li {
    font-size: 16px;
    line-height: 24px;
}

@media (max-width:767px) {
    ul li {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}

ul.dashed {
    list-style-type: none;
}
ul.dashed > li {
    text-indent: -5px;
}
ul.dashed > li:before {
    content: "-";
    text-indent: -5px;
}

input {
    font-size: 14px;
    line-height: 21px;
    border-radius: 4px;
}

input[type=text], input[type=email], input[type=password] {
    border: 1px solid #e5e5e5;
    padding: 16px 0 15px 19px;
}

input[type=checkbox] {
    border: 1px solid #ccc;
    width: 22px;
    height: 22px;
    background-color: #fff;
}

.lk input[type=checkbox] {
    margin-right: 10px;
}

.lk label {
    font-size: 0.75rem;
    margin-bottom: 0;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #ccc;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #ccc;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #ccc;
}
:-moz-placeholder { /* Firefox 18- */
    color: #ccc;
}

.img-responsive {
    width: 100%;
}

hr {
    width: calc(100% - 24px);
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}

select {
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    padding: 8px 32px 9px 8px;
    background-image: url(../img/dropdownicon.svg);
    background-position: 95% 50%;
    background-repeat: no-repeat;
}

.lk .link_underline {
    text-decoration: underline;
}

.lk .navbar-light .navbar-toggler {
    border-color: transparent;
}

.link_small {
    font-size: 12px;
    line-height: 16px;
}

.link__medium {
    font-size: 14px;
    line-height: 21px;
}

.navbar {
    padding: 0;
}

.top-menu__navbar,
.bottom-menu__navbar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0;
}

.top-menu__item,
.bottom-menu__item {
    text-align: center;
    padding: 12px 20px;
}

.lk .vertical-center {
    display: flex;
    align-items: center;
}

.text-center {
    text-align: center;
}

.margin-auto {
    margin: 0 auto;
}

.btn {
    display: flex;
    font-weight: 700;
    font-size: 12px !important;
    line-height: 16px;
    text-align:center;
    background: #FBFBFB;
    border-radius: 46px;
    align-items: center;
    justify-content: center;
    color: #333333;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
    border: none;
    padding: 16px 57px 12px;
    margin: 0 auto;
    letter-spacing: 0.9996px;
    cursor: pointer;
}

.btn_silver {
    background: linear-gradient(180deg, #F2F2F2 0.62%, #FBFBFB 111.88%);
    box-shadow: 0px 4px 0px #E5E5E5;
    border-radius: 46px;
}

.btn_silver:hover {
    background: #FFFFFF;
    box-shadow: 0px 3px 0px #E0E0E0, 0px 1px 4px rgba(0, 0, 0, 0.1);
}

.btn_yellow {
    background: linear-gradient(180deg, #F7D145 0%, #F5D663 112.5%);
    box-shadow: 0px 4px 0px #E4C142;
    border-radius: 46px;
}

.btn_yellow:hover {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), linear-gradient(180deg, #F7D145 0%, #F7D145 77.9%, #F5D663 98.34%);
    box-shadow: 0px 4px 0px #F7D145;
}

.btn_block {
    width: 100%;
}

.bg_white {
    background-color: #fff;
}

.bg_white_fb {
    background-color: #fbfbfb;
}

.link_color {
    color: #22A0FF;
    text-decoration: underline;
}

.btn_black_border {
    border: 1px solid #000;
    background-color: transparent;
    box-shadow: none;
}

.btn_white_border {
    border: 1px solid #fff;
    background-color: transparent;
    box-shadow: none;
    color: #fff;
}

ul.inline-list li {
    display: inline-block;
}