@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p, mark {
  font-size: inherit;
  font-weight: inherit;
}

mark {
  color: inherit;
  background-color: transparent;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
  border-radius: 0;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active,
textarea:focus {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

:root {
  --bs-body-color: $color_text_main;
  --bs-body-bg: $color_bg_main;
  --bs-secondary-color: $color_text_secondary;
  --bs-secondary-bg: $color_bg_secondary;
  --bs-emphasis-color: $color_text_accent;
  --bs-border-color: $color_bg_secondary;
  --bs-nav-link-color: $color_text_main;
  --bs-border-radius: $border-radius;
  --swiper-pagination-color: $color_text_main;
  --swiper-pagination-bullet-inactive-color: #484848 !important;
}

.x-text-primary {
  color: rgb(0, 0, 0);
}

.x-text-secondary {
  color: rgb(255, 255, 255);
}

.x-text-accent {
  color: rgb(0, 102, 255);
}

.x-bg-primary {
  background-color: rgb(255, 255, 255);
}

.x-bg-secondary {
  background-color: rgb(235, 235, 235);
}

.x-bg-tretiary {
  background-color: rgb(166, 166, 166);
}

.x-bg-accent {
  background-color: rgb(0, 102, 255);
}

.x-bg-light {
  background-color: rgb(227, 238, 255);
}

.x-rounded-high {
  border-radius: 15px;
}

.x-rounded-low {
  border-radius: 1rem;
}

h1 {
  font-family: "Raleway", Arial, sans-serif;
  font-style: normal;
  font-size: 2rem;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  font-size: 5rem;
  margin: 0;
}

h2 {
  font-family: "Raleway", Arial, sans-serif;
  font-style: normal;
  font-size: 2rem;
  line-height: 1.2em;
  font-weight: 400;
  color: rgb(255, 255, 255);
  font-size: 2rem;
  margin: 0;
}

h3 {
  font-family: "Raleway", Arial, sans-serif;
  font-style: normal;
  font-size: 2rem;
  line-height: 1.2em;
  font-weight: 600;
  color: rgb(0, 0, 0);
  margin: 0;
}

h4 {
  font-family: "Raleway", Arial, sans-serif;
  font-style: normal;
  font-size: 2rem;
  line-height: 1.2em;
  font-weight: 300;
  color: rgb(0, 0, 0);
  font-size: 1.7rem;
  margin: 0;
}

h5 {
  font-family: "Roboto Slab", Arial, sans-serif;
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.5em;
  color: rgb(0, 102, 255);
  font-weight: 600;
}

p, a, li, td {
  font-family: "Inter", "Times New Roman", serif;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.2em;
  font-weight: 400;
  color: rgb(0, 0, 0);
}

a {
  transition: all 0.5s;
}
a:hover {
  color: rgb(0, 102, 255);
  transition: all 0.5s;
}

button, .pseudo_button {
  font-family: "Raleway", Arial, sans-serif;
  font-style: normal;
  font-size: 2rem;
  line-height: 1.2em;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  margin: 20px;
  color: rgb(255, 255, 255);
  border: none;
  background: rgb(0, 102, 255);
  transition: all 0.5s;
  font-size: 1.2rem;
}
button:hover, .pseudo_button:hover {
  background: rgb(10, 71, 163);
  transition: all 0.5s;
}

.alt-btn, .alt-pseudo_button {
  background: none;
  color: rgb(0, 102, 255);
  box-shadow: inset 0px 0px 0px 1.5px rgb(0, 102, 255);
}
.alt-btn:hover, .alt-pseudo_button:hover {
  background: none;
  color: rgb(10, 71, 163);
  box-shadow: inset 0px 0px 0px 1.5px rgb(10, 71, 163);
}

.text-accent {
  color: rgb(0, 102, 255);
}

.text-light {
  color: rgb(255, 255, 255);
}

.text-gray {
  color: rgb(235, 235, 235);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: rgb(255, 255, 255);
  font-family: "Roboto Slab", Arial, sans-serif;
}

.container {
  padding-bottom: 3rem;
}

.mw-1400 {
  max-width: 1400px;
}

.mw-1100 {
  max-width: 1100px;
}

.mw-1320 {
  max-width: 1320px;
}

.block-title-container {
  padding: 100px 10px 50px 10px;
}

.page-base {
  padding-top: 6rem;
}

header {
  position: relative;
}
header .navbar {
  background-color: rgb(0, 102, 255);
  transition: background-color 0.25s, padding-top 0.25s;
  color: rgb(0, 0, 0);
  padding: 0 32px;
  width: 100vw;
}
@media screen and (max-width: 768px) {
  header .navbar {
    padding: 0 16px;
  }
  header .navbar .navbar-brand .header-logo {
    height: 35px;
    width: auto;
  }
}
header .navbar .show {
  color: rgb(0, 102, 255) !important;
}
header .navbar .navbar-toggler {
  border: none !important;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  z-index: 15;
}
header .navbar .navbar-toggler:focus {
  box-shadow: none;
}
header .navbar .navbar-toggler:hover {
  background: none;
}
header .navbar .navbar-toggler .navbar-toggler-icon {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
@media screen and (max-width: 768px) {
  header .navbar .navbar-toggler {
    margin: 0;
    padding-left: 0.25rem;
  }
}
header .navbar .navbar-collapse {
  justify-content: space-between;
  margin: auto;
}
header .navbar .navbar-collapse .navbar-brand {
  margin: 0 2rem;
  padding: 0;
  display: flex;
  align-items: center;
}
header .navbar .navbar-collapse .navbar-brand .header-logo {
  margin: 1rem 1rem 1rem 0;
  max-height: 25px;
  transition: max-height 0.4s;
  width: auto;
}
header .navbar .navbar-collapse .navbar-brand .header-text {
  display: flex;
  align-items: center;
  height: auto;
  color: rgb(255, 255, 255);
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  header .navbar .navbar-collapse .navbar-brand {
    display: none;
  }
}
header .navbar .navbar-collapse .navbar-nav {
  width: 50%;
  margin: 0 2rem 0 auto;
}
@media screen and (max-width: 768px) {
  header .navbar .navbar-collapse .navbar-nav {
    margin: 2rem;
  }
}
header .navbar .navbar-collapse .navbar-nav .nav-item {
  position: relative;
  text-wrap: nowrap;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  font-family: "Raleway", Arial, sans-serif;
  font-style: normal;
  font-size: 2rem;
  line-height: 1.2em;
  font-weight: 300;
  color: rgb(255, 255, 255);
  font-size: 1rem;
  position: relative;
  z-index: 250;
  margin: 0;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover + .nav-link-underline {
  width: 100%;
  transition: width 0.5s;
}
@media screen and (max-width: 768px) {
  header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
  }
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link + .nav-link-underline {
  background-color: rgb(255, 255, 255);
  height: 1px;
  width: 0;
  transition: width 0.5s;
}
@media screen and (max-width: 768px) {
  header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link + .nav-link-underline {
    display: none;
  }
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.pseudo_button:hover {
  color: rgb(255, 255, 255);
}
header .navbar .navbar-collapse .navbar-nav .nav-link-group .dropdown {
  position: relative;
}
header .navbar .navbar-collapse .navbar-nav .nav-link-group .dropdown .nav-link {
  display: flex;
}
header .navbar .navbar-collapse .navbar-nav .nav-link-group .dropdown button.nav-link:after {
  content: "▼";
  font-size: 0.8em;
  margin-left: 0.5rem;
}
header .navbar .navbar-collapse .navbar-nav .nav-link-group .dropdown button.nav-link:hover {
  opacity: 60%;
  background: none;
}
header .navbar .navbar-collapse .navbar-nav .nav-link-group .dropdown .dropdown-content {
  position: absolute;
  top: 100%;
  background-color: rgb(255, 255, 255);
  display: none;
  border-radius: 15px !important;
  padding-left: var(--bs-navbar-nav-link-padding-x) !important;
  padding-right: var(--bs-navbar-nav-link-padding-x) !important;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border: none;
  flex-direction: column;
  gap: 0.5rem;
}
header .navbar .navbar-collapse .navbar-nav .nav-link-group .dropdown .dropdown-content:after {
  content: none;
}
header .navbar .navbar-collapse .navbar-nav .nav-link-group .dropdown .dropdown-content .language-select {
  cursor: pointer;
}
header .navbar .navbar-collapse .navbar-nav .nav-link-group .dropdown .show {
  display: flex;
}
@media screen and (max-width: 768px) {
  header .navbar .navbar-collapse .navbar-nav {
    width: auto;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-item {
    align-items: center;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.pseudo_button {
    margin-left: 0;
    margin-right: 0;
    width: auto;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-link-group {
    margin-top: 0.5rem;
  }
}
header .navbar .brand-mobile-wrapper {
  display: none;
}
@media screen and (max-width: 768px) {
  header .navbar .brand-mobile-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: start;
    position: absolute;
    width: 95%;
    height: 100%;
    padding-top: 0.15rem;
    padding-right: 1rem;
    transition: all 0.25s;
  }
  header .navbar .brand-mobile-wrapper .brand-mobile {
    display: flex;
    align-items: center;
    height: 40px;
    column-gap: 5px;
    margin: 0 auto;
  }
  header .navbar .brand-mobile-wrapper .brand-mobile .header-logo {
    height: 100%;
  }
  header .navbar .brand-mobile-wrapper .brand-mobile .header-text {
    font-size: 1.4rem;
  }
}
header .navbar .navbar-collapse.show .choose_button {
  margin: 10px 0;
}
header .navbar .cart-button {
  flex-shrink: 0;
  background: none;
  margin: 0.5rem 3rem 0.5rem 0;
  border-radius: 1rem;
  padding: 0;
  animation: 1.5s ease 0s infinite beat1;
  will-change: transform;
}
header .navbar .cart-button:hover {
  background: none;
}
header .navbar .cart-button:hover .cart-link, header .navbar .cart-button:hover .cart-text p {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.5s;
}
@media screen and (max-width: 768px) {
  header .navbar .cart-button {
    margin-right: 1.5rem;
  }
}
@keyframes beat1 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
header .navbar .cart-text p {
  font-family: "Raleway", Arial, sans-serif;
  font-style: normal;
  font-size: 2rem;
  line-height: 1.2em;
  font-weight: 300;
  color: rgb(255, 255, 255);
  font-size: 1rem;
  margin: auto 0.5rem;
  transition: color 0.5s;
}
@media screen and (max-width: 990px) {
  header .navbar .cart-text p {
    display: none;
  }
}
header .navbar .cart-link {
  background: none;
  color: rgb(255, 255, 255);
  position: relative;
  top: -4px;
  height: 29px;
  width: 45px;
  z-index: 6;
  font-size: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.5s;
}
header .navbar .cart-link .ship-wrapper {
  height: 100%;
  position: absolute;
  display: block;
  z-index: 4;
  transform: scale(0.35);
}
header .navbar .cart-link .ship {
  position: relative;
  width: 100%;
  bottom: 5px;
  right: 6px;
  display: block;
  z-index: 6;
  transform-origin: center center;
}
header .navbar .cart-link .ship i {
  position: relative;
  left: 0;
  bottom: 0;
  display: block;
  z-index: 1;
}
header .navbar .cart-mobile-container {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
  z-index: 200;
}
header .navbar .cart-mobile-container .cart-mobile {
  height: 78%;
  max-height: 34px;
  overflow: hidden;
  margin-top: 5px;
  transition: all 0.5s;
}
header .navbar .cart-mobile-container .cart-mobile .cart-link .ship-wrapper .ship {
  top: 1px;
  right: 0;
}
header .navbar .cart-desktop {
  display: inherit;
}
@media screen and (max-width: 768px) {
  header .navbar .cart-mobile-container {
    display: inherit;
  }
  header .navbar .cart-desktop {
    display: none;
  }
}
header .no-background {
  background: none;
  border: none;
  padding-top: 30px;
  transition: background-color 0.25s, padding-top 0.25s;
}
header .no-background .navbar-collapse .navbar-brand .header-logo {
  max-height: 45px;
  transition: max-height 0.4s;
}
@media screen and (max-width: 768px) {
  header .no-background {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  header .no-background .cart-mobile-container .cart-mobile {
    height: 60%;
    max-height: 44px;
    margin-top: 15px;
    transition: all 0.5s;
  }
  header .no-background .brand-mobile-wrapper {
    padding-top: 1.2rem;
    transition: all 0.25s;
  }
}
header .navbar-show {
  background-color: rgb(0, 102, 255);
}
header .navbar-show .nav-link-group {
  gap: 1rem;
}
header .navbar-show .navbar-toggler .navbar-toggler-icon {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.animation-beat {
  animation: beat 5s infinite alternate;
  transform-origin: center;
}

@keyframes beat {
  0% {
    transform: scale(1);
  }
  4% {
    transform: scale(1.2);
  }
  8% {
    transform: scale(1);
  }
  12% {
    transform: scale(1.2);
  }
  16% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.welcome-hero .page-titles {
  padding: 10rem 0 10rem 0;
}
.welcome-hero .page-titles .product-cubes .single-cube {
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 1rem;
  color: rgb(0, 102, 255);
}
.welcome-hero .page-titles .product-cubes .single-cube:hover {
  color: rgb(255, 255, 255);
  background-color: rgb(0, 102, 255);
  box-shadow: 1px 1px 5px black !important;
}
.welcome-hero .page-titles .product-cubes .single-cube .product-icon {
  font-size: 1.6rem;
}

.welcome-hero-simple {
  height: 137px;
  justify-content: end;
}
@media screen and (max-width: 768px) {
  .welcome-hero-simple {
    height: 10vh;
  }
}
.welcome-hero-simple .container {
  padding: 4rem;
}
.welcome-hero-simple .container .hero-title {
  justify-content: end;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .welcome-hero-simple .container .hero-title {
    padding: 3rem 0 0 0;
  }
}

section.separator {
  height: 1px;
  background: rgb(0, 102, 255);
}

.cols-section {
  padding-bottom: 3rem;
}
.cols-section .single-card .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.simple-section {
  display: flex;
  flex-direction: column;
}
.simple-section .simple-section-text {
  padding: 4rem 2rem;
}

.contrast-section .container {
  padding-top: 4rem;
}
@media screen and (max-width: 768px) {
  .contrast-section .container .single-sub-block {
    padding: 0 3rem;
  }
}

.product-cards-container {
  padding: 4rem 0 2rem 0;
}

.single-card {
  display: flex;
}
@media screen and (max-width: 1200px) {
  .single-card {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.single-card .card-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(12, 12, 13, 0.1), 0 4px 4px rgba(12, 12, 13, 0.1);
}
.single-card .card-wrapper .card-pic {
  display: block;
  font-family: "Inter", "Times New Roman", serif;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.2em;
  font-weight: 200;
  width: 100%;
  max-width: 100vw;
  aspect-ratio: 1.1;
  object-fit: cover;
  border-radius: 15px;
  overflow: hidden;
}
.single-card .card-wrapper .card-pic img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.single-card .card-wrapper .card-pic img:hover {
  transform: scale(110%);
  transform-origin: center;
  transition: all 0.5s;
}
.single-card .card-wrapper .card-text {
  width: 100%;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 1rem;
}
.single-card .card-wrapper .card-text .card-label .card-title-link .card-title {
  font-family: "Raleway", Arial, sans-serif;
  font-style: normal;
  font-size: 2rem;
  line-height: 1.2em;
  font-weight: 700;
  width: 100%;
  padding: 1rem;
  transition: all 0.5s;
  color: rgb(0, 102, 255);
}
.single-card .card-wrapper .card-text .card-label .card-title-link:hover .card-title {
  color: rgb(0, 0, 0);
}
.single-card .card-wrapper .card-text .card-label .features-block {
  padding: 0 1rem;
}
.single-card .card-wrapper .card-text .card-label .features-block .feature-wrapper {
  font-family: "Inter", "Times New Roman", serif;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.2em;
  font-weight: 700;
  display: flex;
  align-items: center;
  column-gap: 0.8rem;
  margin-bottom: 0.5rem;
}
.single-card .card-wrapper .card-text .card-label .features-block .feature-wrapper .feature-icon {
  width: 1rem;
}
.single-card .card-wrapper .card-text .card-label .features-block .feature-wrapper .card-feature {
  font-family: "Inter", "Times New Roman", serif;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.2em;
  font-weight: 700;
  margin: 0;
}
.single-card .card-wrapper .card-text .card-label .description-block .card-description {
  font-family: "Inter", "Times New Roman", serif;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.2em;
  font-weight: 300;
  text-align: start;
  margin: 1rem 1rem 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.single-card .card-wrapper .card-text .card-price-block .card-price-wrapper {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 1380px) {
  .single-card .card-wrapper .card-text .card-price-block .card-price-wrapper {
    flex-direction: column;
  }
}
.single-card .card-wrapper .card-text .card-price-block .card-price-wrapper.vertical-override {
  flex-direction: column;
}
.single-card .card-wrapper .card-text .card-price-block .card-price-wrapper.vertical-override .price-option {
  padding: 0 !important;
  border: none !important;
}
.single-card .card-wrapper .card-text .card-price-block .price-option {
  display: flex;
  align-items: center;
  height: 4.2rem;
  width: 100%;
}
@media screen and (min-width: 1381px) {
  .single-card .card-wrapper .card-text .card-price-block .price-option {
    padding: 0 1rem;
    border-right: 2px solid rgb(0, 0, 0);
  }
  .single-card .card-wrapper .card-text .card-price-block .price-option:nth-child(1) {
    padding-left: 0;
  }
  .single-card .card-wrapper .card-text .card-price-block .price-option:nth-last-child(1) {
    padding-right: 0;
    border-right: none;
  }
}
.single-card .card-wrapper .card-text .card-price-block .price-option .price-icon {
  color: rgb(0, 0, 0);
  font-size: 2.3rem;
  padding: 0 1rem;
}
.single-card .card-wrapper .card-text .card-price-block .price-option .price-date {
  font-family: "Raleway", Arial, sans-serif;
  font-style: normal;
  font-size: 2rem;
  line-height: 1.2em;
  font-weight: 500;
  color: rgb(0, 0, 0);
  margin: 0;
  font-size: 1.1rem;
}
.single-card .card-wrapper .card-text .card-price-block .price-option .price {
  font-family: "Inter", "Times New Roman", serif;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.2em;
  font-weight: 700;
  color: rgb(0, 0, 0);
  font-size: 1.5rem;
  line-height: 1.2rem;
  margin: 0;
  width: 100%;
  text-align: right;
  padding: 0 1rem;
}
.single-card .card-wrapper .card-text .card-price-block .price-option .price .price-sub {
  font-family: "Raleway", Arial, sans-serif;
  font-style: normal;
  font-size: 2rem;
  line-height: 1.2em;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1rem;
  color: rgb(0, 0, 0);
}
.single-card .card-wrapper .card-text .card-price-block .card-button-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .single-card .card-wrapper .card-text .card-price-block .card-button-block {
    flex-direction: column;
    padding: 0 1rem;
  }
}
.single-card .card-wrapper .card-text .card-price-block .card-button-block .card-btn {
  margin: 1rem;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .single-card .card-wrapper .card-text .card-price-block .card-button-block .card-btn {
    margin: 0.5rem 1rem;
    width: 100%;
  }
}

.basic-section {
  margin: 6rem auto 0 auto;
}
.basic-section .section-title {
  text-align: center;
  font-family: "Raleway", Arial, sans-serif;
  font-style: normal;
  font-size: 2rem;
  line-height: 1.2em;
  font-weight: 600;
  font-size: 2rem;
}
.basic-section .section-subtitle {
  text-align: center;
  font-family: "Raleway", Arial, sans-serif;
  font-style: normal;
  font-size: 2rem;
  line-height: 1.2em;
  font-weight: 300;
  font-size: 1.5rem;
}

.section-card .section-card-wrapper .section-card-img {
  aspect-ratio: 1.5;
}
.section-card .section-card-wrapper .section-card-title {
  font-family: "Inter", "Times New Roman", serif;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.2em;
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0;
  text-align: center;
}
.section-card .section-card-wrapper .section-card-text {
  font-family: "Inter", "Times New Roman", serif;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.2em;
  font-weight: 300;
  margin: 0;
  text-align: center;
}

.map-section .map-wrapper .sticky-box {
  height: auto;
  padding-top: 57px;
}
@media screen and (max-width: 768px) {
  .map-section .map-wrapper .sticky-box {
    height: 120vh;
  }
}
@media screen and (max-width: 500px) {
  .map-section .map-wrapper .sticky-box {
    height: 100vh;
  }
}
.map-section .map-wrapper .sticky-box .map-box {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .map-section .map-wrapper .sticky-box .map-box {
    overflow: visible;
  }
}
.map-section .map-wrapper .sticky-box .map-box .map-overlay .map-img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .map-section .map-wrapper .sticky-box .map-box .map-overlay .map-img {
    border-radius: 15px 15px 0 0;
    overflow: hidden;
  }
}
@media screen and (max-width: 540px) {
  .map-section .map-wrapper .sticky-box .map-box .map-overlay .route .markers-wrapper {
    transform: translateY(-4%);
  }
}
@media screen and (max-width: 480px) {
  .map-section .map-wrapper .sticky-box .map-box .map-overlay .route .markers-wrapper {
    transform: translateY(-7%);
  }
}
.map-section .map-wrapper .sticky-box .map-box .map-overlay .route .markers-wrapper .marker {
  cursor: pointer;
  transition: transform 0.5s;
  height: 4.5%;
  width: 1.5%;
}
.map-section .map-wrapper .sticky-box .map-box .map-overlay .route .markers-wrapper .marker svg {
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .map-section .map-wrapper .sticky-box .map-box .map-overlay .route .markers-wrapper .marker {
    height: 6%;
    width: 2%;
  }
}
@media screen and (max-width: 540px) {
  .map-section .map-wrapper .sticky-box .map-box .map-overlay .route .markers-wrapper .marker {
    height: 9%;
    width: 3%;
  }
}
@media screen and (max-width: 420px) {
  .map-section .map-wrapper .sticky-box .map-box .map-overlay .route .markers-wrapper .marker {
    height: 12%;
    width: 4%;
  }
}
.map-section .map-wrapper .sticky-box .map-box .map-overlay .route .markers-wrapper .marker .marker-dot {
  transition: all 0.5s;
}
.map-section .map-wrapper .sticky-box .map-box .map-overlay .route .markers-wrapper .marker:hover .marker-dot {
  fill: rgb(0, 102, 255);
  transition: fill 0.5s;
}
.map-section .map-wrapper .sticky-box .map-box .map-overlay .route .markers-wrapper .marker-active {
  transform: scale(2);
  transition: transform 0.5s;
}
.map-section .map-wrapper .sticky-box .map-box .map-overlay .route .markers-wrapper .marker-active svg {
  animation: floating-pin 2s infinite;
}
@keyframes floating-pin {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.map-section .map-wrapper .sticky-box .map-box .map-overlay .route .markers-wrapper .marker-active .marker-dot {
  transition: all 0.5s;
  fill: rgb(0, 102, 255);
}
.map-section .map-wrapper .sticky-box .map-box .map-overlay .route .markers-wrapper #marker1 {
  top: 27%;
  left: 86%;
}
.map-section .map-wrapper .sticky-box .map-box .map-overlay .route .markers-wrapper #marker2 {
  top: 20%;
  left: 64%;
}
.map-section .map-wrapper .sticky-box .map-box .map-overlay .route .markers-wrapper #marker3 {
  top: 37%;
  left: 28%;
}
.map-section .map-wrapper .sticky-box .map-box .map-overlay .route .markers-wrapper #marker4 {
  top: 55%;
  left: 14%;
}
.map-section .map-wrapper .sticky-box .map-box .map-overlay .route .markers-wrapper #marker5 {
  top: 64%;
  left: 22%;
}
.map-section .map-wrapper .sticky-box .map-box .map-overlay .route .markers-wrapper #marker6 {
  top: 36%;
  left: 37%;
}
.map-section .map-wrapper .sticky-box .map-box .map-overlay .route #route-path {
  top: 22%;
  left: 11%;
  height: 52%;
  width: 85%;
}
.map-section .map-wrapper .sticky-box .map-box .map-overlay .route #route-path svg {
  height: 100%;
  width: 100%;
}
.map-section .map-wrapper .sticky-box .map-box .map-overlay .route #route-path svg path {
  animation: dash-move 4s linear infinite;
}
@keyframes dash-move {
  to {
    stroke-dashoffset: -50;
  }
}
.map-section .map-wrapper .sticky-box .map-box .legend {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 20;
  width: 40%;
  max-height: 60%;
  height: auto;
  margin: 3rem;
  border-radius: 15px;
  background-color: rgb(255, 255, 255);
}
@media screen and (max-width: 1200px) {
  .map-section .map-wrapper .sticky-box .map-box .legend {
    width: 50%;
    max-height: 50%;
  }
}
@media screen and (max-width: 1024px) {
  .map-section .map-wrapper .sticky-box .map-box .legend {
    max-height: 45%;
  }
}
@media screen and (max-width: 768px) {
  .map-section .map-wrapper .sticky-box .map-box .legend {
    position: relative;
    margin: 0;
    padding: 1rem 0;
    width: 100%;
    max-height: none;
    height: auto;
    border-radius: 0;
    background-color: rgb(227, 238, 255);
  }
}
.map-section .map-wrapper .sticky-box .map-box .legend .legend-wrapper {
  flex: 1;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 1rem;
  mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 2%, rgb(255, 255, 255) 8%, rgb(255, 255, 255) 92%, rgba(255, 255, 255, 0) 98%);
}
@media screen and (max-width: 768px) {
  .map-section .map-wrapper .sticky-box .map-box .legend .legend-wrapper {
    height: 100%;
    mask-image: none;
  }
}
.map-section .map-wrapper .sticky-box .map-box .legend .legend-wrapper .legend-list .legend-item .legend-title {
  font-family: "Raleway", Arial, sans-serif;
  font-style: normal;
  font-size: 2rem;
  line-height: 1.2em;
  font-weight: 600;
  font-size: 1rem;
}
@media screen and (max-width: 1200px) {
  .map-section .map-wrapper .sticky-box .map-box .legend .legend-wrapper .legend-list .legend-item .legend-title {
    font-size: 14px;
  }
}
.map-section .map-wrapper .sticky-box .map-box .legend .legend-wrapper .legend-list .legend-item .legend-text {
  margin-bottom: 0.5rem;
  font-family: "Inter", "Times New Roman", serif;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.2em;
  font-weight: 300;
  font-size: 1rem;
  transition: color 0.5s, transform 0.5s;
}
@media screen and (max-width: 1200px) {
  .map-section .map-wrapper .sticky-box .map-box .legend .legend-wrapper .legend-list .legend-item .legend-text {
    font-size: 14px;
  }
}
.map-section .map-wrapper .sticky-box .map-box .legend .legend-wrapper .legend-list .legend-item-active .legend-title, .map-section .map-wrapper .sticky-box .map-box .legend .legend-wrapper .legend-list .legend-item-active .legend-text {
  color: rgb(0, 102, 255);
  transform: translateX(10px);
  transition: color 0.5s, transform 0.5s;
}
.map-section .map-wrapper .google-map.gmap-mode-on {
  position: absolute;
  height: calc(100vh - 57px);
}
@media screen and (max-width: 768px) {
  .map-section .map-wrapper .google-map.gmap-mode-on {
    height: calc(100vh - 92px);
    top: 46px;
  }
}
.map-section .map-wrapper .google-map.gmap-mode-on .gmap-overlay {
  display: none;
}
.map-section .map-wrapper .google-map.gmap-mode-on .gmap-iframe {
  filter: none;
}
.map-section .map-wrapper .google-map.gmap-mode-on .close-map-button {
  position: absolute;
  top: 0;
  right: 120px;
  margin: 15px;
  display: block;
}
@media screen and (max-width: 768px) {
  .map-section .map-wrapper .google-map.gmap-mode-on .close-map-button {
    top: 65px;
    right: 10px;
  }
}
.map-section .map-wrapper .scroll-track .step {
  width: 100%;
  height: 15vh;
  position: relative;
  pointer-events: none;
}
.map-section .map-wrapper .scroll-track .step:first-child {
  margin-top: -50vh;
}
.map-section .map-wrapper .scroll-track .half-step {
  width: 100%;
  height: 40vh;
  position: relative;
  pointer-events: none;
}
.map-section .google-map {
  display: flex;
  position: relative;
  height: 100px;
  z-index: 50;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .map-section .google-map {
    border-radius: 0 0 15px 15px;
  }
}
.map-section .google-map .gmap-iframe {
  filter: blur(2px);
}
.map-section .google-map .overlay-open {
  display: flex;
}
.map-section .google-map .show-map-button {
  font-family: "Inter", "Times New Roman", serif;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.2em;
  font-weight: 500;
  background-color: rgb(255, 255, 255);
  color: rgb(0, 102, 255);
  border: 2px solid rgb(255, 255, 255);
}
.map-section .google-map .show-map-button:hover {
  background-color: rgb(227, 238, 255);
  border: 2px solid rgb(227, 238, 255);
}
.map-section .google-map .close-map-button {
  z-index: 100;
  display: none;
}

.accordion .accordion-item {
  border: 1px solid rgb(0, 102, 255);
  border-radius: 15px;
}
.accordion .accordion-item .accordion-title {
  font-family: "Raleway", Arial, sans-serif;
  font-style: normal;
  font-size: 2rem;
  line-height: 1.2em;
  font-weight: 600;
  font-size: 1.2rem;
  background: none;
  color: rgb(0, 0, 0);
}
.accordion .accordion-item .accordion-title .triangle-marker {
  color: rgb(0, 102, 255);
  transition: transform 0.3s ease;
}
.accordion .accordion-item .accordion-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion .accordion-item.active .accordion-title .triangle-marker {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.accordion .accordion-item.active .accordion-text {
  max-height: 1000px;
  transition: max-height 0.5s ease;
}

.simple-footer {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 1rem;
}
.simple-footer .footer-brand {
  height: 3rem;
}
.simple-footer .footer-brand .footer-brand-logo {
  height: 100%;
}
.simple-footer .footer-brand .footer-brand-text {
  font-family: "Raleway", Arial, sans-serif;
  font-style: normal;
  font-size: 2rem;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgb(0, 102, 255);
  font-size: 2rem;
  margin: 0;
}
.simple-footer li, .simple-footer a {
  font-family: "Inter", "Times New Roman", serif;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.2em;
  font-weight: 300;
  padding-bottom: 0.2em;
}
@media screen and (max-width: 768px) {
  .simple-footer li, .simple-footer a {
    padding-bottom: 0.7rem;
  }
}
.simple-footer h5 {
  color: rgb(0, 102, 255);
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .simple-footer h5 {
    margin-bottom: 1rem;
  }
}
.simple-footer .single-contact {
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 0.8em;
  transition: all 0.5s;
}
.simple-footer .single-contact .contact-icon {
  width: 1.1em;
}
@media screen and (max-width: 768px) {
  .simple-footer .single-contact .contact-text {
    margin: 0;
  }
}
.simple-footer .single-contact p {
  font-family: "Inter", "Times New Roman", serif;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.2em;
  font-weight: 300;
  color: rgb(0, 0, 0);
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .simple-footer .single-contact p {
    margin-bottom: 1rem;
  }
}
.simple-footer .single-contact:hover p {
  color: rgb(0, 102, 255);
  transition: all 0.5s;
}
.simple-footer .footer-separator {
  border-bottom: 1px solid rgb(0, 102, 255);
  margin: 2rem 0;
}
.simple-footer .text-copyright {
  margin-bottom: 0 !important;
  font-size: 0.85em;
}
.simple-footer .terms-link {
  text-decoration: underline;
  font-size: 0.85em;
}
.simple-footer .payment-icons {
  height: 2.4rem;
}

.captcha-container fieldset legend {
  display: none;
}
.captcha-container fieldset .form-group label {
  display: none;
}

.gallery-section {
  --swiper-pagination-bottom: 2rem;
  --swiper-pagination-color: rgb(0, 84, 148);
  --swiper-pagination-bullet-inactive-color: #ffffff;
  --swiper-pagination-bullet-inactive-opacity: 0.5;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  display: none;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 5000;
}
.gallery-section .swiper {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 600;
  background: rgba(0, 0, 0, 0.85);
}
.gallery-section .swiper .swiper-wrapper .swiper-slide {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery-section .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  max-width: 1920px;
  height: auto;
  object-fit: contain;
  padding: 1rem;
}
.gallery-section .swiper .swiper-button-next, .gallery-section .swiper .swiper-button-prev {
  text-shadow: 0 0 16px black;
  color: rgb(0, 102, 255);
  margin: 0 20px 0 20px;
}
.gallery-section .swiper-collapse-button {
  color: rgb(0, 102, 255);
  fill: rgb(0, 102, 255);
  background: none;
  font-size: 1.5rem;
  position: absolute;
  z-index: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 1rem;
  right: 26px;
  height: 3rem;
  width: 3rem;
  margin: 0;
  padding: 0;
}

.gallery-visible {
  display: block;
}

.gallery-thumb-section .photo-grid {
  display: grid;
  gap: 1rem;
  max-width: 100%;
  max-height: 70vh;
  overflow: hidden;
  border-radius: 0;
  grid-template: "aa" 1fr/1fr;
}
@media screen and (max-width: 960px) {
  .gallery-thumb-section .photo-grid {
    gap: 1px;
    border-radius: 15px;
  }
}
.gallery-thumb-section .photo-grid .photo-grid-item {
  position: relative;
  cursor: pointer;
}
.gallery-thumb-section .photo-grid .photo-grid-item img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 960px) {
  .gallery-thumb-section .photo-grid .photo-grid-item img {
    border-radius: 0;
  }
}
.gallery-thumb-section .photo-grid .photo-grid-item .more-items {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}
.gallery-thumb-section .photo-grid .photo-grid-item .more-items svg {
  height: 40px;
  fill: rgb(255, 255, 255);
}
.gallery-thumb-section .photo-grid .photo-grid-item:nth-child(1) {
  grid-area: aa;
}
.gallery-thumb-section .photo-grid .photo-grid-item:nth-child(2) {
  grid-area: bb;
}
.gallery-thumb-section .photo-grid .photo-grid-item:nth-child(3) {
  grid-area: cc;
}
.gallery-thumb-section .photo-grid .photo-grid-item:nth-child(4) {
  grid-area: dd;
}
.gallery-thumb-section .photo-grid .photo-grid-item:nth-child(5) {
  grid-area: ee;
}
.gallery-thumb-section .photo-grid .photo-grid-item:nth-child(6) {
  grid-area: ff;
}
.gallery-thumb-section .photo-grid .photo-grid-item:nth-child(7) {
  grid-area: gg;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(2)) {
  grid-template: "aa bb" 1fr/2fr 1fr;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(2)) .photo-grid-item:nth-child(n) {
  display: block;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(2)) .photo-grid-item:nth-child(n) img {
  filter: none;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(2)) .photo-grid-item:nth-child(n) .more-items {
  display: none;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(2)) .photo-grid-item:nth-child(n+3) {
  display: none;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(3)) {
  grid-template: "aa bb" 1fr "aa cc" 1fr/2fr 1fr;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(3)) .photo-grid-item:nth-child(n) {
  display: block;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(3)) .photo-grid-item:nth-child(n) img {
  filter: none;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(3)) .photo-grid-item:nth-child(n) .more-items {
  display: none;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(3)) .photo-grid-item:nth-child(n+4) {
  display: none;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(4)) {
  grid-template: "aa bb bb" 1fr "aa bb bb" 1fr "aa cc dd" 1fr/3fr 1fr 1fr;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(4)) .photo-grid-item:nth-child(n) {
  display: block;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(4)) .photo-grid-item:nth-child(n) img {
  filter: none;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(4)) .photo-grid-item:nth-child(n) .more-items {
  display: none;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(4)) .photo-grid-item:nth-child(n+5) {
  display: none;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(4)) .photo-grid-item:nth-child(4) img {
  filter: brightness(0.5) blur(1.2px);
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(4)) .photo-grid-item:nth-child(4) .more-items {
  display: flex;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(7)) {
  grid-template: "aa bb bb ee" 1fr "aa bb bb ff" 1fr "aa cc dd gg" 1fr/2fr 1fr 1fr 1fr;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(7)) .photo-grid-item:nth-child(n) {
  display: block;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(7)) .photo-grid-item:nth-child(n) img {
  filter: none;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(7)) .photo-grid-item:nth-child(n) .more-items {
  display: none;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(7)) .photo-grid-item:nth-child(n+8) {
  display: none;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(7)) .photo-grid-item:nth-child(7) img {
  filter: brightness(0.5) blur(1.2px);
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(7)) .photo-grid-item:nth-child(7) .more-items {
  display: flex;
}

#product-section h1 {
  text-align: start;
  color: rgb(0, 102, 255);
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.product-section .about-product {
  overflow: hidden;
}
.respond-info {
  max-height: 0;
  overflow: hidden;
  border-radius: 15px;
  transition: max-height 0.25s;
}
.respond-info p {
  padding: 0.5rem;
  margin: 0;
  background: rgb(227, 238, 255);
  color: var(--bs-danger);
}
.respond-info.show {
  max-height: 5rem;
  transition: max-height 0.25s;
}

.success-info p {
  background: rgb(227, 238, 255);
  color: var(--bs-success);
}

.booking-form-container {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9900;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: flex-start;
}
.booking-form-container.show {
  display: flex;
}
.booking-form-container .booking-form {
  margin: auto 0;
  height: auto;
  width: 80%;
  max-width: 1200px;
  border-radius: 15px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .booking-form-container .booking-form {
    width: 100%;
    margin: 0;
    padding: 4rem 0;
  }
}
.booking-form-container .booking-form .booking-iframe {
  flex: 1;
  width: 100%;
  height: auto;
  border: none;
  margin: 0;
}
.booking-form-container .booking-close-button {
  background: none;
  font-size: 1.5rem;
  position: absolute;
  top: 0;
  right: 0;
}
.booking-form-container .booking-close-button:hover {
  color: rgb(0, 102, 255);
}

.loader-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 150;
  background: rgba(255, 255, 255, 0.5);
}
.loader-wrapper .loader {
  --uib-size: 47px;
  --uib-color: #143A52;
  --uib-speed: 1s;
  --uib-dot-size: calc(var(--uib-size) * 0.18);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: calc(var(--uib-size) * 0.5);
  width: var(--uib-size);
}
.loader-wrapper .loader .dot {
  flex-shrink: 0;
  width: calc(var(--uib-size) * 0.17);
  height: calc(var(--uib-size) * 0.17);
  border-radius: 50%;
  background-color: var(--uib-color);
  transition: background-color 0.3s ease;
}
.loader-wrapper .loader .dot:nth-child(1) {
  animation: jump var(--uib-speed) ease-in-out calc(var(--uib-speed) * -0.45) infinite;
}
.loader-wrapper .loader .dot:nth-child(2) {
  animation: jump var(--uib-speed) ease-in-out calc(var(--uib-speed) * -0.3) infinite;
}
.loader-wrapper .loader .dot:nth-child(3) {
  animation: jump var(--uib-speed) ease-in-out calc(var(--uib-speed) * -0.15) infinite;
}
.loader-wrapper .loader .dot:nth-child(4) {
  animation: jump var(--uib-speed) ease-in-out infinite;
}
@keyframes jump {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-200%);
  }
}

