/*
0 - 600px:        Phone 
600px - 900px:      Tablet Portrait
900px - 1200px:     Tablet Landscape
[1200px - 1800px]:  is where our normal styles apply
1800px +:           Big Desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

Order: Base + Typography > General Layout + Grid > Page Layout > Components

1em = 16px
*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem); }
  80% {
    transform: translateX(1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem); }
  80% {
    transform: translateX(-1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(2rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInBottomHeader {
  0% {
    opacity: 0;
    transform: translateY(10%); }
  80% {
    transform: translateY(-5%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

img {
  display: block;
  width: 100%; }

html {
  font-size: 62.5%; }
  @media only screen and (max-width: 56.25em) {
    html {
      font-size: 56.25%; } }
  @media only screen and (max-width: 37.5em) {
    html {
      font-size: 50%; } }

body {
  box-sizing: border-box;
  background-color: #f8f9fd; }

a {
  text-decoration: none; }

ul {
  list-style: none; }

main {
  min-height: 95vh; }

.menudot {
  position: absolute;
  top: -10px;
  right: 0;
  cursor: pointer; }
  .menudot-table {
    top: 4px !important; }
  .menudot-question {
    top: -8px !important; }
  .menudot-wrapper {
    background-color: #f9f9f9;
    width: 170px;
    padding: 1rem;
    position: absolute;
    right: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
    display: none;
    font-size: 1.3rem; }
    .menudot-wrapper button,
    .menudot-wrapper a {
      border: none;
      width: 100%;
      cursor: pointer;
      padding: 1rem 2rem;
      background-color: transparent;
      display: block;
      text-align: center;
      color: #777; }
      .menudot-wrapper button:hover,
      .menudot-wrapper a:hover {
        color: #000; }
      .menudot-wrapper button:not(:last-child),
      .menudot-wrapper a:not(:last-child) {
        border-bottom: 1px solid #e4e4e4; }
    .menudot-wrapper_open {
      display: block;
      z-index: 9; }

.menudot:before {
  content: "\2807";
  font-size: 2.7rem; }

.menudot2 {
  position: absolute;
  top: -10px;
  right: 0;
  cursor: pointer; }
  .menudot2-table {
    top: 4px !important; }
  .menudot2-question {
    top: -8px !important; }
  .menudot2-wrapper {
    background-color: #f9f9f9;
    width: 170px;
    padding: 1rem;
    position: absolute;
    right: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
    display: none;
    font-size: 1.3rem; }
    .menudot2-wrapper button,
    .menudot2-wrapper a {
      border: none;
      width: 100%;
      cursor: pointer;
      padding: 1rem 2rem;
      background-color: transparent;
      display: block;
      text-align: center;
      color: #777; }
      .menudot2-wrapper button:hover,
      .menudot2-wrapper a:hover {
        color: #000; }
      .menudot2-wrapper button:not(:last-child),
      .menudot2-wrapper a:not(:last-child) {
        border-bottom: 1px solid #e4e4e4; }
    .menudot2-wrapper_open {
      display: block;
      z-index: 9; }

.menudot2:before {
  content: "\2807";
  font-size: 2.7rem; }

.clear {
  clear: both; }

.wrapper {
  width: 130rem;
  padding: 1rem 2rem;
  margin: auto;
  position: relative; }
  @media only screen and (max-width: 81.5em) {
    .wrapper {
      width: 100%; } }

table .cancelled {
  background-color: #ffb2b2; }

table .delivered {
  background-color: #fff6a8; }

table .paid {
  background-color: #a4ffa4; }

table .pending {
  background-color: #eeeeee; }

.listItem {
  display: flex;
  justify-content: space-between; }

.rangeBar {
  position: relative;
  background-color: #2d85c5;
  width: 100%;
  height: 20px;
  transform: skew(30deg);
  font-family: "Orbitron", monospace; }
  .rangeBar:before {
    --width: calc(var(--p) * 1%);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #a5d3eb;
    z-index: 0;
    animation: load 2s forwards linear, glitch 2s infinite linear; }
  .rangeBar:after {
    counter-reset: progress var(--p);
    content: counter(progress) "%";
    color: #042e44;
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%) skewX(-30deg);
    z-index: 1;
    font-size: 1.2rem; }
  .rangeBar__label {
    transform: skew(-30deg) translateY(-100%);
    line-height: 1.5; }

@keyframes load {
  to {
    width: var(--width); } }

.deleteOrder {
  color: red; }

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #777; }

.heading-primary {
  line-height: 6rem;
  margin-bottom: 1rem;
  font-weight: 900;
  font-size: 5rem;
  color: #61bdee; }

.heading-secondary {
  line-height: 6rem;
  font-size: 4rem;
  font-weight: 800;
  color: #e14b32; }

.heading-tertiary {
  font-size: 3rem;
  font-weight: 700;
  color: #e14b32; }

.heading-quaternary {
  font-size: 2rem;
  font-weight: 700;
  color: #e14b32; }

.heading--animate {
  animation: moveInBottom 0.5s ease-out 0.5s;
  animation-fill-mode: backwards; }

.heading-color-primary {
  color: #61bdee !important; }

.heading-color-secondary {
  color: #c23726 !important; }

.heading-color-tertiary {
  color: #9e58ff !important; }

.heading-color-white {
  color: #fff !important; }

.heading-color-black {
  color: #000 !important; }

.paragraph {
  font-size: 1.6rem; }
  .paragraph:not(:last-child) {
    margin-bottom: 30px; }

.message-low {
  font-size: 1.4rem;
  color: #ccc; }

.u-center-text {
  text-align: center !important; }

.u-right-text {
  text-align: right !important; }
  @media only screen and (max-width: 56.25em) {
    .u-right-text {
      text-align: left !important; } }

.u-center-div {
  margin: 0 auto; }

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important; }

.u-margin-bottom-medium {
  margin-bottom: 4rem !important; }

.u-margin-bottom-large {
  margin-bottom: 8rem !important; }

.u-margin-top-small {
  margin-top: 1.5rem !important; }

.u-margin-top-medium {
  margin-top: 4rem !important; }

.u-margin-top-large {
  margin-top: 8rem !important; }

.u-margin-right-small {
  margin-right: 1.5rem !important; }

.u-margin-right-medium {
  margin-right: 4rem !important; }

.u-margin-right-large {
  margin-right: 8rem !important; }

.u-padding-small {
  padding: 2rem !important; }

.u-padding-medium {
  padding: 5rem !important; }

.u-padding-large {
  padding: 8rem !important; }

.u-padding-top-small {
  padding-top: 1.5rem !important; }

.u-padding-top-medium {
  padding-top: 4rem !important; }

.u-padding-top-large {
  padding-top: 8rem !important; }

.u-padding-vertical-small {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important; }

.u-padding-vertical-medium {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important; }

.u-padding-button-small {
  padding: 1rem 1.5rem !important; }

.u-margin-vertical-none {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.u-padding-side-none {
  padding-left: 0 !important;
  padding-right: 0 !important; }

.u-top-0 {
  top: 0 !important; }

.u-alignL {
  text-align: left; }

.u-flex {
  display: flex;
  align-items: center; }

.u-color-white {
  color: #fff !important; }

.u-color-black {
  color: #000 !important; }

.u-wrapper-small {
  margin-bottom: 35px;
  max-width: 650px;
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: left; }

.u-text-transform {
  text-transform: uppercase; }

.accordion {
  width: 100%;
  background-color: transparent;
  cursor: pointer;
  padding: 18px;
  border: none;
  text-align: left;
  outline: none;
  position: relative;
  border: 1px solid #c7c7c7;
  border-bottom: none; }
  .accordion--rotate span {
    font-size: 3rem;
    transform: rotate(90deg) !important; }
  .accordion span {
    font-size: 2.3rem;
    position: absolute;
    right: 2rem;
    top: 1rem;
    transition: all 0.5s ease;
    transform: rotate(-90deg); }
  .accordion--last {
    border-bottom: 1px solid #c7c7c7; }

.panel {
  padding: 0 2rem;
  max-height: 0rem;
  overflow: hidden; }
  .panel--open {
    border: 1px solid #c7c7c7;
    border-bottom: none;
    transition: all 0.8s ease; }
  .panel--last {
    border-bottom: 1px solid #c7c7c7; }

.panel p {
  padding: 3rem 0; }

.blog {
  width: 80%; }
  .blog-header-item-large {
    width: 100%;
    background-color: #61bdee; }
  .blog-header-item-holder {
    width: 100%; }
  .blog-header-item {
    width: 20%;
    background-color: #a5d3eb; }

.blog--box {
  width: 100%; }
  .blog--box-img {
    width: 100%;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative; }
  .blog--box-date {
    font-size: 2.5rem;
    font-weight: 600;
    position: absolute;
    top: 2rem;
    right: 2rem;
    background-color: #fff;
    text-align: center;
    padding-bottom: 1rem; }
    .blog--box-date span {
      display: block;
      background-color: #2d85c5;
      padding: 1rem 2.5rem;
      color: #fff;
      margin-bottom: 1rem; }
    @media only screen and (max-width: 37.5em) {
      .blog--box-date {
        font-size: 1.5rem; } }

.blog--box2 {
  width: 100%; }
  .blog--box2-img {
    width: 100%;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative; }
  .blog--box2-date {
    font-size: 1.8rem;
    font-weight: 600;
    position: absolute;
    top: 2rem;
    right: 2rem;
    background-color: #fff;
    text-align: center;
    padding-bottom: 0.5rem; }
    .blog--box2-date span {
      display: block;
      background-color: #2d85c5;
      padding: 0.5rem 2.5rem;
      color: #fff;
      margin-bottom: 0.5rem; }
    @media only screen and (max-width: 37.5em) {
      .blog--box2-date {
        font-size: 1.5rem; } }
  .blog--box2-name {
    padding-top: 3rem; }
    .blog--box2-name h2 {
      margin-bottom: 1rem; }
    .blog--box2-name p {
      font-size: 1.4rem; }

.bubble {
  background-color: #fff;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
  position: relative; }
  .bubble h1,
  .bubble h2, .bubbleh3,
  .bubble h4 {
    color: #5c5253; }
  .bubble-header {
    padding: 2rem;
    border-bottom: 1px solid #e6e6e6;
    position: relative; }
    .bubble-header p {
      color: #bfbfbf;
      font-weight: 600;
      font-size: 1.4rem; }
  .bubble-list {
    padding: 2rem;
    position: relative; }
    .bubble-list h2 {
      color: #5571c0; }
    .bubble-list:not(:last-child) {
      border-bottom: 1px solid #e6e6e6; }
  .bubble-heading {
    color: #0f87be;
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 1.6rem; }
    .bubble-heading_dark {
      font-size: 3rem;
      font-weight: 900;
      color: #303972; }
    .bubble-heading_title {
      font-size: 1.6rem !important;
      font-weight: 600; }
    .bubble-heading_time {
      font-weight: 600;
      color: #303972; }
  .bubble-scroll {
    max-height: 1000px;
    overflow-x: hidden;
    overflow-y: auto; }
  .bubble-nm {
    margin: 0; }
  .bubble h2 {
    font-size: 2rem; }
  .bubble-round {
    border-radius: 0.6rem; }
  .bubble .menudot {
    top: 24px;
    right: 10px; }
  .bubble .menudot2 {
    top: 24px;
    right: 10px; }
  .bubble-subject {
    position: relative;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6rem; }

.btn {
  border-radius: 0.5rem; }
  .btn, .btn:link, .btn:visited {
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    position: relative;
    font-size: 1.6rem; }
  .btn--btn {
    border: none;
    cursor: pointer;
    padding: 1rem 2rem;
    background-color: transparent; }
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); }
    .btn:hover::after {
      transform: scaleX(1.2) scaleY(1.8);
      opacity: 0; }
  .btn--view {
    background-color: #e8f9ef;
    padding: 0.7rem 1.8rem;
    line-height: initial;
    border: none;
    color: #22c55e;
    border-radius: 3px;
    font-weight: 600;
    font-size: 1.4rem; }
    .btn--view:hover {
      color: #fff;
      background-color: #22c55e; }
  .btn--delete {
    background-color: #f9e8e8;
    padding: 0.7rem 1.8rem;
    line-height: initial;
    border: none;
    color: #e40000;
    border-radius: 3px;
    font-weight: 600;
    font-size: 1.4rem; }
    .btn--delete:hover {
      color: #fff;
      background-color: #e40000; }
  .btn--pending {
    background-color: #ffcf8c;
    padding: 0.7rem 1.8rem;
    line-height: initial;
    border: none;
    color: #fff;
    border-radius: 3px;
    font-weight: 600;
    font-size: 1.4rem; }
    .btn--pending:hover {
      color: #fff;
      background-color: #ffa01b; }
  .btn--basic {
    background-color: #e8f7f9;
    padding: 0.7rem 1.8rem;
    line-height: initial;
    border: none;
    color: #0c8a9b;
    border-radius: 3px;
    font-weight: 600;
    font-size: 1.4rem; }
  .btn--basic_link {
    background-color: #e8f7f9;
    padding: 0.7rem 1.8rem;
    line-height: initial;
    border: none;
    color: #0c8a9b;
    border-radius: 3px;
    font-weight: 600;
    font-size: 1.4rem; }
    .btn--basic_link:hover {
      color: #fff;
      background-color: #0c8a9b; }
  .btn:active, .btn:focus {
    outline: none;
    transform: translateY(-1px);
    box-shadow: 0 0.5rem 1rem rgba(97, 189, 238, 0.2); }
  .btn--black-outline {
    border: 1.5px solid #000;
    color: #000 !important; }
    .btn--black-outline:hover {
      color: #fff !important;
      background-color: #000; }
  .btn--primary-outline_black {
    border: 1.5px solid #61bdee;
    color: #000 !important; }
    .btn--primary-outline_black:hover {
      color: #fff !important;
      background-color: #61bdee; }
    .btn--primary-outline_black::after {
      background-color: #61bdee;
      transform: scale(0); }
  .btn--primary-outline_white {
    border: 1.5px solid #61bdee;
    color: #fff !important; }
    .btn--primary-outline_white:hover {
      color: #000 !important;
      background-color: #61bdee; }
    .btn--primary-outline_white::after {
      background-color: #61bdee;
      transform: scale(0); }
  .btn--primary {
    background-color: #61bdee;
    color: #fff !important; }
    .btn--primary::after {
      background-color: #a5d3eb; }
  .btn--secondary {
    background-color: #e14b32;
    color: #fff !important; }
    .btn--secondary::after {
      background-color: #dfa693; }
  .btn--tertiary {
    background-color: #9e58ff;
    color: #fff !important; }
    .btn--tertiary::after {
      background-color: #cba6ff; }
  .btn--outline-black_white {
    border: 1.5px solid #000;
    color: #000 !important; }
    .btn--outline-black_white:hover {
      color: #fff !important;
      background-color: #000; }
  .btn--outline-white_black {
    border: 1.5px solid #fff;
    color: #fff !important; }
    .btn--outline-white_black:hover {
      color: #000 !important;
      background-color: #fff; }
  .btn--black-white {
    border: 1.5px solid #000;
    color: #fff !important;
    background-color: #000;
    text-transform: none !important;
    padding: 1rem 3rem; }
    .btn--black-white:hover {
      color: #000 !important;
      background-color: #fff; }
  .btn--buy {
    border: 1.5px solid #000;
    color: #000 !important;
    background-color: #fff;
    text-transform: none !important;
    padding: 0.5rem 2rem; }
    .btn--buy:hover {
      color: #fff !important;
      background-color: #000; }
  .btn--navigation_primary {
    padding: 1rem 1.5rem;
    color: #000 !important;
    background-color: rgba(255, 255, 255, 0.4) !important;
    transition: all 0.7s; }
    @media only screen and (max-width: 37.5em) {
      .btn--navigation_primary {
        background-color: transparent;
        padding: 0 !important; } }
    .btn--navigation_primary:hover {
      color: #61bdee !important;
      background-color: white !important; }
  .btn--navigation_white {
    padding: 1rem 1.5rem;
    color: #000 !important;
    background-color: rgba(255, 255, 255, 0.4) !important;
    transition: all 0.7s; }
    @media only screen and (max-width: 37.5em) {
      .btn--navigation_white {
        background-color: transparent;
        padding: 0 !important; } }
    .btn--navigation_white:hover {
      background-color: white !important; }
  .btn--navigation_black {
    padding: 1rem 1.5rem;
    color: #fff !important;
    background-color: rgba(0, 0, 0, 0.4) !important;
    transition: all 0.7s; }
    @media only screen and (max-width: 37.5em) {
      .btn--navigation_black {
        color: #fff !important; }
        .btn--navigation_black:hover {
          background-color: black !important; } }
    .btn--navigation_black:hover {
      background-color: black !important; }
  .btn--navigation_black2 {
    padding: 1rem 1.5rem;
    color: #000 !important;
    transition: all 0.7s; }
    @media only screen and (max-width: 37.5em) {
      .btn--navigation_black2 {
        background-color: transparent;
        padding: 0 !important; } }
  .btn--large {
    padding: 1.5rem 4rem; }
  .btn--small {
    padding: 0.6rem 1.9rem; }
  .btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.3s;
    border-radius: 0.5remlo; }
  .btn--animated {
    animation: moveInBottom 0.3s ease-out 0.5s;
    animation-fill-mode: backwards; }

.btn--text {
  padding: 0.6rem 1.9rem;
  border: none;
  font-size: 1.6rem;
  color: #2d85c5;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #2d85c5;
  transition: all 0.2s;
  background-color: transparent; }
  .btn--text:link, .btn--text:visited {
    font-size: 1.6rem;
    color: #2d85c5;
    display: inline-block;
    text-decoration: none;
    border-bottom: 1px solid #2d85c5;
    transition: all 0.2s; }
  .btn--text:hover {
    background-color: #61bdee;
    color: #fff !important;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
    transform: translateY(-2px); }
  .btn--text:active {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transform: translateY(0); }
  .btn--text_large {
    padding: 1.5rem 4rem; }
  .btn--text_small {
    padding: 0.3rem 1rem; }

.cart {
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  border-radius: 8rem;
  background-color: #fff;
  box-shadow: 0px 0px 3px #363636;
  cursor: pointer; }

.card-wrapper {
  text-align: center;
  padding: 6rem 2rem;
  background: #fff8ef; }
  .card-wrapper_img img {
    height: 40px;
    width: auto;
    margin: 0 auto; }
  .card-wrapper_title {
    height: 88px; }
    .card-wrapper_title h1 {
      margin-bottom: 1rem;
      margin-top: 2rem;
      font-size: 3rem;
      line-height: 3rem; }
    .card-wrapper_title p {
      margin-top: -1rem; }
  .card-wrapper_price {
    position: relative; }
    .card-wrapper_price-amount {
      font-size: 6rem;
      font-weight: 900; }
      .card-wrapper_price-amount span {
        font-size: 2.5rem;
        vertical-align: super; }
    .card-wrapper_price-desc {
      position: absolute;
      font-size: 1.5rem;
      color: #b3b3b3;
      bottom: 0;
      left: 0;
      right: 0; }
  .card-wrapper_desc {
    min-height: 120px; }
    .card-wrapper_desc p {
      font-size: 1.4rem;
      margin-top: 1.4rem;
      line-height: 1.7rem; }

.client-wrapper {
  text-align: center;
  padding: 6rem 2rem 2rem;
  background: #fff8ef; }
  .client-wrapper_img {
    margin: 0 auto;
    background-color: #e9caa1;
    border-radius: 8rem;
    padding: 1.5rem;
    width: 8rem;
    height: 8rem;
    font-size: 3rem;
    font-weight: 900;
    color: #ab7e43; }
  .client-wrapper_name {
    padding: 3rem 0 1.5rem 0;
    font-size: 2rem;
    font-weight: 900; }
  .client-wrapper_button {
    margin-top: 1.5rem; }
    .client-wrapper_button a {
      width: 100%;
      border-radius: 2rem; }

.club-wrapper {
  padding: 1rem 1.5rem 2rem 1.5rem;
  background: #9e58ff;
  border-radius: 0.5rem;
  box-shadow: 0px 2px 6px #7689c3; }
  .club-wrapper_img img {
    width: 100%;
    margin: 0 auto; }
  .club-wrapper_title {
    line-height: 180; }
    .club-wrapper_title h2 {
      margin-bottom: 1rem;
      margin-top: 2rem;
      font-size: 2.5rem;
      line-height: 2.5rem;
      color: #000f38; }
    .club-wrapper_title p {
      margin-top: -1rem; }
  .club-wrapper_desc {
    min-height: 80px;
    max-height: 100px;
    overflow: hidden;
    color: #666060; }
    .club-wrapper_desc p {
      font-size: 1.4rem;
      margin-top: 1.4rem;
      line-height: 1.7rem; }
  .club-wrapper .line {
    border-right: 1px solid #bec8e5; }
  .club-wrapper .age {
    text-decoration: none;
    color: #000f38;
    font-weight: 600; }
  .club-wrapper .ageD {
    text-decoration: none;
    color: #61bdee;
    font-weight: 800;
    font-size: 2.5rem; }

.event-wrapper {
  text-align: center;
  padding: 6rem 2rem;
  background: #e14b32;
  border-radius: 1.5rem; }
  .event-wrapper_img img {
    height: 40px;
    width: auto;
    margin: 0 auto; }
  .event-wrapper_title {
    line-height: 180;
    height: 80px;
    overflow: hidden; }
    .event-wrapper_title h2 {
      margin-bottom: 1rem;
      margin-top: 2rem;
      font-size: 3.5rem;
      line-height: 3rem;
      color: #fff; }
    .event-wrapper_title p {
      margin-top: -1rem; }
  .event-wrapper_price {
    position: relative;
    color: #748fdb; }
    .event-wrapper_price-amount {
      font-size: 4.5rem;
      font-weight: 900; }
      .event-wrapper_price-amount span {
        font-size: 2.5rem;
        vertical-align: super; }
    .event-wrapper_price-desc {
      position: absolute;
      font-size: 1.5rem;
      color: #b3b3b3;
      bottom: 0;
      left: 0;
      right: 0; }
  .event-wrapper_desc {
    min-height: 80px;
    color: #c9c9c9; }
    .event-wrapper_desc p {
      font-size: 1.4rem;
      margin-top: 1.4rem;
      line-height: 1.7rem; }

.flash {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 100;
  transition: all 0.3s; }
  @supports (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px)) {
    .flash {
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      background-color: rgba(0, 0, 0, 0.3); } }
  .flash__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 65rem;
    width: 75%;
    background-color: #fff;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    transition: all 0.5s 0.2s;
    padding: 2rem 3rem;
    z-index: 101; }
    @media only screen and (max-width: 56.25em) {
      .flash__content {
        width: 90%;
        display: block; } }
    .flash__content-img {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      max-width: 65rem;
      width: 75%;
      background-color: #fff;
      box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
      border-radius: 3px;
      transition: all 0.5s 0.2s;
      padding: 1rem;
      z-index: 101; }
      @media only screen and (max-width: 56.25em) {
        .flash__content-img {
          max-width: auto;
          width: 96%;
          display: block; } }
  .flash__text {
    font-size: 1.4rem;
    margin-bottom: 4rem; }
  .flash:target {
    opacity: 1;
    visibility: visible; }
  .flash:target .flash__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); }
  .flash__close {
    color: #000f38;
    background-color: #eceeff;
    padding: 0.4rem 0.8rem;
    font-weight: 700;
    border-radius: 5px;
    position: absolute;
    top: 0.5rem;
    right: 2.5rem;
    font-size: 4rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    line-height: 1;
    cursor: pointer; }
    .flash__close:hover {
      color: #61bdee; }

.forms-wrapper-small {
  width: 450px;
  margin: 0 auto; }
  @media only screen and (max-width: 37.5em) {
    .forms-wrapper-small {
      width: 95%; } }

.forms-wrapper-medium {
  width: 550px;
  margin: 0 auto; }
  @media only screen and (max-width: 37.5em) {
    .forms-wrapper-medium {
      width: 95%; } }

.forms-wrapper-large {
  width: 650px;
  margin: 0 auto; }
  @media only screen and (max-width: 56.25em) {
    .forms-wrapper-large {
      width: 95%; } }

.form {
  width: 100%; }
  .form::after {
    content: "";
    display: table;
    clear: both; }
  .form__group:not(:last-child) {
    margin-bottom: 2rem; }
  .form__field {
    margin: 2rem 0; }
    .form__field span {
      color: #f10000; }
  .form__options {
    width: 100%;
    padding: 1.4rem;
    border: 1px solid #eeeeee;
    border-bottom: 3px solid #eeeeee; }
    .form__options:focus {
      outline: none;
      box-shadow: 0 0.5rem 0.8rem rgba(0, 0, 0, 0.2);
      border-bottom: 3px solid #e14b32; }
  .form__p {
    margin: 1rem 0;
    font-size: 1.5rem; }
  .form__input {
    font-size: 1.5rem;
    font-family: inherit;
    color: inherit;
    padding: 1.5rem 2rem;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid #eeeeee;
    border-bottom: 3px solid #eeeeee;
    width: 100%;
    display: block;
    transition: all 0.3s;
    height: 52px; }
    .form__input:focus {
      outline: none;
      box-shadow: 0 0.5rem 0.8rem rgba(0, 0, 0, 0.2);
      border-bottom: 3px solid #00f120; }
    .form__input:focus:invalid {
      border-bottom: 3px solid #f10000; }
    .form__input::-webkit-input-placeholder {
      color: #999; }
  .form__text {
    font-size: 1.5rem;
    font-family: inherit;
    color: inherit;
    padding: 1.5rem 2rem;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid #eeeeee;
    border-bottom: 3px solid #eeeeee;
    width: 100%;
    display: block;
    transition: all 0.3s;
    height: 15rem; }
    .form__text:focus {
      outline: none;
      box-shadow: 0 0.5rem 0.8rem rgba(0, 0, 0, 0.2);
      border-bottom: 3px solid #00f120; }
    .form__text:focus:invalid {
      border-bottom: 3px solid #f10000; }
    .form__text::-webkit-input-placeholder {
      color: #999; }
  .form__label {
    font-weight: 600;
    margin-top: 0.7rem;
    display: block; }
  .form__error {
    color: #f10000; }
  .form .check-field {
    display: flex;
    align-items: center;
    margin: 1rem 0; }
    .form .check-field img {
      margin-right: 1rem;
      width: 2.5rem; }
  .form__checkbox {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 1.5rem;
    vertical-align: middle; }
  .form__1-of-2 {
    float: left;
    width: 50%; }

.radio__button-D {
  display: none; }
  .radio__button-D:checked + label {
    background-color: #61bdee;
    color: #fff; }
  .radio__button-D:checked + label::before {
    height: 16px;
    width: 16px;
    border: 3px solid #fff;
    background-color: #61bdee; }

.radio__button-label {
  position: relative;
  color: #61bdee;
  border: 2px solid #61bdee;
  border-radius: 5px;
  padding: 10px 50px;
  display: inline-block;
  cursor: pointer;
  margin-top: 2rem; }
  .radio__button-label::before {
    content: "";
    height: 16px;
    width: 16px;
    border: 3px solid #61bdee;
    border-radius: 50%;
    margin-right: 20px;
    display: inline-block; }

.checkbox-wrapper {
  margin-bottom: 2rem; }

.map iframe {
  width: 100%; }

.members {
  margin-top: 6rem;
  text-align: center; }
  .members--box {
    width: 200px;
    border-radius: 1rem;
    overflow: hidden;
    margin: 2%;
    display: inline-block; }
    .members--box a {
      color: #61bdee; }
      .members--box a:hover {
        color: #e14b32; }
  .members--img {
    margin: 1rem 3rem;
    border-radius: 50%;
    overflow: hidden; }
    .members--img img {
      width: 100%;
      display: block; }
  .members--name {
    margin-top: 1rem; }
    .members--name h2 {
      font-size: 1.5rem; }

@media only screen and (max-width: 56.25em) {
  .notifications .row .col-1-of-4 {
    width: 100% !important;
    padding: 2rem 0; } }

.notifications--box {
  border: 0.2rem solid #c7c7c7; }

.notifications--item {
  padding: 2rem 1rem; }
  .notifications--item:not(:last-child) {
    border-bottom: 0.2rem solid #c7c7c7; }

.notifications--title span {
  font-weight: 500;
  font-size: 1rem; }

.notifications--note {
  font-size: 1.25rem; }

.notifications--avatar {
  width: 6rem;
  height: 6rem;
  border-radius: 6rem;
  overflow: hidden;
  background-color: #c7c7c7; }
  @media only screen and (max-width: 56.25em) {
    .notifications--avatar {
      text-align: center;
      margin: 0 auto; } }

.notifications--message {
  font-size: 1.3rem; }

.notifications--unread {
  background-color: #e0e0e0; }

.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1003;
  opacity: 0;
  visibility: hidden;
  transition: all .3s; }
  @supports (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px)) {
    .popup {
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      background-color: rgba(0, 0, 0, 0.3); } }
  .popup__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 65rem;
    width: 75%;
    background-color: #fff;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    transition: all .5s .2s;
    padding: 2rem 3rem;
    z-index: 60;
    opacity: 0; }
  .popup__text {
    font-size: 1.4rem;
    margin-bottom: 4rem; }
  .popup:target {
    opacity: 1;
    visibility: visible; }
  .popup:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); }
  .popup__close {
    color: #777;
    position: absolute;
    top: 0.5rem;
    right: 2.5rem;
    font-size: 4rem;
    text-decoration: none;
    display: inline-block;
    transition: all .2s;
    line-height: 1;
    cursor: pointer; }
    .popup__close:hover {
      color: #61bdee; }

.popup2 {
  height: 100vh;
  width: 30rem;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #000;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: all .2s;
  transform: translateX(100%); }
  .popup2-target {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    box-shadow: -1rem 0 0.5rem rgba(0, 0, 0, 0.44); }

.post {
  width: 98%;
  margin: 0 auto;
  border: 0.1rem solid #c7c7c7; }
  .post--wrapper {
    width: 100%;
    padding: 2rem 4%;
    position: relative; }
    .post--wrapper-menu {
      position: absolute;
      right: 1%;
      top: 1rem;
      font-size: 3rem;
      width: 3rem;
      text-align: center;
      cursor: pointer; }
    .post--wrapper-header_avatar {
      width: 7rem;
      height: 7rem;
      border-radius: 7rem;
      background-color: grey;
      float: left;
      overflow: hidden; }
    .post--wrapper-header_name {
      float: left;
      margin-left: 2rem;
      margin-top: .5rem;
      font-size: 1.8rem;
      display: inline-block; }
    .post--wrapper-status {
      margin: 2rem 0; }
      .post--wrapper-status img {
        max-width: 60rem;
        margin: 3rem auto; }

.quiz {
  border: 1px solid #e6e6e6;
  border-radius: 1rem;
  padding: 2rem; }
  .quiz h3 {
    font-weight: 700;
    font-size: 1.6rem; }
  .quiz-question {
    font-size: 1.4rem;
    position: relative;
    padding: 5rem; }
    .quiz-question:not(:last-child) {
      border-bottom: 1px solid #e6e6e6;
      padding-bottom: 2rem;
      margin-bottom: 1rem; }
  .quiz .tags ul {
    display: flex;
    flex-wrap: wrap;
    padding: 7px;
    margin: 12px 0;
    border-radius: 5px;
    border: 1px solid #e6e6e6; }
  .quiz .tags ul li {
    color: #fff;
    margin: 4px 3px;
    list-style: none;
    border-radius: 5px;
    background-color: #0c8a9b;
    padding: 2px 8px 2px 10px;
    border: 1px solid #e3e1e1; }
  .quiz .tags ul li i {
    color: #0c8a9b;
    margin-left: 8px;
    font-size: 12px;
    cursor: pointer;
    border-radius: 50%;
    background: #e8f7f9;
    justify-content: center;
    font-style: normal;
    padding: 0.1rem 0.5rem;
    font-weight: 900; }
  .quiz .tags ul input {
    flex: 1;
    padding: 5px;
    border: none;
    outline: none;
    font-size: 16px; }

.receipt {
  background-color: #fff8ef;
  padding: 3rem; }
  .receipt-name {
    font-size: 3rem;
    margin-bottom: 1rem; }
  .receipt-phone {
    margin-bottom: 1rem; }

#slider {
  margin: 0 auto;
  width: 600px;
  max-width: 100%;
  text-align: center; }

#slider input[type="radio"] {
  display: none; }

#slider label {
  cursor: pointer;
  text-decoration: none; }

#slides {
  position: relative;
  z-index: 1; }

#overflow {
  width: 100%;
  overflow: hidden; }

#slide1:checked ~ #slides .inner {
  margin-left: 0; }

#slide2:checked ~ #slides .inner {
  margin-left: -100%; }

#slide3:checked ~ #slides .inner {
  margin-left: -200%; }

#slide4:checked ~ #slides .inner {
  margin-left: -300%; }

#slides .inner {
  transition: margin-left 800ms cubic-bezier(0.77, 0, 0.175, 1);
  width: 400%;
  height: 300px; }

#slides .slide {
  width: 25%;
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; }

.slide-content__avatar {
  width: 125px;
  height: 125px;
  border-radius: 125px;
  background-color: #cecece;
  margin: 0 auto;
  margin-bottom: 2rem; }
  .slide-content__avatar img {
    width: 100%; }

.slide-content p {
  font-size: 1.4rem; }

#controls {
  margin: -180px 0 0 0;
  width: 100%;
  height: 50px;
  z-index: 3;
  position: relative; }

#controls label {
  transition: opacity 0.2s ease-out;
  display: none;
  width: 50px;
  height: 50px;
  opacity: 0.4; }

#controls label:hover {
  opacity: 1; }

#bullets {
  margin: 2rem 0 0;
  text-align: center; }

#bullets label {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #ccc;
  margin: 0 10px; }

#slide1:checked ~ #bullets label:nth-child(1),
#slide2:checked ~ #bullets label:nth-child(2),
#slide3:checked ~ #bullets label:nth-child(3),
#slide4:checked ~ #bullets label:nth-child(4) {
  background: #444; }

@media screen and (max-width: 900px) {
  #slides {
    max-width: calc(100% - 140px);
    margin: 0 auto; } }

.shop-box--category {
  padding: 2rem;
  overflow: hidden; }
  .shop-box--category a {
    text-decoration: none;
    color: #000; }
  .shop-box--category__img {
    width: 100%;
    overflow: hidden; }
    .shop-box--category__img img {
      width: 100%; }
  .shop-box--category__button {
    position: relative;
    margin: 0 auto;
    text-align: center;
    margin-top: -2.2rem; }
    .shop-box--category__button a {
      font-size: 1.3rem !important; }
  .shop-box--category__desc {
    padding: 2rem 0;
    overflow: hidden; }
    .shop-box--category__desc h3 {
      line-height: 3rem;
      font-size: 2rem;
      font-weight: 700; }
      @media only screen and (max-width: 56.25em) {
        .shop-box--category__desc h3 {
          font-size: 3rem;
          line-height: 2.8rem; } }
    .shop-box--category__desc p {
      font-size: 1.5rem; }
      @media only screen and (max-width: 56.25em) {
        .shop-box--category__desc p {
          font-size: 2rem; } }
  .shop-box--category__category {
    font-size: 1.5rem;
    color: #747676;
    font-weight: 300; }
  .shop-box--category__paragraph {
    font-size: 1.5rem; }
  .shop-box--category__price {
    color: #747676; }

@media only screen and (max-width: 56.25em) {
  .shop-item_image {
    margin-bottom: 4rem; } }

.shop-box__row-items .col-1-of-4 {
  margin-top: 2rem !important; }

.shop-box--item {
  padding: 2rem;
  overflow: hidden;
  border: 1px solid #ccc; }
  .shop-box--item a {
    text-decoration: none;
    color: #000; }
  .shop-box--item__img {
    width: 100%;
    overflow: hidden; }
    .shop-box--item__img img {
      width: 100%; }
  .shop-box--item__button {
    position: relative;
    margin: 0 auto;
    text-align: center;
    margin-top: 1rem; }
  .shop-box--item__desc {
    padding: 2rem 0;
    text-align: center; }
    .shop-box--item__desc p {
      font-size: 1.25rem; }
  .shop-box--item__category {
    font-size: 1.5rem;
    color: #747676;
    font-weight: 300; }
  .shop-box--item__paragraph {
    font-size: 1.5rem; }
  .shop-box--item__price {
    color: #747676; }

.shop-item__desc .addBag {
  width: 100%; }

.shop-item__category {
  font-weight: 300; }

.shop-item__price {
  font-size: 3rem;
  font-weight: 300; }

@media only screen and (max-width: 56.25em) {
  .shop-item_image {
    margin-bottom: 4rem; } }

.shop-item_image_thumb {
  margin-top: 1rem;
  cursor: pointer; }
  @media only screen and (max-width: 56.25em) {
    .shop-item_image_thumb {
      float: left;
      width: 18.4%; }
      .shop-item_image_thumb:not(:last-child) {
        margin-right: 2%; } }

.shop-item--details h4 {
  margin-bottom: 1rem; }

.shop-item--details p {
  margin-bottom: 1rem;
  font-size: 1.35rem; }

@media only screen and (max-width: 56.25em) {
  .products .col-2-of-3 {
    margin: 0 auto !important;
    float: none !important; } }

@media only screen and (max-width: 56.25em) {
  .products .grid--medium .col-1-of-3 {
    width: 48% !important;
    margin: 0 auto !important;
    margin-bottom: 2rem;
    float: none !important; }
    .products .grid--medium .col-1-of-3:nth-child(3n) {
      margin-right: 4% !important; }
    .products .grid--medium .col-1-of-3:nth-child(even) {
      margin: 2rem auto !important;
      margin-bottom: 2rem !important; } }

@media only screen and (max-width: 37.5em) {
  .products .grid--medium .col-1-of-3 {
    width: 100% !important;
    margin: 0 !important; } }

table {
  width: 100%;
  margin: 2rem 0 1rem 0;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left; }
  table th {
    padding: 1rem;
    font-weight: 700;
    color: #161616;
    background-color: #f8f9fa; }
  table tr {
    border-bottom: 1px solid #e6e6e6; }
    table tr:last-child {
      border: none; }
    table tr .tablemenu {
      position: relative; }
  table td {
    padding: 1rem;
    position: relative; }

/************************************/
/* Footer */
/************************************/
.footer {
  background-color: #000;
  text-align: center;
  width: 100%;
  padding: 20px 0;
  color: #fff;
  font-size: 1.3rem; }
  .footer__notice img {
    display: inline-block;
    vertical-align: middle;
    width: 50px;
    margin-right: 20px; }
    @media only screen and (max-width: 37.5em) {
      .footer__notice img {
        display: block;
        margin: 1rem auto; } }

