.introContainer {
  position: relative;
  width: 100%;
  max-width: 2000px;
  height: 50vw;
  background-color: #15161b;
  top: 0;
  overflow: hidden;
  z-index: -2;
  margin: 0 auto;
}
.introContainer img {
  position: absolute;
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  visibility: hidden;
  animation: slide-animation 20s linear infinite;
  z-index: 0;
  -webkit-clip-path: polygon(40% 0, 80% 0, 60% 100%, 20% 100%);
          clip-path: polygon(40% 0, 80% 0, 60% 100%, 20% 100%);
  transform: scale(1);
}
.introContainer h2 {
  position: absolute;
  text-transform: uppercase;
  font-size: 10vw;
  animation: srf-mst 20s linear infinite backwards;
  text-shadow: rgba(0, 0, 0, 0.2) 3px 3px 3px;
}
.introContainer .downArrow {
  position: relative;
  left: calc(50% - 7.5vw);
  top: 75%;
}

.introContainer h2:nth-of-type(1) {
  font-family: "Raleway";
  top: 10%;
  left: 10%;
  color: #3e58d6;
  animation-delay: 2s;
}

.introContainer h2:nth-of-type(2) {
  top: calc(50% - 7vw - 2.5%);
  right: 25%;
  font-family: "Montserrat";
  font-weight: 300;
  font-style: italic;
  color: #dadada;
  animation-delay: 3s;
}

.introContainer h2:nth-of-type(3) {
  bottom: 20%;
  right: 10%;
  color: #d63131;
  animation-delay: 4s;
}

.introContainer h2:nth-of-type(4) {
  top: 25%;
  left: 15%;
  color: #ffea75;
  animation-delay: 12s;
  text-align: center;
}

@keyframes srf-mst {
  0% {
    transform: translateX(240%);
    opacity: 1;
  }
  2% {
    transform: translateX(0);
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.introContainer img:nth-child(1) {
  transform: translateX(-110%);
}

.introContainer img:nth-child(2) {
  transform: translateX(110%);
  animation-delay: 4s;
}

.introContainer img:nth-child(3) {
  transform: translateX(-110%);
  animation-delay: 8s;
}

.introContainer img:nth-child(4) {
  transform: translateX(110%);
  animation-delay: 12s;
}

.introContainer img:nth-child(5) {
  transform: translateX(-110%);
  animation-delay: 16s;
}

@keyframes slide-animation {
  0% {
    visibility: visible;
  }
  5% {
    -webkit-clip-path: polygon(40% 0, 80% 0, 60% 100%, 20% 100%);
            clip-path: polygon(40% 0, 80% 0, 60% 100%, 20% 100%);
    transform: scale(1);
  }
  6.25% {
    transform: translateX(0);
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
  25% {
    transform: translateX(0);
    z-index: -1;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
    transform: scale(1.1);
  }
  30% {
    transform: translateX(0);
    z-index: -1;
    visibility: hidden;
  }
}
#navbar {
  width: 100%;
  height: 7vw;
  background: linear-gradient(0deg, rgba(39, 39, 39, 0) 0%, rgba(39, 39, 39, 0.5) 2.5%, #3d3d3d 12%);
  display: flex;
  justify-content: center;
  z-index: 3;
}
#navbar .progress-container {
  width: 100%;
  position: absolute;
}
#navbar .progress-bar {
  height: 5px;
  background: #d63131;
  width: 0%;
}
#navbar .navbarContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  height: 100%;
  max-width: 2000px;
}
#navbar .navbarContainer a {
  height: 80%;
}
#navbar .navbarContainer .navbarSmallLogo {
  height: 100%;
  margin-left: 1rem;
  cursor: pointer;
}
#navbar .navbarContainer .navbarFulllLogo {
  height: 80%;
  margin: 0.5rem 0;
  cursor: pointer;
}
#navbar .navbarContainer .navbarMenuIcon {
  height: 100%;
}
#navbar .navbarContainer ul {
  display: flex;
  margin: 0 1rem 0 0;
  padding: 0;
}
#navbar .navbarContainer ul a {
  color: #dadada;
  text-decoration: none;
}
#navbar .navbarContainer ul li {
  list-style: none;
  font-size: 0.7rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
