/* Variables */
/* Mixins */
/* Helpers */
.no-spacing {
  margin: 0;
  padding: 0;
}

@keyframes flipdown {
  0% {
    opacity: 0;
    transform-origin: top center;
    transform: rotateX(-90deg);
  }
  5% {
    opacity: 1;
  }
  80% {
    transform: rotateX(8deg);
  }
  83% {
    transform: rotateX(6deg);
  }
  92% {
    transform: rotateX(-3deg);
  }
  100% {
    transform-origin: top center;
    transform: rotateX(0deg);
  }
}

.h1 {
  font-family: "Prompt", sans-serif;
  font-size: 26px;
  font-weight: 500;
  text-transform: uppercase;
}

.h2 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

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

body {
  margin: 0;
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
  color: #333;
}

a:active, a:focus {
  outline: 0;
  border: none;
  -moz-outline-style: none;
}

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

.page {
  padding-bottom: 50px;
}

.page__title {
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-size: 28px;
  text-align: left;
}

/* Buttons */
.btn-primary {
  background: #f7ff06;
  color: #333;
  border-color: #f7ff06;
  border-radius: 4px;
  transition: all 0.3s;
  display: inline-block;
  border-width: 1px;
  border-style: solid;
  padding: 12px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
}

.btn-primary:hover {
  background: #f7ff15;
}

.btn-primary.disabled, .btn-primary[disabled] {
  background: #838383;
  border-color: #838383;
  cursor: not-allowed;
}

.btn-secondary {
  background: #f7ff06;
  color: #333;
  border-color: #f7ff06;
  border-radius: 4px;
  transition: all 0.3s;
  display: inline-block;
  border-width: 1px;
  border-style: solid;
  padding: 12px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
}

.btn-secondary:hover {
  background: #f7ff15;
}

.btn-secondary.disabled, .btn-secondary[disabled] {
  background: #838383;
  border-color: #838383;
  cursor: not-allowed;
}

.btn-quantity {
  background: #333;
  color: #fff;
  border-color: #333;
  border-radius: 4px;
  transition: all 0.3s;
  display: inline-block;
  border-width: 1px;
  border-style: solid;
  padding: 12px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  vertical-align: top;
  padding: 0;
  width: 30px;
  height: 30px;
  line-height: 26px;
  font-size: 10px;
}

.btn-quantity:hover {
  background: #3b3b3b;
}

.btn-quantity.disabled, .btn-quantity[disabled] {
  background: #333333;
  border-color: #333333;
  cursor: not-allowed;
}

.btn-quantity--lt {
  background: #fff;
  color: #f7ff06;
  border-color: #fff;
  border-radius: 4px;
  transition: all 0.3s;
  display: inline-block;
  border-width: 1px;
  border-style: solid;
  padding: 12px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  padding: 0;
  width: 24px;
  height: 18px;
  line-height: 16px;
  font-size: 10px;
  opacity: 0;
}

.btn-quantity--lt:hover {
  background: white;
}

.btn-quantity--lt.disabled, .btn-quantity--lt[disabled] {
  background: white;
  border-color: white;
  cursor: not-allowed;
}

/* Form elements */
input, select {
  border: 1px solid #333;
  border-radius: 4px;
  padding: 14px;
}

input.error, select.error {
  border-color: red;
}

