@import url('https://fonts.googleapis.com/css2?family=Overpass:wght@400;500;700&display=swap');

html {
  scroll-behavior: smooth;
}
header a:hover {
  color: #297374;
}
a.more:hover {
  color: #fff;
}
a:hover {
  color: inherit;
}
header {
  width: 100%;
}
header.subpage {
  background: url('../img/sub-header-min.jpg') no-repeat center;
  background-size: cover;
  height: 300px;
}
body {
  font-family: acumin-pro, sans-serif;
  font-weight: 400;
}
nav {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  top: 0;
  height: 0;
  transition: all 200ms;
  overflow: hidden;
  left: 0;
}
nav.open {
  display: flex;
  z-index: 1;
  height: 100%;
}
nav ul {
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0;
}
nav ul li {
  padding:0 30px;
}
nav ul a {
  padding: 10px 0;
  color: #000;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
}

.hamburger {
  position: absolute;
  right: 15px;
  top: 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #d27242;
}


.noscroll {
  overflow: hidden;
}
.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {}

.hamburger-box {
  width: 30px;
  height: 11px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 30px;
  height: 3px;
  background-color: #d27242;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -7px;
}

.hamburger-inner::after {
  bottom: -8px;
}

.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}


.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgb(0 0 0 / 0%);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.hvr-underline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}

.hvr-underline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: #d27242;
  height: 2px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-underline-from-center:hover:before,
.hvr-underline-from-center:focus:before,
.hvr-underline-from-center:active:before {
  left: 0;
  right: 0;
}
.hvr-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
}
.hvr-shadow:hover,
.hvr-shadow:focus,
.hvr-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}


.slogan img.trip {
  max-width: 80px;
  position: relative;
  top: 40px;

}
.slogan img.active {
  max-width: 60px;
  margin-top: -15px;


}
.slogan {
  margin-top: 100px;
}
.slogan h1 {
  font-family: headline-gothic-atf-rough-n2, sans-serif;
  font-weight: 400;
  font-size: 3em;
  display: flex;
  flex-direction: column;
  color: #fff;
}
.slogan h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.8em;
  font-family: headline-gothic-atf-rough-n1, sans-serif;
  letter-spacing: 1px;
}
.slogan span {
  display: inline-block;
}
.slogan span:first-of-type {
  margin-left: 1.4em;

}


.img-fluid {
  max-width: 100%;
  height: auto;
}

h1,
.content h2 {
  font-size: 2rem;
  text-transform: uppercase;
  color: #297374;
  font-weight: 700;

}
.page h1 {
  text-transform: none;
}
.page h2 {
  color: #297374;
}
.page h2:after {
  display: none;
}
.content h2 {

  text-transform: none;
  position: relative;

}

section p {
  line-height: 1.6rem;
}

.intro h1 {
  position: relative;
  padding-bottom: 2rem;

}
.intro h1:after,
.content h2:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  background: #d27242;
  bottom: 0;
  left: 0;

}


.slider-1 .slide-1 {
  background: rgb(242, 246, 248);
  background: radial-gradient(circle, rgba(242, 246, 248, 1) 21%, rgba(223, 232, 236, 1) 97%);
}
.slider-1 .slide-2 {
  background: rgb(246, 244, 250);
  background: radial-gradient(circle, rgba(246, 244, 250, 1) 21%, rgba(233, 226, 240, 1) 97%);
}

