@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  list-style: none;
  color: #ddd;
}

input {
  display: none;
}

body {
  background-color: #302e2e;
  background: -o-linear-gradient(45deg, #272525, #333, #353232);
  background: linear-gradient(45deg, #272525, #333, #353232);
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #756565;
}

::-webkit-scrollbar-thumb {
  background: #d42f2f;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d60303;
  cursor: pointer;
}

.counter {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #956060;
  font-size: 10px;
}

/* Styl dla komunikatu o cookies */
#cookieConsent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  text-align: center;
  padding: 20px;
  z-index: 9999;
  display: none;
  /* Ukryj na początku */
  font-family: Arial, sans-serif;
}

#cookieConsent button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  margin-left: 10px;
}

#cookieConsent button:hover {
  background-color: #45a049;
}

.navigation {
  -webkit-box-shadow: 0px 0px 10px #000;
          box-shadow: 0px 0px 10px #000;
  border-radius: 8px;
  position: fixed;
  top: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 1250px;
  width: 100%;
  height: 50px;
  z-index: 1000;
  -webkit-transition: top .3s;
  -o-transition: top .3s;
  transition: top .3s;
  background: -o-linear-gradient(45deg, #000, #4b414b, #000);
  background: linear-gradient(45deg, #000, #4b414b, #000);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navigation p {
  font-size: 16px;
  font-weight: 200;
  padding: 5px 10px;
  border-radius: 5px;
}

.navigation p span {
  background-color: #b00808c2;
  padding: 7px 0 7px 13px;
  border-radius: 5px;
}

.navigation .burger-menu-mobile {
  position: relative;
  margin-right: 15px;
  width: 25px;
  height: 18px;
  overflow: hidden;
}

.navigation .burger-menu-mobile:hover {
  cursor: pointer;
}

.navigation .burger-menu-mobile span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.navigation .burger-menu-mobile span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: red;
}

.navigation .burger-menu-mobile span:nth-child(3) {
  bottom: 0;
  background-color: red;
}

@-webkit-keyframes colorChange {
  0% {
    background-color: #fff;
    /* Biały początek */
    -webkit-transform: translateX(0);
            transform: translateX(0);
    /* Pozycja początkowa */
  }
  50% {
    background-color: red;
    /* Zmiana koloru na czerwony */
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    /* Przesunięcie na prawą stronę */
  }
  100% {
    background-color: #fff;
    /* Powrót do białego */
    -webkit-transform: translateX(0);
            transform: translateX(0);
    /* Powrót do lewej strony */
  }
}

@keyframes colorChange {
  0% {
    background-color: #fff;
    /* Biały początek */
    -webkit-transform: translateX(0);
            transform: translateX(0);
    /* Pozycja początkowa */
  }
  50% {
    background-color: red;
    /* Zmiana koloru na czerwony */
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    /* Przesunięcie na prawą stronę */
  }
  100% {
    background-color: #fff;
    /* Powrót do białego */
    -webkit-transform: translateX(0);
            transform: translateX(0);
    /* Powrót do lewej strony */
  }
}

.deactive-menu-mobile {
  display: none;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  z-index: 101;
}

.active-menu-mobile {
  position: fixed;
  display: block;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  z-index: 101;
}

.wrapper {
  max-width: 1250px;
  margin: 75px auto 15px auto;
  -webkit-box-shadow: 0px 0px 10px #000;
          box-shadow: 0px 0px 10px #000;
  border-radius: 8px;
  position: relative;
}

.nav {
  width: 100%;
  background-color: #302e2e;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.nav .nav-top {
  position: relative;
  width: 100%;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.nav .nav-top .container {
  width: 100%;
  overflow: hidden;
  border: 2px solid #000;
  border-radius: 8px 8px 0 0;
  -webkit-box-shadow: 10px 25px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 10px 25px 30px rgba(0, 0, 0, 0.3);
}

.nav .nav-top .container .logo {
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 100;
  bottom: 1px;
  right: 10px;
}

.nav .nav-top .container .logo img {
  width: 100%;
  height: 100%;
}

.nav .nav-top .container .wrapper-1 {
  width: 1000%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: slide 40s infinite;
          animation: slide 40s infinite;
}

@-webkit-keyframes slide {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  5% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10% {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
  15% {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
  20% {
    -webkit-transform: translateX(-20%);
            transform: translateX(-20%);
  }
  25% {
    -webkit-transform: translateX(-20%);
            transform: translateX(-20%);
  }
  30% {
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
  }
  35% {
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
  }
  40% {
    -webkit-transform: translateX(-40%);
            transform: translateX(-40%);
  }
  45% {
    -webkit-transform: translateX(-40%);
            transform: translateX(-40%);
  }
  50% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  55% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  60% {
    -webkit-transform: translateX(-60%);
            transform: translateX(-60%);
  }
  65% {
    -webkit-transform: translateX(-60%);
            transform: translateX(-60%);
  }
  70% {
    -webkit-transform: translateX(-70%);
            transform: translateX(-70%);
  }
  75% {
    -webkit-transform: translateX(-70%);
            transform: translateX(-70%);
  }
  80% {
    -webkit-transform: translateX(-80%);
            transform: translateX(-80%);
  }
  85% {
    -webkit-transform: translateX(-80%);
            transform: translateX(-80%);
  }
  90% {
    -webkit-transform: translateX(-90%);
            transform: translateX(-90%);
  }
}

@keyframes slide {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  5% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10% {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
  15% {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
  20% {
    -webkit-transform: translateX(-20%);
            transform: translateX(-20%);
  }
  25% {
    -webkit-transform: translateX(-20%);
            transform: translateX(-20%);
  }
  30% {
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
  }
  35% {
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
  }
  40% {
    -webkit-transform: translateX(-40%);
            transform: translateX(-40%);
  }
  45% {
    -webkit-transform: translateX(-40%);
            transform: translateX(-40%);
  }
  50% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  55% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  60% {
    -webkit-transform: translateX(-60%);
            transform: translateX(-60%);
  }
  65% {
    -webkit-transform: translateX(-60%);
            transform: translateX(-60%);
  }
  70% {
    -webkit-transform: translateX(-70%);
            transform: translateX(-70%);
  }
  75% {
    -webkit-transform: translateX(-70%);
            transform: translateX(-70%);
  }
  80% {
    -webkit-transform: translateX(-80%);
            transform: translateX(-80%);
  }
  85% {
    -webkit-transform: translateX(-80%);
            transform: translateX(-80%);
  }
  90% {
    -webkit-transform: translateX(-90%);
            transform: translateX(-90%);
  }
}

.nav .nav-top .container img {
  width: 10%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 390px) {
  .nav .nav-top .container img {
    height: 200px;
  }
}

@media (min-width: 533px) {
  .nav .nav-top .container img {
    height: 220px;
  }
}

@media (min-width: 611px) {
  .nav .nav-top .container img {
    height: 240px;
  }
}

@media (min-width: 798px) {
  .nav .nav-top .container img {
    height: 280px;
  }
}

@media (min-width: 987px) {
  .nav .nav-top .container img {
    height: 320px;
  }
}

@media (min-width: 1040px) {
  .nav .nav-top .container img {
    height: 360px;
  }
}

.nav .nav-top .line {
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 6px;
}

@media (min-width: 798px) {
  .nav .nav-top .line {
    height: 10px;
  }
}

.content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 533px) {
  .content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.contact-form {
  position: fixed;
  display: none;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100vh;
  z-index: 1000000;
  background-color: rgba(0, 0, 0, 0.786);
  border-radius: 23px;
  color: #fff;
}

.active-contact-form {
  position: fixed;
  display: block;
}

.content-right {
  width: 95%;
  margin-bottom: 5px;
}

@media (min-width: 533px) {
  .content-right {
    width: 70%;
  }
}

@media (min-width: 798px) {
  .content-right {
    width: 70%;
  }
}

@media (min-width: 1200px) {
  .content-right {
    margin-top: 5px;
  }
}

.content-right i {
  font-size: 12px;
  color: #fff;
  margin-right: 5px;
}

@media (min-width: 798px) {
  .content-right i {
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  .content-right i {
    font-size: 18px;
  }
}

.content-right h3 {
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
}

@media (min-width: 798px) {
  .content-right h3 {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .content-right h3 {
    font-size: 22px;
  }
}

.content-right .spec-desc {
  padding: 5px;
}

.shop-images-and-links {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 0;
}

.shop-images-and-links a {
  width: 100%;
  height: 120px;
  margin: 4px;
  background-color: #2d2d2ca9;
  -webkit-transition: .3s linear;
  -o-transition: .3s linear;
  transition: .3s linear;
  position: relative;
}

@media (min-width: 798px) {
  .shop-images-and-links a {
    height: 180px;
  }
  .shop-images-and-links a:hover {
    background-color: #1f1e1ea9;
  }
}

.shop-images-and-links a .img-box-shop {
  width: 120px;
  height: 120px;
}

@media (min-width: 798px) {
  .shop-images-and-links a .img-box-shop {
    width: 180px;
    height: 180px;
  }
}

.shop-images-and-links a .img-box-shop img {
  width: 100%;
  height: 100%;
}

.shop-images-and-links a .img-box-txt {
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 50%;
  right: 0%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-right: 5px;
}

@media (min-width: 798px) {
  .shop-images-and-links a .img-box-txt {
    margin-right: 20px;
  }
}

@media (min-width: 978px) {
  .shop-images-and-links a .img-box-txt {
    margin-right: 45px;
  }
}

@media (min-width: 1066px) {
  .shop-images-and-links a .img-box-txt {
    margin-right: 65px;
  }
}

@media (min-width: 1100px) {
  .shop-images-and-links a .img-box-txt {
    margin-right: 85px;
  }
}

.shop-images-and-links a .img-box-txt h2 {
  width: 100%;
  font-weight: 300;
  font-size: 12px;
  text-align: center;
  padding-bottom: 5px;
}

@media (min-width: 798px) {
  .shop-images-and-links a .img-box-txt h2 {
    font-size: 16px;
    font-weight: 400;
  }
}

@media (min-width: 978px) {
  .shop-images-and-links a .img-box-txt h2 {
    font-size: 18px;
  }
}

@media (min-width: 1066px) {
  .shop-images-and-links a .img-box-txt h2 {
    font-size: 20px;
  }
}

.shop-images-and-links a .img-box-txt p {
  font-size: 10px;
  font-weight: 200;
  text-align: center;
  margin-top: 5px;
}

@media (min-width: 798px) {
  .shop-images-and-links a .img-box-txt p {
    font-size: 12px;
  }
}

@media (min-width: 978px) {
  .shop-images-and-links a .img-box-txt p {
    font-size: 14px;
  }
}

.index-lights {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.index-lights-deactive {
  display: none;
}

.index-mirror {
  display: none;
}

.index-mirror-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.index-wipers {
  display: none;
}

.index-wipers-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.not-available {
  width: 85%;
}

.not-available img {
  width: 100%;
  height: 100%;
}

.content-left {
  width: 95%;
  background-color: #fff;
  border-radius: 0 0 0 8px;
  background: -o-linear-gradient(135deg, #272525, #333, #353232);
  background: linear-gradient(-45deg, #272525, #333, #353232);
}

@media (min-width: 533px) {
  .content-left {
    width: 30%;
    margin-right: 5px;
  }
}

.content-left .category-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.content-left .category-block ul {
  width: 100%;
}

.content-left .category-block ul li {
  display: block;
  width: 100%;
  padding: 5px;
  -webkit-transition: .2s linear;
  -o-transition: .2s linear;
  transition: .2s linear;
}

.content-left .category-block ul li:hover {
  background-color: #e00000a9;
  cursor: pointer;
}

.content-left .left-box {
  width: 100%;
}

.content-left .left-box .payment {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #c113bb;
  background: -o-linear-gradient(45deg, #000, #4b414b, #000);
  background: linear-gradient(45deg, #000, #4b414b, #000);
  padding: 5px;
  border-radius: 5px;
}

.content-left .left-box .payment i {
  font-size: 12px;
  color: #fff;
  margin-right: 5px;
}

@media (min-width: 798px) {
  .content-left .left-box .payment i {
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  .content-left .left-box .payment i {
    font-size: 18px;
  }
}

.content-left .left-box .payment h3 {
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
}

@media (min-width: 798px) {
  .content-left .left-box .payment h3 {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .content-left .left-box .payment h3 {
    font-size: 22px;
  }
}

.content-left .left-box p {
  font-size: 12px;
  line-height: 100%;
  padding: 5px 15px 5px 5px;
  color: #ddd;
}

@media (min-width: 798px) {
  .content-left .left-box p {
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  .content-left .left-box p {
    font-size: 18px;
  }
}

.content-left i {
  color: #fff;
  margin-right: 3px;
}

.content-left h3 {
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
}

@media (min-width: 798px) {
  .content-left h3 {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .content-left h3 {
    font-size: 22px;
  }
}

.content-left .spec-desc {
  padding: 5px;
}

.content-left .spec-desc p {
  font-size: 12px;
  padding: 5px 15px 5px 5px;
}

@media (min-width: 798px) {
  .content-left .spec-desc p {
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  .content-left .spec-desc p {
    font-size: 18px;
  }
}

.content-left .also {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.content-left .also .also-box {
  display: block;
  width: 25%;
  height: 70px;
}

@media (min-width: 414px) {
  .content-left .also .also-box {
    height: 80px;
  }
}

@media (min-width: 533px) {
  .content-left .also .also-box {
    height: 50px;
  }
}

@media (min-width: 798px) {
  .content-left .also .also-box {
    height: 80px;
  }
}

@media (min-width: 1050px) {
  .content-left .also .also-box {
    height: 90px;
  }
}

.content-left .also .also-box img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  border: 1px solid #dddddd5b;
  -o-object-fit: inherit;
     object-fit: inherit;
}

.content-left .img-left-box-img {
  width: 100%;
  position: relative;
}

.content-left .img-left-box-img img {
  width: 100%;
  height: 100%;
}

.content-left .img-left-box-img .offer-promotion-button {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border: none;
  border-radius: 3px;
  background-color: tomato;
}

.content-left .img-left-box-img .offer-promotion-button a {
  display: block;
  padding: 5px 15px;
  text-decoration: none;
}

.header-2 {
  position: relative;
  width: 100%;
  display: block;
}

.header-2 section {
  width: 100%;
  position: relative;
  overflow-x: hidden;
}

.header-2 section .logo {
  position: absolute;
  top: 5%;
  left: 5%;
  z-index: 100;
}

.header-2 section .logo h2 {
  font-size: 16px;
  font-weight: 200;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #421642c2;
  background-color: #b00808c2;
}

.header-2 .slider {
  position: relative;
  width: 100%;
  height: 400px;
}

.header-2 .buttons {
  position: relative;
  z-index: 5;
  bottom: 0;
  right: 0;
  height: 100%;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  width: auto;
  font-size: 30px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.header-2 .buttons div {
  position: absolute;
  cursor: pointer;
  pointer-events: all;
  padding: 11px;
  background-color: rgba(255, 255, 255, 0.582);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}

.header-2 .buttons div:hover {
  background-color: gray;
}

.header-2 .buttons .next {
  right: 2px;
}

.header-2 .buttons .prev {
  left: 2px;
}

.header-2 .slide {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  z-index: -1;
  background-size: cover;
  background-position: center;
}

.header-2 .slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.685);
  z-index: -1;
}

.header-2 .slide.active {
  z-index: 3;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.header-2 .slide.transition {
  -webkit-transition: 0.5s ease transform;
  -o-transition: 0.5s ease transform;
  transition: 0.5s ease transform;
}

.header-2 .slide .adds {
  width: 100%;
  height: 100%;
  display: block;
}

.header-2 .slide-1 {
  background-image: url(../img/car1.webp);
}

.header-2 .slide-2 {
  background-image: url(../img/terrenowe.webp);
}

.header-2 .slide-3 {
  background-image: url(../img/jeepitir.webp);
}

.header-2 .slide-4 {
  background-image: url(../img/traktor.webp);
}

.header-2 .slide-5 {
  background-image: url(../img/terenowyprzod.webp);
}

.header-2 .slide-6 {
  background-image: url(../img/halloween-2024-og-image-1200x630.webp);
}

.header-2 .slide-6 .offer-button {
  position: relative;
  bottom: 40px;
  right: 40px;
  background-color: red;
  z-index: 9999;
  border-radius: 3px;
  border: none;
}

.header-2 .slide-6 .offer-button:hover {
  background-color: #821a1a;
  cursor: pointer;
}

.header-2 .slide-6 .offer-button a {
  padding: 5px 10px;
  text-decoration: none;
  background-color: #821a1a;
}

.header-2 .top {
  z-index: 3;
  -webkit-transition: 0.5s ease transform;
  -o-transition: 0.5s ease transform;
  transition: 0.5s ease transform;
}

.header-2 .dots {
  z-index: 5;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.header-2 .dots .dot {
  display: inline-block;
  height: 10px;
  width: 10px;
  background-color: rgba(255, 255, 255, 0.185);
  border-radius: 10px;
  margin: 10px;
  -webkit-transition: 0.3s ease width;
  -o-transition: 0.3s ease width;
  transition: 0.3s ease width;
  cursor: pointer;
}

.header-2 .dots .dot.active {
  background-color: white;
  width: 40px;
}

@media (min-width: 360px) and (orientation: portrait), (min-width: 820px) and (orientation: portrait), (min-width: 1024px) {
  .header-2 section .logo h2 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .header-2 .dots {
    left: 0;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}

.footer {
  max-width: 1250px;
  margin: 5px auto 15px auto;
  -webkit-box-shadow: 0px 0px 10px #000;
          box-shadow: 0px 0px 10px #000;
  border-radius: 8px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: -o-linear-gradient(45deg, #000, #4b414b, #000);
  background: linear-gradient(45deg, #000, #4b414b, #000);
}

@media (min-width: 533px) {
  .footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer-l {
  color: #fff;
  padding: 8px 15px;
}

@media (min-width: 533px) {
  .footer-l {
    width: 70%;
  }
}

.footer-l p {
  font-weight: 100;
  line-height: 101%;
  font-size: 12px;
}

@media (min-width: 798px) {
  .footer-l p {
    font-size: 14px;
    padding-right: 80px;
  }
}

@media (min-width: 1200px) {
  .footer-l p {
    font-size: 15px;
    padding-right: 80px;
  }
}

.footer-r {
  padding: 5px 15px;
}

@media (min-width: 533px) {
  .footer-r {
    width: 30%;
  }
}

.footer-r ul {
  margin-top: -5px;
}

.footer-r a {
  font-size: 12px;
  text-decoration: none;
  font-weight: 100;
  -webkit-transition: .2s linear;
  -o-transition: .2s linear;
  transition: .2s linear;
}

.footer-r a:hover {
  color: #35f59e;
}

@media (min-width: 798px) {
  .footer-r a {
    font-size: 14px;
  }
}

h3 {
  font-size: 20px;
  font-weight: 200;
  margin-bottom: 5px;
  color: #35f59e;
}

@media (min-width: 798px) {
  h3 {
    font-size: 26px;
  }
}

.h3-style {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -o-linear-gradient(45deg, #000, #4b414b, #000);
  background: linear-gradient(45deg, #000, #4b414b, #000);
  padding: 5px;
  border-radius: 5px;
}

.central {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.button-a {
  margin-top: 10px;
  margin-left: -5px;
  display: block;
}

.button-a .button {
  background-color: #3b3b3c;
  border: none;
  padding: 3px 8px;
  border-radius: 5px;
  margin-left: 4px;
  cursor: pointer;
  -webkit-transition: .3s linear;
  -o-transition: .3s linear;
  transition: .3s linear;
}

@media (min-width: 798px) {
  .button-a .button {
    padding: 5px 10px;
  }
}

@media (min-width: 978px) {
  .button-a .button {
    padding: 7px 14px;
    font-size: 20px;
  }
}

.button-a .button:hover {
  background-color: #0d0d0e;
  color: #fbfcfc;
}

.disabled-container {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  height: 90vh;
  background-color: #000;
  z-index: 9999;
  display: none;
}

@media (min-width: 798px) {
  .disabled-container {
    width: 95%;
  }
}

@media (min-width: 1250px) {
  .disabled-container {
    max-width: 1150px;
  }
}

.disabled-container .container-mav {
  position: relative;
  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;
  background: -o-linear-gradient(45deg, #000, #4b414b, #000);
  background: linear-gradient(45deg, #000, #4b414b, #000);
}

.disabled-container .container-mav .nav-title {
  margin: 10px;
}

.disabled-container .container-mav .container-exit {
  margin: 10px;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  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;
  font-weight: 100;
  font-size: 20px;
}

.disabled-container .container-mav .container-exit:hover {
  cursor: pointer;
}

.author {
  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;
}

.author p {
  padding: 5px;
}

.author a {
  color: #dcce80;
}

.blog {
  padding: 10px 40px 10px 10px;
}

@media (min-width: 798px) {
  .blog {
    padding-right: 180px;
  }
}
/*# sourceMappingURL=main.css.map */