.error {
  color: red;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.classic__btn {
  margin-top: 15px;
  margin-bottom: 15px;
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-size: 12px;
  background: black;
  color: white;
  padding: 10px 25px;
  border-radius: 15px;
  border: none;
  text-transform: uppercase;
  transition: all 0.3s;
  text-decoration: none;
}

.classic__btn:hover {
  background: #f7ff06;
  color: #333;
  text-decoration: none;
}

.form__text {
  font-size: 12px;
  display: inline;
}

p.form__text {
  margin-top: 10px;
  margin-bottom: 10px;
  display: block;
}

.description-reg {
  margin-top: 0;
  margin-bottom: 20px;
  border-radius: 3px;
  padding: 20px;
  background: #aedfff;
}

.inline {
  display: inline;
}

.historia-foto {
  background: url(../images/historia.jpg) left top repeat-y;
  height: 5000px;
}

.dealer-list {
  padding: 20px 0;
  border-bottom: 1px solid #efefef;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  padding-top: 25px;
  padding-bottom: 25px;
}

@media only screen and (max-width: 1023px) {
  .nav-top {
    background: black;
  }
}

.nav-below {
  background: black;
}

.navbar-toggler {
  border: 1px solid white;
  border-radius: 8px;
}

.navbar-toggler i {
  padding-top: 2px;
  color: white;
  font-size: 25px;
}

.navbar__links {
  margin-left: auto;
  margin-right: 50px;
}

@media only screen and (max-width: 1023px) {
  .navbar__links {
    padding-top: 25px;
  }
}

.navbar__links .nav-link {
  padding-left: .8rem;
  padding-right: .8rem;
}

.navbar__links a {
  color: white;
  position: relative;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.navbar__links a:hover {
  color: #f7ff06;
}

.navbar__links .dropdown-menu {
  background: black;
}

.navbar__links .dropdown-menu .dropdown-item {
  font-size: 14px;
  font-weight: 400;
}

.navbar__links .dropdown-menu .dropdown-item:before {
  content: ">";
  display: inline-block;
  color: white;
  padding-left: 5px;
  padding-right: 5px;
}

.navbar__links .dropdown-menu .dropdown-item:hover {
  background: #f7ff06;
  color: black;
}

#navbarSupportedContent {
  position: relative;
}

.search__form {
  position: absolute;
  right: 5px;
}

@media only screen and (max-width: 1023px) {
  .search__form {
    position: relative;
    margin-left: 20px;
    margin-top: 20px;
  }
}

.search__wrapper {
  position: relative;
  background: #f7ff06;
  border-radius: 25px;
  transform-origin: 100% 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: 250ms ease;
}

.search__wrapper.focused {
  width: 300px;
}

.search__wrapper.focused input {
  padding: 0 40px 0 13px;
  width: 100%;
  transform: scale(1);
}

.search__wrapper input {
  background: transparent;
  border: 0;
  color: black;
  outline: none;
  height: 50px;
  width: 0;
  overflow: hidden;
  font-weight: 100;
  transform: scale(0);
  transform-origin: 0 50%;
  transition: 275ms ease;
}

.search__wrapper input:-ms-input-placeholder {
  color: black;
}

.search__wrapper input::placeholder {
  color: black;
}

.search__wrapper i {
  position: absolute;
  color: black;
  font-size: 18px;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

header {
  position: relative;
}

.owl-carousel {
  z-index: auto;
}

.owl-carousel .item__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 100%;
}

.owl-carousel .item__container-video {
  display: block;
  height: 100%;
}

.owl-carousel .item {
  background-position: center;
  background-size: cover;
}

.owl-carousel .item__shadow {
  position: relative;
  height: 800px;
  background: url("../images/header-shadow.png") 50% top repeat-x;
}

@media only screen and (max-width: 767px) {
  .owl-carousel .item__shadow {
    height: 500px;
  }
}

.owl-carousel .item__box {
  text-align: left;
}

@media only screen and (max-width: 1023px) {
  .owl-carousel .item__box {
    text-align: center;
    width: 100%;
  }
}

.owl-carousel .item__box h3 {
  color: #fff;
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 36px;
  text-align: left;
  margin-bottom: 40px;
  text-shadow: 0px 0px 6px #333;
}

@media only screen and (max-width: 1023px) {
  .owl-carousel .item__box h3 {
    text-align: center;
  }
}

.owl-carousel .item__box h2 {
  color: #fff;
  font-weight: 700;
  font-family: "Prompt", sans-serif;
  font-size: 58px;
  line-height: 72px;
  text-shadow: 0px 0px 6px #333;
}

@media only screen and (max-width: 767px) {
  .owl-carousel .item__box h2 {
    font-size: 38px;
    line-height: 42px;
  }
}

.owl-carousel .item__box a {
  text-align: left;
}

.owl-carousel .item__box.item__box--black h3 {
  color: black;
  text-shadow: none;
}

.owl-carousel .item__box.item__box--black h2 {
  color: black;
  text-shadow: none;
}

.btn-header {
  font-family: "Prompt", sans-serif;
  font-size: 18px;
  color: black;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 30px;
  border-radius: 20px;
  background: #f7ff06;
  transition: all 0.3s;
}

.btn-header:hover {
  text-decoration: none;
  background: black;
  color: #f7ff06;
}

.item__box.item__box--black .btn-header {
  color: #f7ff06;
  background: black;
}

.item__box.item__box--black .btn-header:hover {
  color: black;
  background: #f7ff06;
}

.owl-nav a {
  outline: 0;
}

.owl-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  left: 50px;
}

