/*
  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;
}
.container-content {
  padding: 32px;
  box-sizing: border-box;
  background-color: white;
}