.slider-1 .slide-3 {
  background: rgb(246, 244, 250);
  background: radial-gradient(circle, #dfe4ec 21%, #f0f2f6 97%);
}






.slider-1 .swiper-slide h1 {
  font-weight: 400;
  color: #1b2452;
  font-size: 1.8rem;
  text-align: center;
  position: relative;
  display: inline-block;
}
.slider-1 .slide-2 h1 {

  color: #81539a;

}

.slider-1 .swiper-pagination {
  bottom: 70px;
}

.slider-1 .swiper-slide h1:before,
.slider-1 .swiper-slide h1:after {
  display: none;
  content: "";
  position: absolute;

  width: 60px;
  height: 20px;
  border-radius: 55px;
  background: #1b2452;
  left: -100px;
  top: 50%;
  transform: translate(0%, -50%);
}
.slider-1 .swiper-slide h1:after {


  transform: translate(0%, -50%) rotate(90deg);

}

.slider-1 .slide-2 h1:before,
.slider-1 .slide-2 h1:after {
  background: #81539a;
}


.slider-1 .swiper-pagination-bullet {
  background: #bcbcbc;

}

.slider-1 .swiper-pagination-bullet-active {
  background: #d27242;
}

.more {
  border-radius: 10px;
  padding: 15px 25px;
  color: #fff;
  display: inline-block;
  background: #d27242;
  text-decoration: none;
  transition: all 200ms;

}
.more:hover {

  background: #dd5f20;


}
.text-center {
  text-align: center;
}

form p {
  margin-bottom: 0;
}
form a {

  word-break: break-all;
}
a {
  color: #d27242;
}
form input[type="text"],
form input[type="email"] {
  border-radius: 10px;
  background: #e5e5e7;
  color: #aeaeae;
  border: 0;
  padding: 15px 20px;
}
input[type="checkbox"] {
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 2px solid #000;
  border-radius: 0;
  transform: translateY(0.2em);
}
form .agree input[type="checkbox"] {
  background-color: #e5e5e7;
  border: 0;
  border-radius: 50%;
}
.form-check-input[type=checkbox] {
  border-radius: 0.1em;
}
form .agree label {
  font-size: 0.8rem;
}
form input[type="submit"] {
  border: 0;
}
.small-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.small-wrap2 {
  max-width: 1000px;
  margin: 0 auto;
}
.boxes {
  padding-top: 3rem;
}
.boxes .box-item {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.boxes .box-image {

  overflow: hidden;
}
.boxes .box-content {
  background: #daece2;
  color: #393a3a;
  position: relative;
}
.boxes p {
  margin-bottom: 0;
}
.boxes .number {
  z-index: 1;
  width: 65px;
  height: 65px;
  border-radius: 55px;
  background: #d27242;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  position: absolute;
  right: 50px;
  top: -30%;
}

.mountain {
  background: url(../img/light-mountains.webp) no-repeat;
  background-size: cover;
}
span.light {
  font-weight: 300;
  color: #8ac0a1;
  text-transform: none;
  font-size: 1.2rem;
}

.konkurs {
  padding: 0 0 3rem 0;
}

.konkurs .intro h1 {
  padding-bottom: 0;
}
.konkurs .intro h1::after {
  display: none;
}

.blog {
  background: url(../img/wissen-bg.webp) no-repeat top center;
  background-size: cover;
  color: #fff;
  padding: 3rem 0;
}
.blog .swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto;

}
.blog .more-div {
  margin-top: auto;
}
.subpage.blog {
  color: #000;
}
.subpage.blog {
  background: none;
}
.blog .container {
  position: relative;
}
.blog h1 {
  color: #fff;
}
.subpage.blog h2 {
  color: #000;
}
.blog span.light {
  color: #a7d5bb;
}
.blog .swiper-blog {
  max-width: 900px;

}
.blog h2 {
  font-size: 1.4rem;
  font-weight: 700;
}

.swiper-button-next.custom,
.swiper-button-prev.custom {
  width: 50px;
  height: 50px;
  background: #8ac0a1;
  color: #fff;
  border-radius: 55px;
}
.swiper-button-next.custom:after,
.swiper-button-prev.custom:after {
  font-size: 0.8rem;
}

.dates {
  background: url(../img/dates.jpg) no-repeat top center;
  background-size: cover;
}
.dates .date-item {
  background: #fff;
  border-radius: 5px;
  text-align: center;
  padding: 10px;
}
.dates span {
  display: block;
}

.dates span:nth-of-type(1) {
  color: #297374;
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 0;
}
.dates span:nth-of-type(2) {

  font-size: 1.8rem;
  color: #297374;
  text-transform: uppercase;
  font-weight: 700;
}
.dates span:nth-of-type(3) {

  color: #d27242;
}

footer {
  background: url(../img/foot-min.png) no-repeat top center;
  background-size: cover;
  padding-top: 10rem;
  margin-top: -70px;
}
.logos {
  padding: 4rem 0;
}
footer img {
  max-width: 140px;
}
.copy p,
.copy a {
  color: #ffffff;
}
.copy a {
  text-decoration: underline;
}

.subpage h1 {
  color: #fff;
}

.form-alert {
  display: none;
}
.form-alert,
#exist-error {
  text-align: center;
  padding: 10px;
  color: #fff;
  background: #d27242;
  border-radius: 5px;
  margin: 10px 0;
}
.form-alert.send {
  background: #297374;
}