#navbar .navbarContainer ul li::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #d63131;
  bottom: 0.5rem;
  left: -100%;
  transition: all 0.3s;
}
#navbar .navbarContainer ul li:hover::before {
  left: 0;
}
#navbar .navbarContainer ul li:active::before {
  bottom: 0.2rem;
}
#navbar .navbarContainer ul li:hover {
  color: #ffea75;
}

.sticky {
  position: fixed;
  top: 0;
}

.navbarOffsetMargin {
  padding-top: 7vw;
}

.infoArrow {
  background-color: #272727;
  min-height: 30vh;
  max-height: -moz-fit-content;
  max-height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
  padding: 1rem 0 0 0;
  max-width: 2000px;
  margin: 0 auto;
}
.infoArrow h2 {
  text-transform: uppercase;
  margin: 2rem 0 1rem 0;
  text-align: center;
}
.infoArrow h2:first-of-type {
  margin-top: 0;
}
.infoArrow h3 {
  color: #d63131;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 600;
  text-align: center;
}
.infoArrow p {
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-indent: 1rem;
}
.infoArrow p:first-of-type {
  text-indent: 2rem;
  margin-top: 0;
}
.infoArrow p:last-of-type {
  margin-bottom: 0;
}
.infoArrow p:first-of-type::first-letter {
  color: #d63131;
  font-weight: 600;
  font-size: 1.5rem;
}
.infoArrow hr {
  margin-bottom: 2rem;
}

.central-text {
  margin: 2rem auto;
  width: 80%;
}
.central-text iframe {
  width: 100%;
  height: 45vw;
  margin: 1rem 0;
}

.left-text {
  display: flex;
  width: 80%;
}

.rhino-logo {
  float: left;
  width: 30%;
  margin-right: 1rem;
  margin-top: 1rem;
}

.author-photo {
  float: left;
  width: 150px;
  margin-right: 1rem;
  margin-top: 1rem;
}

.link-list {
  margin: 1rem 0 1rem 0;
}

.inter-header {
  width: 100%;
}

.downArrow {
  width: 15vw;
  fill: #d63131;
  padding: 0;
  margin: 1rem 0;
  animation: movingArrow 10s linear infinite;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
}

@keyframes movingArrow {
  0% {
    transform: translateY(0);
  }
  3% {
    transform: translateY(1vw);
  }
  6% {
    transform: translateY(0);
  }
  9% {
    transform: translateY(1vw);
  }
  12% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
.swiper-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 2000px;
  margin: 0 auto;
}

.swiper {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}

.swiper-slide {
  width: 100%;
  height: -moz-min-content;
  height: min-content;
}

.swiper-slide img {
  -o-object-fit: scale-down;
     object-fit: scale-down;
  width: 100%;
}

.swiper .swiper-button-prev, .swiper .swiper-button-next {
  color: #d63131;
}

.swiper .swiper-pagination-bullet-active {
  background-color: #d63131;
}

.swiper .goFullScreen {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  cursor: pointer;
}
.swiper .goFullScreen img {
  width: 50px;
  height: 50px;
}

.moveFSI {
  transform: translateY(3rem);
}

.flags-container {
  margin: 2rem 0;
  width: 80%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.flags-container .flag-container {
  background-color: #3D3D3D;
  margin: 0.5rem 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  width: calc(100px + 1rem);
  height: calc(100px + 1rem);
  overflow: hidden;
  padding: 0;
}
.flags-container .flag-container img {
  position: absolute;
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.25rem;
}
.flags-container .flag-container span {
  color: #dadada;
  font-size: 0.7rem;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.6);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 1;
  text-transform: uppercase;
  padding: 3rem 2rem;
  transform: translateX(-100%);
}

.flag-container:hover span {
  transform: translateX(0);
}

#footer {
  width: 100%;
  height: 7vw;
  background: linear-gradient(180deg, rgba(39, 39, 39, 0) 0%, rgba(39, 39, 39, 0.5) 2.5%, #3d3d3d 12%);
  display: flex;
  justify-content: center;
}
#footer .footer-container {
  display: flex;
  width: 80%;
  justify-content: space-between;
}
#footer .footer-container a img {
  height: 70%;
  align-self: baseline;
}
#footer .footer-container div {
  width: 60%;
  height: 80%;
  text-align: center;
  margin: 1rem 0 0 1rem;
  align-items: center;
}

