+.l-navigation__menu__info {
+ display: flex;
+ justify-content: space-between;
+ width: 45%;
+ padding-top: 16px;
+
+ @include rwd($break-menu) {
+ width: 100%;
+ padding-top: 58px;
+ align-items: flex-end;
+ }
+
+}
+
+.l-navigation__menu__book {
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+
+ p {
+ color: $color-white;
+ @include font-size(21px);
+ line-height: 140%;
+ strong {
+ color: #92BD39;
+ letter-spacing: -0.01em;
+ font-weight: $semibold;
+ }
+ }
+
+ .button {
+ display: inline-block;
+ font-size: 16px;
+ font-weight: 700;
+ padding: 0 20px;
+ line-height: 38px;
+ text-align: center;
+
+ /* green 700 */
+ background: #92BD39;
+ color: #083F4D;
+ border-radius: 6px;
+
+ transition: background-color 150ms;
+
+ @include rwd($break-menu) {
+ width: auto;
+ min-width: 212px;
+ }
+
+ &:hover {
+ background-color: #FBC40F;
+ }
+ }
+}
+
+.l-navigation__menu__book__header {
+ display: flex;
+ justify-content: space-between;
+ flex-direction: column;
+ row-gap: 18px;
+
+ @include rwd($break-menu) {
+ flex-direction: row;
+ align-items: center;
+ }
+
+ p {
+ margin: 0;
+
+ &.korona {
+ &:before {
+ content: url('../images/korona.svg');
+ width: 21px;
+ margin-right: -21px;
+ position: relative;
+ top: -10px;
+ left: -3px;
+ }
+ }
+ }