* {
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
}

::-moz-selection {
  background-color: #5ec9f1;
  color: #ffffff;
}

::selection {
  background-color: #5ec9f1;
  color: #ffffff;
}

.main-width {
  width: 1100px;
  margin: 0 auto;
  height: 100%;
  position: relative;
}

@media screen and (max-width: 1100px) {
  .main-width {
    width: calc(100% - 70px);
  }
}

@media screen and (max-width: 768px) {
  .main-width {
    width: calc(100% - 30px);
  }
}

a {
  text-decoration: none;
  color: inherit;
}

.facebook-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.facebook-link span {
  display: block;
  height: 30px;
  width: 30px;
  margin-right: 10px;
}

.facebook-link span img {
  display: block;
  max-height: 100%;
  max-width: 100%;
}

.link {
  color: #5ec9f1;
}

.link:hover {
  text-decoration: underline;
}

.content {
	text-align: justify;
}

img {
  display: block;
  outline: none;
  border: none;
  max-width: 100%;
  max-height: 100%;
}

.btn {
  color: #ffffff;
  background-color: #707070;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 25px;
  border-radius: 5px;
  text-transform: none;
  display: inline-block;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 2;
  font-size: 15px;
  font-weight: 600;
  position: relative;
  font-family: "Open Sans Condensed";
}

.btn:hover {
  background-color: #ffffff;
  color: #8ec644;
}

@media screen and (max-width: 1100px) {
  .btn {
    padding: 15px 20px;
    font-size: 13px;
  }
}

.btn__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn__wrapper--right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.btn__wrapper--right .btn {
  margin: 0 0 0 15px;
}

.btn__wrapper--left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.btn__wrapper--left .btn {
  margin: 0 15px 0 0;
}

.btn--blue {
  background-color: #5ec9f1;
}

.btn--blue:hover {
  background-color: #8ec644;
}

.btn--green {
  background-color: #8ec644;
}

.btn--green:hover {
  background-color: #5ec9f1;
}

.title {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 25px;
  color: #8ec644;
  font-family: "Open Sans Condensed";
}

@media screen and (max-width: 1100px) {
  .title {
    font-size: 25px;
    margin-bottom: 20px;
  }
}

.title--white {
  color: #ffffff;
}

.title--footer {
  color: #ffffff;
  font-size: 16px;
  text-align: left;
  margin-bottom: 15px;
}