.fw-500 {
  font-weight: 500;
}
.fw-700 {
  font-weight: 700;
}
.italic {
  font-style: italic;
}

.pattern {
  background: url("../img/pattern.jpg");
}
.pattern .container {
  background: #fff;
}

@media only screen and (min-width: 768px) {
  .slider-1 .swiper-slide h1:before,
  .slider-1 .swiper-slide h1:after {
    display: block;

  }
  header.subpage {
    background-position: center;
    height: 400px;
  }
  .logos {
    padding: 8rem 0;
  }
  .blog {
    padding: 14rem 0;
  }
  .subpage.blog {
    padding: 4rem 0 7rem 0rem;
  }
  .blog h2 {
    font-size: 1.6rem;

  }
  span.light {

    font-size: 1.6rem;
  }
  .konkurs {
    padding:0;

  }
  .mountain .container {
    padding: 10rem 0;
  }

  .boxes .box-space {
    top: 40px;
  }
  .boxes .box-image {
    height: 250px;

  }
  .boxes {
    padding-top: 12rem;
  }
  .slider-1 h1 {

    font-size: 2rem;
  }
  h1 {
    font-size: 2.5rem;

  }
  .slogan img.trip {
    top: 80px;
  }
  .slogan {
    margin-top: 50px;
  }

  .slogan img.trip {
    max-width: 120px;


  }
  .slogan img.active {
    max-width: 100px;



  }
  .slogan h1 {

    font-size: 6em;
    line-height: 1;

  }
  .slogan h2 {

    font-size: 2.6em;


  }
  .hamburger {
    display: none;
  }
  nav {
    position: static;

    background: none;
    display: flex;
    overflow: unset;

  }
  nav ul a {
    color: #297374;
  }

  nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header {
    background-position: -400px center;
  }

}

@media only screen and (min-width: 1200px) {
  .mountain .container {
    padding: 18rem 0 0 0;
  }
  header {
    /*background-position: center;*/
    /*height: 798px;*/
    width:100%;
    background:url('../img/hero-min.jpg') no-repeat center center;
    background-size: cover;
  }
}

/**
 * 2023 update
 */

.overpass {
  font-family: 'Overpass', sans-serif;
}
.blue-hero {
  background: #CFECFB;
  height:70vh;
}
.font-semibold {
  font-weight:600;
}
.font-medium {
  font-weight:500;
}
.text-blue {
  color:#009EE0;
}
.text-orange {
  color:#EE7F00;
}
.text-gray {
  color:#808080;
}
.blue-box {
  background:#CCECF9;
  border-radius: 10px;
  box-shadow:0 1px 12px rgba(0, 0, 0, .2);
}
.square {
  max-width:570px;
}
.square img {
  max-width: 90%;
  height:auto;
}
.square:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.overpass h3,
h3.overpass.text-blue {
  font-weight:bold;
  font-size:40px;
}
.overpass h5,
h5.overpass.text-orange {
  font-weight: medium;
  font-size:30px;
}
h1.overpass {
  font-size:56px;
  font-weight: bold;
}
.blue-sep-first:before {
  background: #CFECFB;
  left:0;
  top:0;
  width:100%;
  height:50%;
  display:block;
  content:'';
  position: absolute;
}

body {
  overflow:hidden;
}
.sw-popup-overlay {
  position:fixed;
  left:0;
  top:0;
  width:100%;
  height:100vh;
  background:rgba(255, 255, 255, .75);
  z-index: 9998;
}
.sw-popup {
  display:inline;
  width:auto;
  height:auto;
  position:fixed;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  z-index: 9999;
}
.sw-popup img {
  display:block;
}
.sw-popup-close {
  position:absolute;
  right:15px;
  top:15px;
}
.sw-popup-close svg {
  width:40px;
  height:40px;
}

@media screen and (max-width: 580px) {
  .sw-popup {
    width:100%;
  }
  .sw-popup img {
    width:100%;
    height:auto;
  }
  .sw-popup-close {
    right:5px;
    top:5px;
  }
  .overpass h3,
  h3.overpass.text-blue {
    font-size:24px;
  }
  .overpass h5,
  h5.overpass.text-orange {
    font-size:18px;
  }
  h1.overpass {
    font-size:40px;
  }
  .blue-hero h1.overpass {
    font-size:26px;
  }
  .competition-logos img,
  .blue-hero img {
    max-height: 60px;
  }
  header {
    background:url('../img/hero-min.jpg') no-repeat center center;
    background-size: cover;
  }
}