.buyButton {
  position: relative;
  background-color: transparent;
  border-radius: 0.25rem;
  display: inline-block;
  cursor: pointer;
  color: #ffea75;
  font-family: "Montserrat", sans-serif;
  border: 2px solid #ffea75;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  text-decoration: none;
  min-width: -moz-fit-content;
  min-width: fit-content;
  overflow: hidden;
  text-transform: uppercase;
  text-align: center;
}
.buyButton::before {
  content: "";
  width: 105%;
  height: 105%;
  background-color: #ffea75;
  position: absolute;
  top: 0;
  left: 100%;
  -webkit-clip-path: polygon(70% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(70% 0, 100% 0, 100% 100%, 0 100%);
  transition: all 0.3s;
}
.buyButton:hover::before {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  color: #272727;
  left: 0;
  z-index: -1;
}
.buyButton:hover {
  color: #272727;
}
.buyButton:active {
  transform: translateY(2px);
}

.buttons-container {
  width: 60%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.buttons-container button {
  margin: 1rem 1rem;
}

.buttons-container-calendar {
  width: 60%;
  display: flex;
  justify-content: center;
}
.buttons-container-calendar button {
  margin: 1rem 1rem;
}

.video-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform: translateY(1rem);
  height: -moz-fit-content;
  height: fit-content;
  margin-top: -1rem;
  margin-bottom: 1rem;
  max-width: 2000px;
  margin: 0 auto;
}
.video-container .downArrow {
  position: absolute;
}
.video-container .header-video {
  width: 100%;
}

.product-mini-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background-color: #3D3D3D;
  margin: 1rem 0;
  padding: 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  color: #dadada;
  font-size: 0.8rem;
}
.product-mini-card:hover {
  transform: scale(0.99);
}
.product-mini-card:hover .product-description {
  color: #3e58d6;
}
.product-mini-card img {
  width: 7rem;
  border-radius: 0.25rem;
}
.product-mini-card .product-title, .product-mini-card .price-tag {
  margin: 0 0.5rem 0 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffea75;
  max-width: 15rem;
}
.product-mini-card .product-details {
  display: flex;
  flex-direction: column;
}
.product-mini-card .product-details div:nth-of-type(2) {
  margin: 1rem 0 0 0.5rem;
  align-self: flex-start;
}
.product-mini-card .product-details div:nth-of-type(3) {
  margin-top: 1rem;
  font-size: 1.2rem;
}
.product-mini-card .product-description {
  font-size: 0.9rem;
  margin: 0 0.5rem;
  text-align: left;
}
.product-mini-card .product-description::first-letter {
  color: #d63131;
  font-size: 1rem;
  font-weight: 600;
}

.disclaimer {
  display: flex;
  background-color: #ffea75;
  color: #272727;
  border-radius: 0.5rem;
  overflow: hidden;
  width: 80%;
}
.disclaimer div {
  margin: 1rem;
}
.disclaimer div img {
  width: 10rem;
}
.disclaimer div h2 {
  color: #d63131;
}
.disclaimer div span {
  font-weight: 600;
}

.notice {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffea75;
  color: #272727;
  border-radius: 0.5rem;
  overflow: hidden;
  width: 80%;
  padding: 1rem 0;
}
.notice h2 {
  color: #d63131;
}
.notice span {
  font-weight: 600;
  font-size: 1.1rem;
}

.product-detail {
  display: flex;
}
.product-detail img {
  width: 15rem;
  border-radius: 0.25rem;
}
.product-detail .text-detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 1rem;
}
.product-detail .text-detail button {
  margin: 1rem 0;
}

.text-description {
  margin: 1rem 0;
  text-indent: 2rem;
}
.text-description::first-letter {
  color: #d63131;
  font-size: 1.2rem;
  font-weight: 600;
}