@media screen and (max-width: 1100px) {
  .title--footer {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.body-text {
  font-size: 19px;
  color: #707070;
  font-size: 300;
}

@media screen and (max-width: 1100px) {
  .body-text {
    font-size: 16px;
  }
}

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

.body-text--center .body-image {
  margin: 0 auto;
}

.body-list {
  list-style: none;
}

.body-list__element:before {
  content: "\003e";
  margin-right: 3px;
}

.quote {
  display: block;
  margin: 60px auto;
  width: 70%;
  text-align: justify;
  font-size: 17px;
  color: #a3a3a3;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 20px;
  border-left: 1px solid #bdbdbd;
}

@media screen and (max-width: 1100px) {
  .quote {
    width: 85%;
    margin: 20px auto;
    font-size: 14px;
    padding: 5px 10px;
  }
}

.important {
  display: block;
  padding: 10px 20px;
  text-align: center;
  font-size: 16px;
  color: #707070;
}

@media screen and (max-width: 1100px) {
  .important {
    padding: 5px 10px;
    font-size: 14px;
  }
}

.top-image {
  width: 100%;
  padding-bottom: 35%;
  background: linear-gradient(225deg, #5ec9f1 0%, #8ec644 100%);
  background-size: cover;
  background-position: center;
}

.header {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 0;
  background-color: #303030;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media screen and (max-width: 1100px) {
  .header {
    padding: 10px 0;
  }
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo {
  display: block;
  height: 65px;
  width: 70px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.logo:hover {
  opacity: 0.5;
}

.logo img {
  display: block;
  height: 100%;
  width: 100%;
}

.main-menu {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1100px) {
  .main-menu {
    position: fixed;
    width: 280px;
    top: 85px;
    right: -280px;
    display: block;
    background-color: #3d3d3d;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    padding: 10px 0;
    border-radius: 0 0 0 10px;
  }
}

@media screen and (max-width: 1100px) {
  .main-menu__element {
    display: block;
  }
}

.main-menu__link {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  padding: 10px 12px;
  border-radius: 5px;
  -webkit-transition: .2s;
  transition: .2s;
  position: relative;
  font-family: "Open Sans Condensed";
}

@media screen and (max-width: 1100px) {
  .main-menu__link {
    display: block;
    padding: 12px 35px 12px 10px;
    text-align: right;
  }
}

.main-menu__link:hover {
  background: linear-gradient(225deg, #5ec9f1 0%, #8ec644 100%);
}

@media screen and (max-width: 1100px) {
  .main-menu__link:hover {
    background: none;
  }
}

.main-menu__link.facebook-link {
  padding: 0;
  margin-left: 5px;
}

@media screen and (max-width: 1100px) {
  .main-menu__link.facebook-link {
    display: none;
  }
}

.main-menu__link.facebook-link:hover {
  background: none;
}

.main-menu.open {
  right: 0;
}

.header-padding {
  width: 100%;
  height: 105px;
  display: block;
}

@media screen and (max-width: 1100px) {
  .header-padding {
    height: 85px;
  }
}

.sticky {
  padding: 10px 0;
}

.sticky .logo {
  height: 50px;
  width: 55px;
}

@media screen and (max-width: 1100px) {
  .sticky .main-menu {
    top: 70px;
  }
}

.sticky .main-menu__link {
  font-size: 16px;
  padding: 7px 10px;
}

@media screen and (max-width: 1100px) {
  .sticky .main-menu__link {
    padding: 12px 35px 12px 10px;
  }
}

.menu-icon {
  display: none;
  height: 50px;
  width: 20px;
  background-image: url(dsg/icons/menu.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
  cursor: pointer;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

@media screen and (max-width: 1100px) {
  .menu-icon {
    display: block;
  }
}

.menu-icon.open {
  background-image: url(dsg/icons/x.svg);
}

.footer {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 60px 0 0 0;
  *background-color: #3d3d3d;
  background-color: #171717;
  color: #cccccc;
  font-weight: 300;
  font-size: 14px;
}

@media screen and (max-width: 1100px) {
  .footer {
    padding: 40px 0 0 0;
    font-size: 12px;
  }
}

.footer__bottom {
  margin-top: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 0;
  background-color: #171717;
}

.footer__bottom__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
}

.footer__privacy {
  margin-left: auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.footer__privacy:hover {
  color: #ffffff !important;
}

.footer__logo {
  margin-right: 20px;
  color: #ffffff;
  font-family: "Open Sans Condensed";
  font-size: 15px;
  font-weight: 700;
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.footer__column {
  width: 25%;
  margin-bottom: 30px;
}

@media screen and (max-width: 1100px) {
  .footer__column {
    width: 33%;
  }
}

@media screen and (max-width: 768px) {
  .footer__column {
    width: 50%;
  }
}

.footer__link {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.footer__link:hover {
  color: #ffffff !important;
}

.footer__list {
  list-style: none;
}

.footer__list__element {
  margin: 7px 0;
  line-height: 1.5em;
}

.footer__list__link {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.footer__list__link:hover {
  color: #ffffff !important;
}

.footer__with-icon {
  padding-left: 30px;
  position: relative;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 18px;
}

.footer__location {
  background-image: url(dsg/icons/map-pin.svg);
}

.footer__phone {
  background-image: url(dsg/icons/phone.svg);
}

.footer__email {
  background-image: url(dsg/icons/mail.svg);
}

.footer__time {
  background-image: url(dsg/icons/clock.svg);
}

.margin {
  width: 100%;
}

.margin--100 {
  height: 100px;
}

@media screen and (max-width: 1100px) {
  .margin--100 {
    height: 80px;
  }
}

@media screen and (max-width: 768px) {
  .margin--100 {
    height: 60px;
  }
}

.margin--80 {
  height: 80px;
}

@media screen and (max-width: 1100px) {
  .margin--80 {
    height: 60px;
  }
}

@media screen and (max-width: 768px) {
  .margin--80 {
    height: 40px;
  }
}

.margin--60 {
  height: 60px;
}

@media screen and (max-width: 1100px) {
  .margin--60 {
    height: 40px;
  }
}

@media screen and (max-width: 768px) {
  .margin--60 {
    height: 30px;
  }
}

.banner {
  background: linear-gradient(225deg, #5ec9f1 0%, #8ec644 100%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 50px 0;
}

@media screen and (max-width: 1100px) {
  .banner {
    padding: 40px 0;
  }
}

@media screen and (max-width: 768px) {
  .banner {
    padding: 30px 0;
  }
}

.banner__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .banner__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

.banner__text {
  color: #ffffff;
  font-size: 18px;
  font-weight: 300;
}

@media screen and (max-width: 1100px) {
  .banner__text {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .banner__text {
    margin-bottom: 20px;
  }
}

.banner__text b, .banner__text strong {
  font-size: 25px;
}

@media screen and (max-width: 1100px) {
  .banner__text b, .banner__text strong {
    font-size: 20px;
  }
}

.video {
  width: 80%;
  margin: 0 auto;
}

@media screen and (max-width: 1100px) {
  .video {
    width: 95%;
  }
}

.video__content {
  width: 100%;
  padding-bottom: 56.25%;
  background-color: #707070;
  margin-top: 40px;
}

.video--small {
  width: 31%;
  margin: inherit;
}

@media screen and (max-width: 992px) {
  .video--small {
    width: 95%;
    margin: 0 auto;
  }
}

.videos {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 40px;
}

@media screen and (max-width: 992px) {
  .videos {
    padding: 0 15px;
  }
}

.videos__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.map {
  width: 100%;
  height: 100%;
}

.map__container {
  width: 100%;
  height: 700px;
}

@media screen and (max-width: 1100px) {
  .map__container {
    height: 400px;
  }
}

@media screen and (max-width: 768px) {
  .map__container {
    height: 200px;
  }
}

.map iframe {
  height: 100%;
  width: 100%;
}

.sponsors__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .sponsors__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sponsors__text {
  display: block;
  font-size: 12px;
  color: #707070;
}

@media screen and (max-width: 768px) {
  .sponsors__text {
    text-align: center;
  }
}

.sponsor {
  height: 80px;
  width: 19%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.sponsor:hover {
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
  .sponsor {
    width: 290px;
    margin-bottom: 10px;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
  }
}

.sponsor img {
  display: block;
  max-height: 80%;
  max-width: 90%;
}















.big-slide {
  min-height: 600px;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.big-slide__content {
  position: relative;
  z-index: 5;
  padding-top: 200px;
}

@media screen and (max-width: 1400px) {
  .big-slide__content {
    padding-top: 160px;
  }
}

@media screen and (max-width: 992px) {
  .big-slide__content {
    padding-top: 100px;
  }
}

@media screen and (max-width: 768px) {
  .big-slide__content {
    padding-top: 50px;
  }
}

.big-slide__text {
  color: #ffffff;
  font-size: 38px;
  text-align: center;
}

@media screen and (max-width: 1400px) {
  .big-slide__text {
    font-size: 28px;
  }
}

@media screen and (max-width: 992px) {
  .big-slide__text {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .big-slide__text {
    font-size: 16px;
  }
}

.big-slider .swiper-pagination {
  bottom: 30px !important;
}

@media screen and (max-width: 1400px) {
  .big-slider .swiper-pagination {
    bottom: 20px !important;
  }
}

.big-slider .swiper-pagination-bullet {
  outline: none;
  background-color: transparent;
  height: 13px;
  width: 13px;
  border: 1px solid #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  opacity: 1;
}

.big-slider .swiper-pagination-bullet-active {
  background-color: #ffffff;
}












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