@media (min-width: $screen-sm-min) {
  body {

    .website-container {

      header {
        .logo-container {
          height: 239px;
          background: url("../images/logo-background.png") no-repeat center, radial-gradient(at bottom, #9accf9 60%, #3590e3);

          .logo-image {
            background-image: url("../images/logo.png");
            width: 133px;
            height: 164px;
          } /* /.logo-image */

          .language-container {
            align-self: flex-start;
            margin-top: 10px;
          }

        } /* /.logo-container */

        .logo-buttons {
        } /* /.logo-buttons */

        nav#top-navbar {
          padding: 0;
          >ul {
            display: flex;
            >li {
              display: block;
              width: auto;
              margin: 0;
              flex-grow: 1;
              >a {
                border-radius: 0;
                background-color: #265a88;
                border-#{$rightDirection}-width: 0;
                font-size: 16px;
                font-weight: bold;
              }
              &:first-child {
                >a {
                  border-#{$rightDirection}-width: 2px;
                  border-bottom-#{$rightDirection}-radius: 5px;
                }
              } /* /&:first-child */
              &:last-child {
                >a {
                  border-bottom-#{$leftDirection}-radius: 5px;
                }
              } /* /&:last-child */
            } /* />li */
          } /* />ul */
        } /* /nav#top-navbar */

      } /* /header */

    } /* /.website-container */

    footer {
      padding: 0 15px;
      .nav, .copyright {
        border-#{$leftDirection}: 1px solid #3081cb;
      }
    } /* /footer */

    .nav-justified>li {
      float: none;
    }
  } /* /body */
}