.grid {
  margin: 0 auto;
  width: 100%; }
  .grid--small {
    width: 60rem;
    margin: 0 auto; }
    @media only screen and (max-width: 56.25em) {
      .grid--small {
        width: 94% !important; } }
  .grid--medium {
    width: 90rem;
    margin: 0 auto; }
    @media only screen and (max-width: 56.25em) {
      .grid--medium {
        width: 94% !important; } }
  .grid--large {
    width: 120rem;
    margin: 0 auto;
    position: relative; }
    @media only screen and (max-width: 90.625em) {
      .grid--large {
        width: 94% !important; } }

.row::after {
  content: "";
  display: table;
  clear: both; }

.row [class^="col-"] {
  float: left; }
  .row [class^="col-"]:not(:last-child) {
    margin-right: 4%; }

.row .col-1-of-2 {
  width: 48%;
  margin-bottom: 2rem; }
  .row .col-1-of-2:nth-child(2n) {
    margin-right: 0; }

.row .col-1-of-2L {
  width: 48%; }
  .row .col-1-of-2L:nth-child(2n) {
    margin-right: 0; }
  @media only screen and (max-width: 56.25em) {
    .row .col-1-of-2L {
      width: 100%;
      margin: 2rem 0 !important; } }

.row .col-1-of-2B {
  width: 48%; }
  .row .col-1-of-2B:nth-child(4n) {
    margin-right: 0; }
  @media only screen and (max-width: 37.5em) {
    .row .col-1-of-2B {
      width: 100%;
      margin-top: 1rem; }
      .row .col-1-of-2B:first-child {
        margin-top: 0; } }