.contact-form {
  max-width: 30rem;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
}
.contact-form button {
  margin: 1rem 0;
}
.contact-form input, .contact-form textarea {
  border: none;
  border-radius: 0.25rem;
  margin: 0.5rem 0;
  background-color: #3D3D3D;
  padding: 0.5rem;
  color: #dadada;
  font-size: 1.2rem;
  font-weight: 200;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-bottom: 3px solid #d63131;
  width: 100%;
}
.contact-form .name-style {
  width: 100%;
}
.contact-form .email-style {
  width: 100%;
}
.contact-form .message-style {
  resize: none;
  width: 100%;
}

#calendar-section {
  width: 840px;
  margin: 2rem auto;
}
#calendar-section #header {
  display: flex;
  justify-content: space-between;
}
#calendar-section #header #monthDisplay {
  font-size: 1.4rem;
  font-weight: 600;
  align-self: center;
}
#calendar-section #weekdays {
  display: flex;
  margin: 1rem 0;
}
#calendar-section #weekdays div {
  background-color: #3e58d6;
  width: 110px;
  margin: 0 5px;
  padding: 0.5rem 0;
  display: flex;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 0.25rem;
}
#calendar-section #weekdays div:nth-of-type(6), #calendar-section #weekdays div:nth-of-type(7) {
  background-color: #d63131;
}
#calendar-section #calendar {
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
}
#calendar-section #calendar .day {
  width: 110px;
  height: 110px;
  margin: 5px;
  padding: 0.25rem 0 0 0.5rem;
  font-size: 1.1rem;
}
#calendar-section #calendar .non-active-day {
  background-color: #272727;
  border-radius: 0.25rem;
}
#calendar-section #calendar .current-day {
  background-color: #3e58d6;
  border-radius: 0.25rem;
  font-weight: 600;
}
#calendar-section #calendar .days-ahead {
  background-color: #777777;
  border-radius: 0.25rem;
}
#calendar-section #calendar .days-ahead:hover {
  background-color: #ffea75;
  color: #272727;
  cursor: pointer;
  font-weight: 600;
}
#calendar-section #calendar .days-ahead:hover .previous-event {
  color: #dadada;
}
#calendar-section #calendar .days-ahead:hover .event {
  color: #dadada;
}
#calendar-section #calendar .days-ahead .previous-event {
  background-color: #272727;
  border-radius: 0.25rem 0 0 0.25rem;
  font-size: 0.8rem;
  padding: 0 0 0 1rem;
  margin: 0.25rem 0;
}
#calendar-section #calendar .days-ahead .event {
  background-color: #d63131;
  border-radius: 0.25rem 0 0 0.25rem;
  font-size: 0.8rem;
  padding: 0 0 0 1rem;
  margin: 0.25rem 0;
}

#modalBackground {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(39, 39, 39, 0.7);
  z-index: 10;
}

#newEventModal,
#alertModal {
  display: none;
  top: 25%;
  position: fixed;
  left: calc(50% - 15rem);
  background-color: #3D3D3D;
  width: 30rem;
  height: -moz-max-content;
  height: max-content;
  border-radius: 0.5rem;
  box-shadow: -5px 5px 8px rgba(0, 0, 0, 0.4);
  z-index: 20;
}

#alertModal h3 {
  margin: 2rem auto;
  text-align: center;
  width: 80%;
}

#classTime {
  background: #d63131;
  border: none;
  border-radius: 0.1rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: #dadada;
  margin-left: 1rem;
  width: -moz-min-content;
  width: min-content;
  padding: 0.2rem 1rem;
}
#classTime:focus {
  background: none;
  color: #dadada;
}
#classTime:hover {
  background-color: #777;
}

.alertText {
  color: #ffea75;
}

.bookingTable,
.bookingTableModal {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
.bookingTable h3,
.bookingTableModal h3 {
  margin-bottom: 1rem;
  color: #d63131;
  font-weight: 600;
}
.bookingTable h4,
.bookingTableModal h4 {
  font-weight: 600;
  line-height: 1.4rem;
}

#fetchPrice {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#fetchPrice h2 {
  color: #dadada;
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0;
}

.vr {
  border-left: 2px solid #dadada;
}