.loader-active {
  display: flex;
}

.cc-cookies {
  background: rgba(0, 0, 0, 0.5) !important;
  font-family: "Noto Serif", "Times New Roman", serif !important;
  font-style: normal !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  color: rgb(255, 255, 255) !important;
  padding: 0.4rem !important;
  line-height: 1.5rem !important;
  z-index: 1000000000 !important;
}
.cc-cookies .inner-cookie-left a {
  color: rgb(0, 102, 255) !important;
  text-decoration: underline !important;
}
.cc-cookies .inner-cookie-left a:hover {
  color: rgb(255, 255, 255) !important;
}
.cc-cookies .inner-cookie-left .cc-cookie-accept {
  font-size: 0.9rem !important;
  max-width: 75px !important;
  color: rgb(255, 255, 255) !important;
  background: rgb(0, 102, 255) !important;
  text-decoration: none !important;
  box-shadow: none !important;
  padding: 0.3rem !important;
  transition: all 0.5s !important;
  margin-left: 0.5rem !important;
}
.cc-cookies .inner-cookie-left .cc-cookie-accept:hover {
  background: rgb(166, 166, 166) !important;
  color: rgb(0, 0, 0) !important;
  transition: all 0.5s !important;
}

.message-block {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.message-block h1 {
  font-family: "Raleway", Arial, sans-serif;
  font-style: normal;
  font-size: 2rem;
  line-height: 1.2em;
  font-weight: 400;
  text-transform: uppercase;
  color: rgb(0, 0, 0);
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.message-block h1 p {
  font-family: "Inter", "Times New Roman", serif;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.2em;
  font-weight: 400;
  color: rgb(0, 0, 0);
  margin-bottom: 2rem;
}
.message-block h1 .smile {
  font-size: 4.5rem;
  font-weight: 500;
}

.payment-popup {
  display: none;
  position: fixed;
  width: 100%;
  min-height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
.payment-popup-container {
  min-height: 500px;
  height: 95vh;
  max-width: 640px;
  background-color: white;
  box-shadow: 0px 0px 15px gray;
  margin: 20px auto;
}
.payment-popup-container iframe {
  width: 100%;
  height: 100%;
}

.payment-popup-show {
  display: block;
}

/*# sourceMappingURL=style_v11_1.css.map */