.row .col-1-of-3 {
  width: 30.6666%; }
  .row .col-1-of-3:nth-child(3n) {
    margin-right: 0 !important; }
  @media only screen and (max-width: 56.25em) {
    .row .col-1-of-3 {
      width: 100% !important;
      margin-bottom: 2rem; }
      .row .col-1-of-3:nth-child(3n) {
        margin-right: 4% !important; }
      .row .col-1-of-3:nth-child(even) {
        margin: 2rem 0 !important;
        margin-bottom: 2rem !important; } }

.row .col-1-of-3L {
  width: 30.6666%;
  margin: 2rem 0; }
  .row .col-1-of-3L:nth-child(3n) {
    margin-right: 0 !important; }
  @media only screen and (max-width: 37.5em) {
    .row .col-1-of-3L {
      width: 100%;
      margin: 0 !important; } }

.row .col-1-of-3I {
  width: 30.6666%;
  margin-top: 2rem; }
  .row .col-1-of-3I:nth-child(3n) {
    margin-right: 0 !important; }
  @media only screen and (max-width: 56.25em) {
    .row .col-1-of-3I {
      width: 100% !important;
      margin-bottom: 2rem; }
      .row .col-1-of-3I:nth-child(3n) {
        margin-right: 4% !important; }
      .row .col-1-of-3I:nth-child(even) {
        margin: 2rem 0 !important;
        margin-bottom: 2rem !important; } }