#sideNavbar-container {
  position: fixed;
  flex-direction: column;
  z-index: 100;
  top: 30%;
  right: -360px;
  background-color: #3D3D3D;
  padding: 1rem 0;
  box-shadow: -5px 5px #d63131, -10px 10px 8px 5px rgba(0, 0, 0, 0.4);
  border-radius: 0 0 0 10px;
  transition: all 0.4s;
}
#sideNavbar-container ul a {
  list-style: none;
  text-decoration: none;
}
#sideNavbar-container ul a li {
  padding: 0.5rem 2rem 0.5rem 1rem;
  color: #dadada;
}
#sideNavbar-container ul li:hover {
  background-color: #d63131;
  color: #ffea75;
}

.is-open {
  transform: translateX(-350px);
}

.inter-header-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.inter-header-container .inter-header {
  max-width: 800px;
  filter: drop-shadow(5px 5px 8px rgba(0, 0, 0, 0.438));
}

.inter-header {
  max-width: 800px;
  filter: drop-shadow(5px 5px 8px rgba(0, 0, 0, 0.438));
}

.product-detail-checkout {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-detail-checkout img {
  width: 360px;
  margin: 0 0 2rem 0;
}
.product-detail-checkout .text-detail {
  font-size: 1.2rem;
}
.product-detail-checkout .text-detail #product-price {
  color: #ffea75;
  font-weight: 600;
}

.checkout-max-width {
  min-width: 360px;
  max-width: 600px;
}

.fill-notice {
  margin: 1rem 0;
  font-size: 1.2rem;
}
.fill-notice em {
  color: #ffea75;
}

.bookingDayTag {
  margin: 0.5rem auto;
  padding: 0.5rem 0;
  width: 20rem;
  display: flex;
  justify-content: center;
  border-radius: 0.3rem;
  background-color: #3D3D3D;
  font-size: 0.9rem;
  font-weight: 600;
}

.infoArrow .alertText {
  margin: 1rem 0;
}
.infoArrow .paymentLogo {
  width: 200px;
}

#error-main-container {
  margin: 5rem auto;
  background-color: #272727;
  min-width: 400px;
  max-width: 800px;
  width: 80%;
  color: #dadada;
  border-radius: 0.5rem;
  padding-bottom: 1.5rem;
}

#error-central-container {
  margin: 2rem auto;
  padding-top: 2rem;
  width: 80%;
  height: -moz-fit-content;
  height: fit-content;
}
#error-central-container img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 400px;
  filter: drop-shadow(8px 2px 6px rgba(0, 0, 0, 0.6));
}
#error-central-container h2 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #d63131;
  font-weight: 600;
  margin-top: 2rem;
}
#error-central-container .central-text-container {
  margin: 2rem 0;
  text-align: center;
}
#error-central-container .central-text-container p {
  margin: 1rem 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
}

body {
  background-color: #3D3D3D;
  color: #dadada;
  min-width: 360px;
}

a {
  text-decoration: none;
  color: #ffea75;
  transition: all 0.3s;
}

a:hover {
  color: #3e58d6;
  text-decoration: underline;
}

a:visited {
  color: #d63131;
}