@media only screen and (max-width: 767px) {
  .owl-prev {
    display: none;
  }
}

.owl-prev span {
  font-size: 80px;
  color: white;
}

.owl-next {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  right: 50px;
}

@media only screen and (max-width: 767px) {
  .owl-next {
    display: none;
  }
}

.owl-next span {
  font-size: 80px;
  color: white;
}

.slide-progress {
  width: 0;
  max-width: 100%;
  height: 6px;
  background: #d1de06;
}

.triangle {
  width: 213px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.triangle__top {
  background: url("../images/triangle.png") 50% top no-repeat;
  height: 69px;
}

.triangle__body {
  background: #f7ff06;
  height: 50px;
}

.owl-carousel .owl-dots {
  z-index: 10000;
  width: 100px;
  position: absolute;
  bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
}

.owl-carousel .owl-dots .owl-dot {
  z-index: 10000;
  background: black;
  height: 10px;
  width: 10px;
  margin: 2px 2px;
  border: 2px solid black;
  border-radius: 50%;
}

.owl-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
}

.owl-carousel .owl-dots .owl-dot.active {
  background: #f7ff06;
}

.top__header {
  background: #3b3b3b;
  height: 100px;
  border-bottom: 4px solid #cbd70b;
}

.collection {
  background: url("../images/bg_collection.png") 50% top repeat-y;
}

@media only screen and (max-width: 767px) {
  .collection {
    padding-bottom: 30px;
  }
}

.collection__running {
  margin-top: 50px;
}

@media only screen and (max-width: 767px) {
  .collection__running {
    margin-top: 20px;
  }
}

.collection__photo {
  padding-top: 50px;
  padding-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .collection__photo {
    padding: 0;
    display: none;
  }
}

.collection__wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 100%;
}

.collection__inner {
  display: block;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .collection__inner {
    text-align: center;
  }
}

.collection__title {
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-size: 56px;
  text-transform: uppercase;
  color: black;
  display: block;
}

@media only screen and (max-width: 767px) {
  .collection__title {
    padding-top: 40px;
    text-align: center;
  }
}

.collection__title--running {
  text-align: right;
  font-size: 50px;
}

@media only screen and (max-width: 767px) {
  .collection__title--running {
    text-align: center;
    font-size: 50px;
  }
}

.collection__subtitle {
  color: #5e5e5e;
  font-size: 32px;
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  margin-bottom: 35px;
  display: block;
}

@media only screen and (max-width: 767px) {
  .collection__subtitle {
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
  }
}

.collection__subtitle--running {
  text-align: right;
  text-transform: uppercase;
  font-size: 18px;
}

@media only screen and (max-width: 767px) {
  .collection__subtitle--running {
    text-align: center;
  }
}

.collection__btn {
  margin-top: 15px;
  margin-bottom: 15px;
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-size: 18px;
  background: black;
  color: white;
  padding: 10px 35px;
  border-radius: 25px;
  text-transform: uppercase;
  transition: all 0.3s;
}

@media only screen and (max-width: 767px) {
  .collection__btn {
    text-align: center;
  }
}

.collection__btn:hover {
  background: #f7ff06;
  color: #333;
  text-decoration: none;
}

.collection__btn--running {
  padding: 14px 20px;
  width: 50px;
  height: 50px;
  text-align: right;
}

.collection__running--inner, .collection__winter--inner {
  position: relative;
  min-height: 400px;
}