.row .col-1-of-3-large {
  width: 30.6666%;
  margin: 2rem 0; }
  .row .col-1-of-3-large:nth-child(3n) {
    margin-right: 0 !important; }
  @media only screen and (max-width: 37.5em) {
    .row .col-1-of-3-large {
      width: 100% !important;
      margin-bottom: 2rem; }
      .row .col-1-of-3-large:nth-child(3n) {
        margin-right: 4% !important; }
      .row .col-1-of-3-large:nth-child(even) {
        margin: 2rem 0 !important;
        margin-bottom: 2rem !important; } }

.row .col-2-of-3 {
  width: 65.3334%; }
  @media only screen and (max-width: 56.25em) {
    .row .col-2-of-3 {
      width: 100%;
      margin: 0 !important; } }

.row .col-1-of-4 {
  width: 22%;
  margin-bottom: 2rem; }
  .row .col-1-of-4:nth-child(4n) {
    margin-right: 0; }
  @media only screen and (max-width: 56.25em) {
    .row .col-1-of-4 {
      margin-bottom: 2rem; } }

.row .col-1-of-4-large {
  width: 24.25%;
  margin-top: 2rem; }
  .row .col-1-of-4-large:not(:last-child) {
    margin-right: 1% !important; }
  .row .col-1-of-4-large:nth-child(4n) {
    margin-right: 0 !important; }
  @media only screen and (max-width: 56.25em) {
    .row .col-1-of-4-large {
      width: 49% !important;
      margin-bottom: 2rem; }
      .row .col-1-of-4-large:nth-child(even) {
        margin-right: 0 !important; } }