@media only screen and (min-width: 1300px) {
  #sideNavbar-container {
    display: none;
  }
  #navbar {
    height: 7vw;
    margin: 0 auto;
  }
  #navbar .navbarContainer {
    max-width: 1800px;
  }
  #navbar .navbarContainer ul li {
    font-size: 1rem;
    padding: 1rem 0.8rem 0.8rem 1rem;
  }
  #navbar .navbarContainer #menu-items {
    display: flex;
    margin: 0 1rem 0 0;
    padding: 0;
  }
  #navbar .navbarContainer .navbarSmallLogo {
    display: none;
  }
  #navbar .navbarContainer .navbarMenuIcon {
    display: none;
  }
  .navbarOffsetMargin {
    padding-top: 7vw;
  }
  #footer {
    height: 7vw;
  }
  #footer .footer-container {
    max-width: 1800px;
  }
  #footer .footer-container a img {
    height: 70%;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  #footer .footer-container div {
    width: 60%;
    text-align: right;
    align-self: center;
    height: calc(50% - 1rem);
  }
}
@media only screen and (max-width: 1300px) {
  #sideNavbar-container {
    display: none;
  }
  #navbar {
    height: 8vw;
    margin: 0 auto;
  }
  #navbar .navbarContainer {
    max-width: 1800px;
  }
  #navbar .navbarContainer ul li {
    font-size: 0.7rem;
    padding: 1rem 0.4rem 0.4rem 1rem;
  }
  #navbar .navbarContainer #menu-items {
    display: flex;
    margin: 0 1rem 0 0;
    padding: 0;
  }
  #navbar .navbarContainer .navbarFulllLogo {
    display: none;
  }
  #navbar .navbarContainer .navbarSmallLogo {
    display: inline-block;
  }
  #navbar .navbarContainer .navbarMenuIcon {
    display: none;
  }
  .navbarOffsetMargin {
    padding-top: 8vw;
  }
  .infoArrow .disclaimer img {
    width: 10rem;
  }
  .notice {
    text-align: center;
  }
  .infoArrow .product-mini-card {
    text-align: center;
  }
  .infoArrow .product-mini-card img {
    width: 10rem;
    margin-bottom: 0;
  }
  .infoArrow .product-mini-card .product-title, .infoArrow .product-mini-card .price-tag {
    margin-bottom: 1rem;
  }
  #footer {
    height: 8vw;
    padding-top: 1rem;
  }
  #footer .footer-container a img {
    height: 80px;
  }
}
@media only screen and (max-width: 770px) {
  html {
    font-size: 16px;
  }
  #calendar-section {
    width: 490px;
  }
  #calendar-section #weekdays div {
    width: 60px;
    font-size: 0.6rem;
  }
  #calendar-section #calendar .day {
    width: 60px;
    height: 60px;
  }
  #calendar-section #calendar .days-ahead .event {
    font-size: 0.6rem;
  }
  #calendar-section #calendar .days-ahead .previous-event {
    font-size: 0.6rem;
  }
  #sideNavbar-container {
    display: flex;
  }
  #navbar {
    height: 14vw;
    margin: 0 auto;
  }
  #navbar .navbarContainer {
    max-width: 1800px;
  }
  #navbar .navbarContainer ul {
    display: none;
  }
  #navbar .navbarContainer .navbarFulllLogo {
    display: none;
  }
  #navbar .navbarContainer .navbarSmallLogo {
    display: inline-block;
  }
  #navbar .navbarContainer .navbarMenuIcon {
    display: flex;
    filter: invert(100%);
    cursor: pointer;
  }
  .navbarOffsetMargin {
    padding-top: 14vw;
  }
  .flags-container {
    display: none;
  }
  #footer {
    height: 14vw;
  }
  #footer .footer-container {
    justify-content: center;
    flex-wrap: wrap;
  }
  #footer .footer-container a img {
    height: 80px;
  }
  #footer .footer-container div {
    padding-bottom: 2rem;
  }
  .infoArrow .disclaimer {
    width: 60%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .infoArrow .disclaimer img {
    width: 100%;
  }
  .notice {
    text-align: center;
  }
  .infoArrow .product-mini-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .infoArrow .product-mini-card img {
    width: 15rem;
    margin-bottom: 1rem;
  }
  .infoArrow .product-mini-card .product-title, .infoArrow .product-mini-card .price-tag {
    margin: 1rem 0;
  }
  .infoArrow .product-detail {
    flex-direction: column;
    align-items: center;
  }
  .infoArrow .product-detail .text-detail {
    align-items: flex-start;
  }
  .infoArrow .product-detail .text-detail button {
    align-self: center;
  }
  #author .central-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #author .central-text img {
    margin-bottom: 2rem;
  }
  .product-detail-checkout img {
    width: 15rem;
  }
}
@media only screen and (min-width: 1921px) {
  html {
    font-size: 30px;
  }
  body {
    margin: 0 auto;
  }
  #calendar-section {
    width: 1120px;
  }
  #calendar-section #weekdays div {
    width: 150px;
  }
  #calendar-section #calendar .day {
    width: 150px;
    height: 150px;
  }
}/*# sourceMappingURL=mainStyle.css.map */