@media only screen and (max-width: 767px) {
  .collection__running--inner, .collection__winter--inner {
    min-height: 50px;
  }
}

.collection__running--rectangle {
  z-index: -5;
  position: absolute;
  right: 50px;
  top: 0;
  width: 60%;
  top: 120px;
  height: 270px;
  border: 7px solid #cbd70b;
}

@media only screen and (max-width: 767px) {
  .collection__running--rectangle {
    display: none;
  }
}

.collection__winter--rectangle {
  z-index: -5;
  position: absolute;
  left: 50px;
  bottom: 0;
  width: 58%;
  height: 240px;
  border-top: 8px solid #dfdfdf;
  border-left: 8px solid #dfdfdf;
  border-right: 8px solid #dfdfdf;
}

@media only screen and (max-width: 767px) {
  .collection__winter--rectangle {
    display: none;
  }
}

.collection__photo--bg {
  background: url("../images/bg_running.png") 50% 50% no-repeat;
}

.categories {
  padding: 30px 0;
}

.categories__breadcrumb {
  padding-top: 30px;
  margin-left: 10px;
  padding-bottom: 0;
}

.categories__breadcrumb ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.categories__breadcrumb ul li {
  display: inline-block;
  color: #5e5e5e;
}

.categories__breadcrumb ul li a {
  color: #333;
  text-decoration: none;
}

.categories__breadcrumb ul li a:hover {
  text-decoration: underline;
}

.categories figure {
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  min-width: 320px;
  max-width: 480px;
  max-height: 360px;
  width: 100%;
  background: black;
  text-align: center;
  cursor: pointer;
}

.categories figure img {
  position: relative;
  display: block;
  min-height: 100%;
  max-width: 100%;
  opacity: 1;
}

.categories figure figcaption {
  padding: 2em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.categories figure figcaption::before,
.categories figure figcaption::after {
  pointer-events: none;
}

.categories figure figcaption,
.categories figure figcaption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.categories figure figcaption > a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}

.categories figure h2 {
  word-spacing: -0.15em;
  font-weight: 700;
  color: white;
  text-shadow: 0px 0px 2px black;
}

.gcategories figure h2 span {
  font-weight: 800;
}

.categories figure h2,
.categories figure p {
  margin: 0;
}

.categories figure p {
  letter-spacing: 1px;
  font-size: 12px;
  color: white;
  border-top: 1px solid #f7ff06;
}

figure.effect-lily img {
  max-width: none;
  width: calc(100% + 50px);
  opacity: 1;
  transition: opacity 0.35s, transform 0.35s;
  transform: translate3d(-40px, 0, 0);
}

figure.effect-lily figcaption {
  text-align: left;
}

figure.effect-lily figcaption > div {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2em;
  width: 100%;
  height: 50%;
}

figure.effect-lily h2,
figure.effect-lily p {
  transform: translate3d(0, 40px, 0);
}

figure.effect-lily h2 {
  transition: transform 0.35s;
}

figure.effect-lily p {
  color: white;
  opacity: 0;
  transition: opacity 0.2s, transform 0.35s;
}

figure.effect-lily:hover img,
figure.effect-lily:hover p {
  opacity: 0.7;
}

figure.effect-lily:hover img,
figure.effect-lily:hover h2,
figure.effect-lily:hover p {
  transform: translate3d(0, 0, 0);
}

figure.effect-lily:hover p {
  transition-delay: 0.05s;
  transition-duration: 0.35s;
}

.product__box {
  padding: 10px 0 0 5px;
}

.product__title {
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: black;
  margin: 10px 0 4px 0;
  padding: 0;
}

.product__code {
  margin: 0;
  padding: 0;
  font-size: 15px;
  color: #5e5e5e;
}

.product__sizes {
  list-style-type: none;
  margin: 8px 0 0 0;
  padding: 0;
}

.product__sizes li {
  display: inline-block;
  padding: 2px 5px;
  margin: 2px;
  color: black;
  border-radius: 5px;
  background: #efefef;
}

.product__sizes li.bike-category {
  background: white;
}

.product__description b {
  text-transform: uppercase;
  font-family: "Prompt", sans-serif;
  font-weight: 700;
}