.row .col-2-of-4 {
  width: 48%; }

.row .col-3-of-4 {
  width: 74%; }
  @media only screen and (max-width: 56.25em) {
    .row .col-3-of-4 {
      width: 100%;
      margin: 0 !important; } }

.row .col-1-of-7 {
  width: 11%;
  margin: 2rem 0; }
  .row .col-1-of-7:nth-child(3n) {
    margin-right: 0 !important; }
  @media only screen and (max-width: 56.25em) {
    .row .col-1-of-7 {
      width: 100% !important;
      margin-bottom: 2rem;
      margin-right: 0 !important; }
      .row .col-1-of-7:nth-child(5n) {
        margin-right: 4% !important; }
      .row .col-1-of-7:nth-child(even) {
        margin: 2rem 0 !important;
        margin-bottom: 2rem !important; } }

.row .col-6-of-7 {
  width: 85%; }
  @media only screen and (max-width: 56.25em) {
    .row .col-6-of-7 {
      width: 100%;
      margin: 0 !important; } }

.logo {
  position: fixed;
  left: 5%;
  top: 2rem;
  max-width: 25rem;
  z-index: 10; }

.nav--toggle {
  display: none; }
  @media only screen and (max-width: 37.5em) {
    .nav--toggle {
      position: fixed;
      right: 5%;
      width: 50px;
      height: 50px;
      top: 3rem;
      cursor: pointer;
      border-radius: 250px;
      z-index: 10;
      display: block; }
      .nav--toggle-menu {
        width: 3.5rem;
        background: #000;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        transition: 0.5s; }
        .nav--toggle-menu::before, .nav--toggle-menu::after {
          content: "";
          position: absolute;
          width: 3.5rem;
          height: 2px;
          background: #000;
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          transition: 0.5s; }
        .nav--toggle-menu::before {
          top: -5px; }
        .nav--toggle-menu::after {
          top: 5px; }
      .nav--toggle-active > .nav--toggle-menu {
        background: rgba(0, 0, 0, 0);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0); }
        .nav--toggle-active > .nav--toggle-menu::before {
          transform: rotate(45deg);
          top: 0; }
        .nav--toggle-active > .nav--toggle-menu::after {
          transform: rotate(135deg);
          top: 0; } }

