/* * {
  border: 1px solid red
}    */
.pic2 {
	animation: 2s lightning ease-in infinite;
	position: absolute;
	top: 0;
    left: 0;
    transform: translate(302px, 47px);
}
@-webkit-keyframes lightning {
  0% {
    opacity: 0.5;
  }
  2% {
    opacity: 1;
  }
  4% {
    opacity: 0.5;
  }
  6% {
    opacity: 1;
  }
  8% {
    opacity: 0.5;
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes lightning {
  0% {
    opacity: 0.5;
  }
  2% {
    opacity: 1;
  }
  4% {
    opacity: 0.5;
  }
  6% {
    opacity: 1;
  }
  8% {
    opacity: 0.5;
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.project {
  border: 0;
  margin: 0 auto;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "baskerb";
  position: relative;
  overflow: hidden;
  background: #110d0a;
  color: #fff;
  /*max-width: 1600px;*/
  /* background-image: url("../img/object.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40%; */
}

@font-face {
  font-family: baskerb;
    src: url("baskervillebtrusbyme_bold.otf") format("opentype");
}
@font-face {
 font-family: baskerbi;
    src: url("baskervillebtrusbyme_bolditalic.otf") format("opentype");
}
@font-face {
 font-family: baskeri;
    src: url("baskervillebtrusbyme_italic.otf") format("opentype");
}
@font-face {
 font-family: baskerr;
    src: url("baskervillebtrusbyme_roman.otf") format("opentype");
}

.msi__logo {
  left: 15px;
  top: 30px;
  max-width: 70px;
  position: relative;
}

.title {
  color: #fe2d6f;
  font-size: 4em;
  animation: vlevo 1s ease-in-out;
  position: relative;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.069em;
  margin: 0;
  line-height: 1;
  /* text-shadow:  0px -1px #ffffff; */
}

.bg_img_1 {

}

.bg_img_2 {
  background-image: url("../img/bg_img_2.jpg");
  background-position: center;
  background-size: cover;
}

.selectarea__filter {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}



@keyframes spin {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 10px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes spin2 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 20px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}




.logo {
	position: absolute;
	width: 10%;
    top: 4%;
    left: 4%;
	z-index: 1;
}
.bf {
	position: relative;
    display: flex;
    justify-content: center;
}

.ball1 {
	position: absolute;
	transform: translateY(35em);
	width: 40em;
    z-index: 1;

}

.ball2 {
	position: absolute;
    transform: translate(8em, 13em);
    z-index: 5;
    width: 32em;
}

.ball3 {
  position: absolute;
  left: 36%;
  z-index: 100;
  top: 33%;
  width: 100px;
  animation: spin2 5s infinite ease-in-out;
}

.ball4 {
  position: absolute;
  left: 20%;
  top: -10%;
  width: 140px;
  z-index: 2;
  animation: spin 5s infinite ease-in-out;
}

.card__container {
  width: 100%;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 10px;
}

.card {
		background-image: url(../img/cardbg.png);
background-size: 100% 100%;
  transition: background-color 1s, transform 1s; 
}

.card__list {

  width: 100%;
  display: flex;
  flex-direction: column;
}

.card__img {
  height: 200px;
  padding: 20px;
}

.card__title {
    margin: 21px;
    color: #fff;
    font-size: 1.3em;
    border-bottom: #dfb130 2px solid;
}
.card__title p {
  margin: 0px;
  color: #dfb130;
  font-size: 0.5em;
}


.card__btn {
	color: #dfb130;
    position: relative;
    padding: 24px 29px 15px 24px;
    font-size: 19px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: color 1s;
    z-index: 1;
    display: block;
    text-align: right;
	animation: pulse-animation 2s infinite ease-in-out; /* Анимация */
}
 @keyframes pulse-animation {
            0% {
                opacity: 0.8;
               text-shadow: 0 0 4px orange, 0 0 7px orange;
            }
            50% {
                
                opacity: 1;
                text-shadow: 0 0 1px orange, 0 0 15px orange;
            }
            100% {
             
               opacity: 0.8; 
               text-shadow: 0 0 4px orange, 0 0 7px orange;
            }
        }
.card__list {
  line-height: 1.5;
  color: #fff;
}
.card__list p {
	
}
.card__btn::before {

  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-100%);
  z-index: -1;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card__btn::before {
  transform: translateY(0);
}

.card:hover  {
	background-image: url(../img/cardbghover.png);
background-size: 100% 100%;
}
.card:hover .card__title {
color: #000;
}
.card:hover .card__list {
color: #000;
}


.filter-buttons {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 1em 0.2em;
  flex-direction: column;
  align-items: center;
}

.filter-group {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
}

.filter-label {
  font-weight: bold;
}





.filter-btn {
    color: #fff;
    max-width: 300px;
    height: 46px;
    text-align: center;
    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;
    background: url(../img/btn-top-bg.png) top center no-repeat, url(../img/btn-bottom-bg.png) bottom center no-repeat;
    background-size: contain;
    margin: 0 4px;
    padding: 0 30px;
    font-family: baskerb;
    font-size: 1.2em;
}

.filter-btn.active {
  color: #dfb130;
}

.filter-btn:hover {
  cursor: pointer;
  border: 1px solid;
  border-image-source: linear-gradient(90deg, #fff 0%, transparent 10%, #fff, transparent 90%, #fff 100%);
  border-image-slice: 1;
  background: rgba(255, 255, 255, 0.25);
  text-shadow: 2px 0 10px #000;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.btn-liquid {
  display: inline-block;
  position: relative;
  width: 240px;
  height: 60px;

  border-radius: 27px;

  color: #fff;
  font: 700 14px/60px "Droid Sans", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  margin-bottom: 4.5em;
}

.btn-liquid .inner {
  position: relative;

  z-index: 2;
}

.btn-liquid canvas {
  position: absolute;
  top: -50px;
  right: -50px;
  bottom: -50px;
  left: -50px;

  z-index: 1;
}


@keyframes run {
  to {
    transform: none;
  }
}

.main {
  max-width: 1920px;
  min-width: 768px;
  margin: 0 auto;
}

.content_grid {
  
}

.content_grid2 {
  display: grid;
  grid-template-columns: 40px auto 40px;
  grid-template-rows: 40px 40px;
}

.content_grid3 {
  position: relative;
    z-index: 2;
}

.content_grid4 {
  display: grid;
  grid-template-columns: 40px auto 40px;
  grid-template-rows: 0px auto 0px;
}

.sec3 {
  margin-top: -4.3% !important;
  margin-bottom: 1% !important;
  max-width: 1600px;
  margin: 0 auto;
}

.wtb-widget-footer {
  display: none !important;
}

.wtb-widget .wtb-retailer-item {
  border-bottom: none !important;
}

.textblock {
  position: absolute;
  left: 4%;
  top: 50%;
  width: 50%;
  transform: translateY(-50%);
}

.textblock img {
  width: 110%;
}

.textblockitem {
  color: #fff;
  margin-bottom: 12%;
}

.link__section {
  /* flex-direction: column; */
  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; */
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  width: 100%;
  max-width: 1920px;
  justify-content: space-around;
}

.btn-track {
  margin: 3px;
  transition: transform 2s;
  /* width: 12em; */
}

.btn-track:hover {
  margin: 3px;
  transform: scale(1.2);
}

.btn-track img {
  width: 12em;
}

/* .ruBts2021__etailer--links {
        width: 100%;
        max-width: 1920px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    } */

/* .ruBts2021__etailer--links a {
        margin: 3px;
        transition: transform 2s;
    } */

/* .ruBts2021__etailer--links a:hover {
        margin: 3px;
        transform: scale(1.2);
    } */

.title__h2 {
  color: #fff;
  margin-bottom: 1em;

}
/* 
    .ruBts2021__etailer--links img {
        width: 12em;
    } */

#canvas1 {
  position: absolute;
  transform: translate(-17%, 158%);
  z-index: 1;
}

@media (min-width: 1444px) and (max-width: 1576px) {
  .project .hatch__flexBoxTxt-title {
    font-size: 16px;
  }
}

@media (min-width: 1180px) and (max-width: 1443px) {
  .project .hatch__flexBoxTxt-title {
    font-size: 12px;
  }
}

@media (min-width: 1034px) and (max-width: 1179px) {
  .project .hatch__flexBoxTxt-title {
    font-size: 12px;
  }
}

@media (min-width: 838px) and (max-width: 1033px) {
  .project .hatch__flexBoxTxt-title {
    font-size: 12px;
  }

  .filter-group {
    flex-wrap: wrap;
    justify-content: center;
  }

  .project .tab {
    display: none;
  }
}

@media (min-width: 687px) and (max-width: 837px) {
  .project .hatch__flexBoxTxt-title {
    font-size: 12px;
  }

  .filter-group {
    flex-wrap: wrap;
    justify-content: center;
  }

  .project .tab {
    display: none;
  }

  .project .hatch__slider .hatch__box {
    position: relative;
    width: calc(33% - 20px);
  }

  /* .main {
            min-width: unset;
        } */

  #canvas1 {
    transform: translate(-17%, 220%);
  }
}

@media (min-width: 400px) and (max-width: 686px) {
  .project .hatch__flexBoxTxt-title {
    font-size: 12px;
  }

  .filter-group {
    flex-wrap: wrap;
    justify-content: center;
  }

  .project .tab {
    display: none;
  }

  .project .hatch__slider .hatch__box {
    position: relative;
    width: calc(52% - 20px);
  }

  /* .main {
            min-width: unset;
        } */

  #canvas1 {
    transform: translate(-17%, 220%);
  }

  .content_grid,
  .content_grid2,
  .content_grid3,
  .content_grid4 {
    grid-template-columns: 0px auto 0px;
  }
}

@media (min-width: 320px) and (max-width: 399px) {
  .project .hatch__flexBoxTxt-title {
    font-size: 12px;
  }

  .filter-group {
    flex-wrap: wrap;
    justify-content: center;
  }

  .project .tab {
    display: none;
  }

  .project .hatch__slider .hatch__box {
    position: relative;
    width: calc(105% - 20px);
  }


  #canvas1 {
    transform: translate(-17%, 220%);
  }

  .content_grid,
  .content_grid2,
  .content_grid3,
  .content_grid4 {
    grid-template-columns: 0px auto 0px;
  }
}