.product__price {
  margin-top: 15px;
  text-align: left;
}

.product__price p {
  display: inline-block;
  text-align: left;
  padding: 5px 20px;
  border-radius: 20px;
  color: white;
  font-weight: 400;
  background: #333;
  font-size: 16px;
  transition: all 0.3s;
}

.product__price p a {
  color: #f7ff06;
  text-decoration: none;
}

.product__menu ul {
  list-style-type: none;
  margin: 8px 0 18px 0;
  text-align: left;
  padding: 0;
}

.product__menu ul li {
  display: inline-block;
}

.product__menu ul li a {
  background: #333;
  font-size: 12px;
  color: white;
  padding: 3px 5px;
  border-radius: 5px;
  margin: 2px;
  transition: all 0.3s;
}

.product__menu ul li a:hover {
  color: #f7ff06;
  text-decoration: none;
}

.product__panel {
  margin-top: 20px;
  background: #f7ff06;
  padding: 16px 25px;
  border-radius: 5px;
}

@media only screen and (max-width: 559px) {
  .product__panel {
    padding: 10px 0;
  }
}

.product__panel ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.product__panel ul li {
  margin: 0 10px;
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .product__panel ul li {
    display: block;
    width: 100%;
  }
}

.product__panel ul li a {
  padding: 8px 12px;
  color: black;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  border-radius: 20px;
  transition: all 0.3s;
}

@media only screen and (max-width: 767px) {
  .product__panel ul li a {
    display: block;
  }
}

.product__panel ul li a:hover {
  background: black;
  color: white;
  border-radius: 20px;
}

.product__panel ul li a.active {
  background: black;
  color: white;
  border-radius: 20px;
}

.product__spec .tab-content {
  padding-top: 30px;
  padding-bottom: 30px;
}

.product__spec dt {
  clear: left;
  float: left;
  width: 200px;
  padding: 2px 0;
  color: #666;
  font-weight: bold;
}

@media only screen and (max-width: 559px) {
  .product__spec dt {
    display: block;
    clear: both;
    float: none;
  }
}

.product__spec dd {
  padding: 2px 0 2px 200px;
}

@media only screen and (max-width: 559px) {
  .product__spec dd {
    padding: 0;
  }
}

.products {
  padding-bottom: 50px;
  padding-top: 50px;
}

.products__box {
  padding: 20px;
  min-height: 500px;
  margin-bottom: 20px;
  border: 2px solid transparent;
  border-bottom: 2px solid #efefef;
  transition: all 0.3s;
  cursor: pointer;
}

.products__box:hover {
  border: 2px solid #cbd70b;
  border-radius: 10px;
  transition: all 0.3s;
}

.products__title {
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 18px;
  color: black;
}

.products__title a {
  color: black;
  text-decoration: none;
}

