/*
  Color scheme: http://paletton.com/#uid=13u0u0k++SHslZRGU+V+VvZ+1pd
 */
/*
  Typography: http://spencermortensen.com/articles/typographic-scale/
 */
h1 {
  font-size: 2em;
}
h2 {
  font-size: 1.7411em;
}
h3 {
  font-size: 1.5157em;
}
h4 {
  font-size: 1.3195em;
}
h5 {
  font-size: 1.1487em;
}
.h1 {
  font-size: 2em;
}
.h2 {
  font-size: 1.7411em;
}
.h3 {
  font-size: 1.5157em;
}
.h4 {
  font-size: 1.3195em;
}
.h5 {
  font-size: 1.1487em;
}
.s2 {
  font-size: 0.7579em;
}
/*
  Spacing
 */
.pt {
  margin-top: 16px;
}
.rpos {
  position: relative;
}
.h-100 {
  height: 100%;
}
/*
  Screen sizes
 */
/* Extra small devices (phones, less than 768px) */
/* Small devices (tablets, 768px and up) */
/* Medium devices (desktops, 992px and up) */
/* Large devices (large desktops, 1200px and up) */
/*
  Common tags
 */
html,
body {
  width: 100%;
  height: 100%;
  font-size: 22px;
  margin: 0;
  padding: 0;
}
html {
  font-family: 'Manrope', sans-serif;
}
body {
  background-color: #222452;
  color: #3a3c58;
}
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}
p {
  margin-bottom: 8px;
  margin-top: 8px;
}
input,
textarea,
select {
  font-family: 'Manrope', sans-serif;
}
button {
  border-radius: 16px;
  padding: 8px 16px;
  border: none;
  margin: 0;
  font: inherit;
  line-height: normal;
  cursor: pointer;
}
.btn-primary {
  background-color: #0091e7;
  color: white;
}
button:hover.btn-primary {
  background-color: #1baaff;
  transition: 0.5s;
}
.btn-accent {
  background-color: #6d0fff;
  color: white;
}
button:hover.btn-accent {
  background-color: #8c42ff;
  transition: 0.5s;
}
.btn-secondary {
  background-color: rgba(224, 224, 224, 0.75);
  color: #0091e7;
}
button:hover.btn-secondary {
  color: #1baaff;
  transition: 0.5s;
}
.btn-tag {
  font-size: 0.7579em;
  padding: 0 8px;
  background-color: transparent;
  border: 1px solid #0091e7;
  color: #0091e7;
  margin-top: 8px;
}
button:hover.btn-tag {
  border: 1px solid #1baaff;
  color: #1baaff;
  transition: 0.5s;
}
a,
a:hover,
a:visited {
  text-decoration: none;
}
a,
a:visited {
  transition: all 0.5s ease 0s;
  color: #0091e7;
}
a:hover {
  color: #0091e7;
}
/*
  Color classes
 */
.blue {
  color: #0091e7;
}
.blue-light {
  color: #09a3ff;
}
.cyan {
  color: #00e6ce;
}
.cyan-light {
  color: #1dfce4;
}
.purple {
  color: #5b00ea;
}
.purple-light {
  color: #6d0fff;
}
.red {
  color: #fd0013;
}
.yellow {
  color: #ffcf00;
}
.dark-header {
  color: #44455e;
}
/*
  Common layout
 */
.box {
  display: inline-block;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 16px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.center-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.col-12,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8 {
  position: relative;
}
.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.container-padding {
  padding: 16px;
  box-sizing: border-box;
}
.display-xs-max {
  display: block;
}
.display-sm-min {
  display: none;
}
.display-sm-max {
  display: block;
}
.display-md-min {
  display: none;
}
@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
  .display-xs-max {
    display: none;
  }
  .display-sm-min {
    display: block;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 970px;
  }
  .container-padding-big-md {
    padding: 32px 16px;
    box-sizing: border-box;
  }
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    flex: 0 0 41.666666%;
    max-width: 41.666666%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    flex: 0 0 66.666666%;
    max-width: 66.666666%;
  }
  .display-sm-max {
    display: none;
  }
  .display-md-min {
    display: block;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
/*
  Common classes
 */
.material-icons {
  position: relative;
  top: 4px;
}
.mt-r {
  margin-top: 16px;
}
.mt-s {
  margin-top: 8px;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.tag-link {
  border: 1px solid #0091e7;
  border-radius: 16px;
  padding: 0 8px;
}
/*
  Flag stripes
 */
.flag-stripe {
  position: relative;
  background: linear-gradient(90deg, #0091e7 0%, #00e6ce 50%, #5b00ea 100%);
}
/*
  Logo
 */
#logo {
  position: relative;
  display: inline-block;
}
#logo a,
#logo a:visited {
  color: white;
}
#logo-icon img {
  position: relative;
  top: 5px;
}
#logo-title {
  font-size: 1.5157em;
}
.logo-under {
  height: 1px;
  background: linear-gradient(90deg, #0091e7 0%, #00e6ce 50%, #5b00ea 100%);
}
/*
  Common elements
 */
.flag-stripe-divider {
  height: 6px;
}
.img-cover {
  border-radius: 16px 16px 0 0;
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 96px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}
#map-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.badge {
  height: 64px;
}
#copyright {
  font-size: 0.8705em;
}
#social-container {
  display: inline-block;
  position: relative;
  margin: 8px auto auto;
}
#social {
  display: flex;
}
#social div {
  margin-right: 8px;
}
#social div:last-child {
  margin-right: 0;
}
#social img {
  height: 24px;
}
@media (max-width: 991px) {
  body {
    text-align: center;
  }
}
#map-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#map-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*
  Common classes
 */