.nav__links {
  position: fixed;
  right: 5%;
  top: 4rem;
  z-index: 8; }
  .nav__links ul li {
    display: inline-block;
    margin: 0 0.2rem; }
    .nav__links ul li a {
      padding: 1rem 1.5rem;
      font-size: 1.3rem;
      border-radius: 0.15rem; }
  @media only screen and (max-width: 37.5em) {
    .nav__links {
      display: none;
      width: 100%;
      padding-bottom: 75px;
      position: absolute; }
      .nav__links::before {
        content: "";
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background: #f7f7f7;
        z-index: 8; }
      .nav__links ul {
        position: relative;
        z-index: 9;
        margin-top: 10rem;
        padding: 0 3rem; }
        .nav__links ul li {
          display: block;
          margin: 5rem auto; }
          .nav__links ul li a {
            font-size: 1.6rem;
            font-weight: 800; }
          .nav__links ul li a:hover {
            color: #e14b32; }
      .nav__links--is-visible {
        display: block;
        width: 100%;
        height: 100%;
        left: 0; }
      .nav__links h4 {
        cursor: pointer;
        color: #61bdee; }
        .nav__links h4 span {
          font-weight: 500;
          font-size: 1.8rem; }
      .nav__links div {
        display: none; }
      .nav__links .open_links {
        display: block; }
      .nav__links::after {
        content: "";
        display: table;
        clear: both; } }
  .nav__links #nav_icons {
    width: 3.6rem; }
    @media only screen and (max-width: 37.5em) {
      .nav__links #nav_icons {
        width: 100%; } }
    .nav__links #nav_icons a {
      position: relative;
      width: 3.6rem;
      padding: 0; }
      @media only screen and (max-width: 37.5em) {
        .nav__links #nav_icons a {
          color: #000; } }
    .nav__links #nav_icons span {
      display: none; }
      @media only screen and (max-width: 37.5em) {
        .nav__links #nav_icons span {
          display: inline-block; } }
    .nav__links #nav_icons img {
      position: absolute;
      top: -2.3rem;
      width: 3.6rem;
      height: 3.6rem;
      text-align: center;
      vertical-align: middle; }
      @media only screen and (max-width: 37.5em) {
        .nav__links #nav_icons img {
          position: relative;
          display: inline-block;
          margin-left: 4rem;
          top: 0;
          left: 0;
          float: right; } }
  .nav__links::after {
    content: "";
    display: table;
    clear: both; }

.section-size_small {
  padding: 5rem 0 7rem 0; }

.section-size_medium {
  padding: 10rem 0 13rem 0; }

.section-size_large {
  padding: 15rem 0 18rem 0; }

.section-color_primary {
  background-color: #a5d3eb; }

.section-color_grey {
  background-color: #f7f9ff; }