.products__btn {
  background: black;
  color: white;
  display: block;
  text-align: center;
  padding: 8px;
  text-decoration: none;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.products__btn:hover {
  color: #f7ff06;
  text-decoration: none;
}

.products__box {
  transition: all 0.3s;
}

.products__box:hover .products__btn {
  visibility: visible;
  opacity: 1;
}

.pagination {
  text-align: center;
  margin-top: 20px;
}

.pagination ul {
  margin: 0 auto;
  list-style-type: none;
  text-align: center;
}

.pagination ul li {
  display: inline-block;
}

.pagination ul li a {
  color: black;
  padding: 4px 10px;
  text-decoration: none;
}

.pagination ul .active a {
  background: black;
  color: #f7ff06;
  text-decoration: none;
}

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

.zoom-gallery-slide {
  display: none;
}

.zoom-gallery-slide.active {
  display: block;
}

.zoom-gallery .video-slide {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.zoom-gallery .video-slide iframe,
.zoom-gallery .video-slide object,
.zoom-gallery .video-slide embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.zoom-gallery .selectors {
  text-align: center;
  margin: 10px 0;
}

.zoom-gallery .selectors a {
  margin: 5px;
  border: none;
  display: inline-block;
}

.zoom-gallery .selectors a:hover,
.zoom-gallery .selectors a.active {
  border-color: #ccc;
}

.zoom-gallery .selectors img {
  box-shadow: none !important;
  filter: none !important;
  -webkit-filter: none !important;
  height: 75px;
}

.zoom-gallery .selectors a[data-slide-id=video-1],
.zoom-gallery .selectors a[data-slide-id=video-2] {
  position: relative;
}

.zoom-gallery .selectors a[data-slide-id=video-1] img,
.zoom-gallery .selectors a[data-slide-id=video-2] img {
  opacity: 0.8;
}

.zoom-gallery .selectors a span {
  position: absolute;
  color: #fff;
  text-shadow: 0px 1px 10px #000;
  top: 50%;
  left: 50%;
  display: inline-block;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  font-size: 30px;
  z-index: 100;
}

.registration {
  background: #dfdfdf url("../images/bg_registration.jpg") 50% 50% no-repeat;
  padding: 0 0 20px 0;
  min-height: 460px;
}

.registration__box {
  background: url("../images/triangle_revers.png") 50% top no-repeat;
}

.registration__box--inner {
  padding-top: 90px;
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .registration__box--inner {
    text-align: center;
    padding-top: 45px;
  }
}

.registration__box--inner i {
  text-align: right;
  font-size: 50px;
  padding: 10px;
  border-radius: 8px;
  border: 3px solid #5e5e5e;
}

@media only screen and (max-width: 767px) {
  .registration__box--inner i {
    text-align: center;
    margin-bottom: 90px;
  }
}

.registration__box--inner h3 {
  text-align: right;
  color: black;
  font-size: 45px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: "Prompt", sans-serif;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .registration__box--inner h3 {
    text-align: center;
    font-size: 35px;
  }
}

.registration__box--inner p {
  color: #5e5e5e;
  font-size: 20px;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .registration__box--inner p {
    text-align: center;
  }
}

.registration__box--inner a {
  text-align: right;
  transition: all 0.3s;
}

@media only screen and (max-width: 767px) {
  .registration__box--inner a {
    text-align: center;
  }
}

.technology {
  background: #efefef;
  background-position-y: 50%;
  padding-top: 20px;
  text-align: center;
  padding-bottom: 50px;
}

.technology h2 {
  font-family: "Prompt", sans-serif;
  text-align: center;
  font-size: 30px;
  margin-top: 10px;
  margin-bottom: 50px;
  text-transform: uppercase;
}

@media only screen and (max-width: 399px) {
  .technology h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }
}

.news {
  padding-bottom: 50px;
}

.news h2 {
  font-size: 40px;
  color: black;
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: left;
}

@media only screen and (max-width: 559px) {
  .news h2 {
    font-size: 30px;
    margin-bottom: 0;
    text-align: center;
  }
}

.news hr {
  height: 3px;
  background: #f6f6f6;
  border: none;
  margin: 10px 0;
}

.news__box {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media only screen and (max-width: 559px) {
  .news__box {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.news__photo {
  text-align: center;
  position: relative;
}

@media only screen and (max-width: 559px) {
  .news__photo img {
    width: 60%;
    text-align: center;
    margin: 10px auto;
  }
}

.news__rectangle {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 80px;
  height: 80px;
  border: 6px solid #cbd70b;
}

@media only screen and (max-width: 559px) {
  .news__rectangle {
    display: none;
  }
}

.news__content h3 {
  color: #333;
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 8px;
}

.news__content h3 a {
  color: #333;
  text-decoration: none;
}

.news__content h6 {
  color: #787878;
  font-size: 13px;
  margin-bottom: 15px;
}

.news__content h6 i {
  color: #787878;
  font-size: 13px;
}

.news__content p {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
}

.news__btn {
  margin-top: 15px;
  margin-bottom: 15px;
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-size: 12px;
  background: black;
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.news__btn:hover {
  background: #f7ff06;
  color: #333;
  text-decoration: none;
}

.news__content--right {
  text-align: right;
}

@media only screen and (max-width: 559px) {
  .news__content--right {
    text-align: left;
  }
}

.news__content--right h3, .news__content--right h6, .news__content--right p {
  text-align: right;
}

@media only screen and (max-width: 559px) {
  .news__content--right h3, .news__content--right h6, .news__content--right p {
    text-align: left;
  }
}

.news__content--right .news__btn {
  text-align: right;
  background: #cbd70b;
  color: black;
  transition: all 0.3s;
}

@media only screen and (max-width: 559px) {
  .news__content--right .news__btn {
    text-align: left;
  }
}

.news__content--right .news__btn:hover {
  background: black;
  color: white;
}

.news__list h2 {
  font-size: 18px;
}

.news__list h2 a {
  color: black;
  text-decoration: none;
}

.news__list h4 {
  font-size: 12px;
  color: #333;
  margin: 10px 0;
}

.newsletter {
  background: #3a3a3a;
  background-image: url("../images/bg_newsletter.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  padding: 20px 0;
  min-height: 300px;
}

@media only screen and (max-width: 1247px) {
  .newsletter {
    background-position: right top;
    background-size: cover;
  }
}

.newsletter h4 {
  color: white;
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-size: 35px;
  margin-top: 30px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 559px) {
  .newsletter h4 {
    font-size: 24px;
    text-align: center;
    margin-top: 5px;
  }
}

.newsletter p {
  color: #b3b3b3;
  font-size: 16px;
  line-height: 1.4em;
}

@media only screen and (max-width: 559px) {
  .newsletter p {
    text-align: center;
  }
}

.newsletter__form {
  background: white;
  border-radius: 50px;
}

.newsletter__form i, .newsletter__form input, .newsletter__form button {
  display: inline-block;
  line-height: 50px;
  height: 50px;
}

.newsletter__form i {
  color: #5e5e5e;
  margin-left: 15px;
  margin-right: 5px;
}

.newsletter__form input {
  background: white;
  color: #5e5e5e;
  margin: 0;
  padding: 10px 10px;
  border: none;
  width: 270px;
}

@media only screen and (max-width: 1247px) {
  .newsletter__form input {
    width: 160px;
  }
}

@media only screen and (max-width: 1023px) {
  .newsletter__form input {
    width: 105px;
  }
}

.newsletter__form button {
  background: #d3e405;
  border-radius: 50px;
  color: black;
  border: none;
  font-size: 15px;
  font-weight: 700;
  width: 120px;
  float: right;
  transition: all 0.3s;
}

.newsletter__form button:hover {
  background: black;
  color: #f7ff06;
}

.footer__menu {
  padding: 0 0 30px 0;
  background: #212121;
}

.footer__menu hr {
  border: none;
  height: 5px;
  background: #f7ff06;
  border-radius: 5px;
  margin: 0;
  padding: 0;
}

.footer__menu h4 {
  color: white;
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-size: 25px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.footer__menu ul {
  margin: 0;
  padding: 0;
}

.footer__menu li {
  color: #5e5e5e;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer__menu li a {
  color: #5e5e5e;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.footer__menu li a:hover {
  color: #f7ff06;
}

.footer__menu .footer__box--social {
  margin-top: 35px;
  margin-bottom: 40px;
}

.footer__menu .footer__box--social li {
  display: inline-block;
}

.footer__menu .footer__box--social a {
  margin: 2px;
  background: #5e5e5e;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: block;
  text-align: center;
  transition: all 0.3s;
}

.footer__menu .footer__box--social a:hover {
  background: #f7ff06;
}

.footer__menu .footer__box--social a i {
  color: #212121;
  font-size: 20px;
  line-height: 34px;
  text-align: center;
}

@media only screen and (max-width: 559px) {
  .footer__box, .footer__menu--box {
    text-align: center;
  }
  .footer__box img, .footer__menu--box img {
    text-align: center;
    margin: 10px auto;
  }
}

.footer__copy {
  padding: 25px 0;
  background: #181818;
}

.footer__copy p {
  color: #5e5e5e;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .footer__copy p {
    text-align: center;
  }
}

.footer__copy p a {
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.footer__copy p a:hover {
  color: #f7ff06;
}
/*# sourceMappingURL=style.css.map */