.map-bg {
  position: relative;
}
.white {
  color: white;
}
.map-transparent-bg-dark {
  background-color: rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.map-transparent-bg-light {
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.phone-look {
  position: relative;
  z-index: 1;
  left: 50%;
  width: 225px;
  right: auto;
  transform: translateX(-50%);
  max-width: 100%;
}
.phone {
  position: relative;
}
.phone-frame {
  display: block;
  width: 225px;
}
.screenshot {
  position: absolute;
  border-radius: 15px;
  max-height: 94.5%;
  max-width: 88%;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}
.slider {
  animation-name: fade;
  animation-iteration-count: infinite;
  animation-duration: 9s;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 1;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.screen2 {
  -webkit-animation-delay: -6s;
}
.screen3 {
  -webkit-animation-delay: -3s;
}
.material-icons {
  color: #0091e7;
}
.cat-padding {
  padding-top: 32px;
  padding-bottom: 32px;
}
/*
  Top section
 */
#top-section-logo {
  flex: 1;
  text-align: left;
}
.top-section-description {
  margin-top: 16px;
}
.top-section-description h1 {
  font-weight: normal;
}
.sub-desc {
  margin-top: 16px;
  font-size: 1.5157em;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 4px 8px;
}
.navigation {
  z-index: 2;
  margin-left: 16px;
  margin-right: 16px;
  margin-top: 10px;
}
.navigation a,
.navigation a:visited {
  color: rgba(255, 255, 255, 0.8);
}
.flag {
  position: relative;
  top: 1px;
}
.flag img {
  height: 16px;
}
.flag-desc {
  display: none;
}
#lang-switcher-header .flag {
  padding-right: 8px;
}
#lang-switcher-content {
  position: absolute;
  margin-top: 8px;
  padding: 8px;
  background-color: rgba(0, 0, 0, 0.5);
}
#lang-switcher-content a,
#lang-switcher-content a:visited {
  font-weight: normal;
}
.display-sm-max {
  position: relative;
}
#stores {
  display: inline-block;
  position: relative;
  margin-top: 32px;
}
@media (max-width: 991px) {
  #top-section .phone-look {
    margin-top: 12px;
    margin-bottom: 0;
  }
  #about-places .phone-look {
    margin-top: 16px;
  }
  #about-events .phone-look,
  #about-people .phone-look {
    margin-top: 64px;
  }
  .about-col:not(:first-child) {
    margin-top: 32px;
  }
}
@media (min-width: 992px) {
  #top-section-description-left {
    height: 424px;
    margin: 64px;
  }
  .top-section-description {
    margin-top: 32px;
  }
  .sub-desc {
    margin-top: 32px;
  }
  #stores {
    display: flex;
    position: relative;
    margin: 64px auto 0;
  }
  #stores div {
    margin-right: 20px;
  }
  #top-section .phone-look {
    top: 64px;
  }
  #lang-switcher {
    position: absolute;
  }
  #lang-switcher-header {
    position: relative;
    left: -50px;
  }
  #lang-switcher-content {
    position: relative;
    left: -58px;
  }
  .flag {
    padding-right: 8px;
  }
  .flag-desc {
    display: block;
  }
  .slide {
    padding-top: 32px;
  }
  #tagcloud {
    margin: 0 64px;
  }
}
/*
  About section
 */
#about-title {
  text-align: center;
}
#about-header {
  background-color: white;
  text-align: center;
}
.header-icon {
  text-align: center;
}
.header-icon i {
  font-size: 3em;
  color: rgba(0, 145, 231, 0.8);
}
.alive {
  background: linear-gradient(to right, #0091e7, #00eb74);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: pulse-animation 3s infinite ease-in-out;
}
@keyframes pulse-animation {
  0% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  50% {
    transform: scale(1.05);
    /* Adding a subtle glow effect */
    text-shadow: 0 0 10px rgba(0, 145, 231, 0.5);
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
}
.red-icon i {
  color: rgba(253, 0, 19, 0.8);
}
.green-icon i {
  color: rgba(0, 235, 116, 0.8);
}
.purple-icon i {
  color: rgba(91, 0, 234, 0.8);
}
.about-link {
  font-weight: bold;
}
.about-col {
  box-sizing: border-box;
  padding: 0 16px;
}
.cat-content {
  margin-top: 8px;
}
@media (min-width: 992px) {
  #about .row .phone-look {
    transform: translateX(-25%);
  }
  .phone-height {
    height: 450px;
  }
  #about-places {
    padding-top: 32px;
  }
  #about-events {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
/*
  Stats section
 */
#stats {
  background-color: white;
  text-align: center;
}
.count {
  font-weight: bold;
}
/*
  Tags section
 */
#tags {
  text-align: center;
}
#tags a,
#tags a:visited {
  color: #ffffffc0;
}
/*
  Footer section
 */
#footer {
  background-color: #222452;
  text-align: center;
}
#footer h3 {
  color: white;
}
#footer a,
#footer a:visited {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7579em;
}
#social {
  margin-bottom: 8px;
}
#copyright {
  margin-top: 8px;
}
#copyright a,
#copyright a:visited {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.6598em;
}
