body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'IBM Plex Sans', sans-serif;
  background: white;
}
a {
  text-decoration:none;
}

.topmenu{
  width: 100%;
  height: 10vh;
  background: black;
  position: fixed;
  overflow: hidden;
  z-index: 15;
  top:0;
  display: flex;
  align-items: center;
}
 .home{
   width: 65px;
   height: 65px;
   position: relative;
   background-image: url('./img/home.svg');
   background-position: center;
   background-repeat: no-repeat;
   background-size: contain;
   left: 3.5vw;
   /* top: 1.5vh; */
 }
.sidemenu{
  width: 45px;
  height: 45px;
  position: relative;
  left: calc(100% - 160px);
  /* top: -0.5vh; */
  background-image: url('./img/sidemenu.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}


.background{
  display: none;
  height:100vh;
  width:100%;
  position:fixed;
  z-index: 11;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.form{
  font-family: 'IBM Plex Sans';
font-style: normal;
font-weight: 500;
font-size: 50px;
line-height: 48px;
text-align: center;
margin-top: 40px;
}
.question{
  display: none;
  width: 43vw;
  height:73vh;
  z-index: 15;
  background-color: white;
  border: 2px solid #000000;
  color: black;
  position: fixed;
  top:14vh;
  left: calc( 50% - 21.5vw);
}
.forma_after{
  display: none;
  width: 45vw;
  height:15vh;
  z-index: 15;
  background-color: black;
  border: 2px solid #000000;
  color: white;
  position: fixed;
  padding: 20px;
  top: calc( 50% - 12vh);
  left: calc( 50% - 21.5vw);
}
.forma{
  display: none;
  width: 43vw;
  height:78vh;
  z-index: 15;
  background-color: white;
  border: 2px solid #000000;
  color: black;
  position: fixed;
  top:14vh;
  left: calc( 50% - 21.5vw);
  /* display: flex;
  flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-direction: column; */
}
.form-split {
    width: 480px;
    position: relative;
    margin: 12px auto;
    display: flex;
    justify-content: space-between;
  }
  .cross{
    width: 3vh;
    height: 3vh;
    position: relative;
    left: 38vw;
    top: 3vh;
    background-image: url('./img/crossb.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
  }

.big{
  font-family: 'IBM Plex Sans';
font-style: normal;
font-weight: 500;
font-size: 50px;
line-height: 48px;
text-align: center;
margin-top: 40px;
}
input[type="text"], input[type="email"], input[type="tel"], .put{
  display: block;
    width: 480px;
    position: relative;
    margin: 10px auto;
    height: 52px;
    padding: 0 18px;
    font-family: 'IBM Plex Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 26px;
    border-radius: 0px;
    border: 2px solid #000000;
}
.put {
  display: inline-block;
  width: 230px;
  margin: 0;
}
.fo {
    display: block;
    width: 480px;
    position: relative;
    margin: 18px auto 12px auto;
}
label{
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  margin-left: 18px;
}
 .checkbox-list {
    width: 480px;
    position: relative;
    display: block;
    margin: 18px auto;
  }
  .custom{
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom+label {
  display: inline-flex;
  align-items: center;
  user-select: none;
}
.custom+label::before {
  content: '';
  color: white;
  background-color: white;
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  flex-grow: 0;
  border: 2px solid #000000;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  cursor: pointer;
}

.custom:not(:disabled):not(:checked)+label:hover::before {
  border-color: #000000;
  background-color: #000000;
}
.custom:checked+label::before {
  border-color: #000000;
  background-color: #000000;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

  .radio-list{
    position: relative;
    display: inline-block;
    width: 200px;
    margin-left: 0;
    margin-top: 0;
  }
  .list{
    margin-left: 18px auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
  }
  .list1, .list2{
  display: flex;
  flex-direction: column;
    width: 200px;
  }
  .list2{
    margin-left: 12px;
  }
  .continue, .complete{
    left: calc(21.5vw - 4.5em);
  }

.radio-list{
  width: 450px;
margin-left:50px;
margin-top: 28px;

}
.rcustom{
   position: absolute;
   z-index: -1;
   opacity: 0;
 }
 /* для элемента label связанного с .custom-radio */
 .rcustom+label {
   display: inline-flex;
   align-items: center;
   user-select: none;
 }
 /* создание в label псевдоэлемента  before со следующими стилями */
 .rcustom+label::before {
   content: '';
   display: inline-block;
   width: 1em;
   height: 1em;
   flex-shrink: 0;
   flex-grow: 0;
   border: 2px solid black;
   border-radius: 50%;
   margin-right: 0.5em;
   background-repeat: no-repeat;
   background-position: center center;
   background-size: 50% 50%;
 }
 /* стили при наведении курсора на радио */
 .rcustom:not(:disabled):not(:checked)+label:hover::before {
  background-color: #FF6100;
  border: 2px solid black;
 }
 /* стили для активной радиокнопки (при нажатии на неё) */

 .rcustom:checked+label::before {
   border-color: #FF6100;
   background-color: #FF6100;
      border: 2px solid black;
   background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='000000'/%3e%3c/svg%3e");
 }






.screen{
  width: 100%;
  height:90vh;
  position: absolute;
  top: 10vh;
  overflow: hidden;
}
.star{
  width: 100%;
  height: 69%;
  background-image: url('./img/staryellow2.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}

.line1{
  position: absolute;
  top:0vh;
  height:130px;
  width: auto;
  display: flex;
  align-items: center;
  animation: linemove1 20s infinite 0s linear;
}
@keyframes linemove1 {
  0%{ left: 0px;}
  100%{left: -2832px;}
}
@keyframes linemove2 {
  0%{ left: 0px;}
  100%{left: -3150px;}
}
.line2{
  position: absolute;
  top:130px;
  width: 6300px;
  height: 130px;
  display: flex;
  align-items: center;
  animation: linemove2 24s infinite -.5s linear;
}
.line1:hover{
    animation-play-state: paused;
}
.line2:hover{
    animation-play-state: paused;
}




.rectangles{
  width:138px;
  height: 130px;
  display: inline-block;
}
.rec{
  display: inline-block;
  height: 130px;
  width: 21px;
  background-color: black;
  position: relative;
  margin-left: 20px;
}
.none{
    margin-left: 13px;
}
.big{
  color: black;
  font-family: 'IBM Plex Sans';
font-style: normal;
font-weight: 700;
font-size: 70px;
line-height: 120px;
margin: auto 10px;
text-align: center;
border-bottom: 8px transparent solid;

}

.block:hover, .big:hover{
  color: #FFD101;
  cursor: pointer;
    /* border-bottom: 8px #FFD101 solid; */
    background-color: black;

}

.block{
  display: inline-block;
  height: 130px;
  background-color: none;
}
.text{
  font-size: 24px;
  line-height: 26px;
}
.v1, .v2, .v3, .v4{
  font-size: 24px;
  line-height: 26px;
  display: none;
}
.comment{
  display: inline-block;
  position: relative;
  left: 3.5vw;
  font-size: 24px;
  width: 13em;
  top: 2em;
}
.content{
  display: flex;
  align-items: center;
  position: relative;
  bottom: 25vh;
  left: 3.5vw;
}
.image{
  width: 460px;
  height: 460px;
  position: relative;
  display: inline-block;

}

.art1{
  display: none;
  width: inherit;
  height: inherit;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('./img/art2.png');
}
.sewing1{
  display: none;
  width: inherit;
  height: inherit;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('./img/shityo2.png');
}
.vyish1{
  display: none;
  width: inherit;
  height: inherit;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('./img/vyshv2.png');
}
.vuaz1{
  display: none;
  width: inherit;
  height: inherit;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('./img/vuaz2.png');
}
.origami1{
  display: none;
  width: inherit;
  height: inherit;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('./img/origami2.png');
}
.svechi1{
  display: none;
  width: inherit;
  height: inherit;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('./img/svechi2.png');
}
.milo1{
  display: none;
  width: inherit;
  height: inherit;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('./img/milo2.png');
}
.makrame1{
  display: none;
  width: inherit;
  height: inherit;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('./img/makrame2.png');
}
.gonch1{
  display: none;
  width: inherit;
  height: inherit;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('./img/gonch2.png');
}
.biser1{
  display: none;
  width: inherit;
  height: inherit;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('./img/biser2.png');
}
.active{
  display:block;
}

.button{
  font-size: 24px;
  width: 9em;
  height: 3em;
  color: white;
  background-color: black;
  border: 2px solid rgba(0, 0, 0, 1);
  position: relative;
  top: 1.5em;
  z-index: 10;
  text-align: center;
  vertical-align:middle;
  display:table-cell;
}
.button:hover{
  color: black;
  background-color: white;
  border: 2px solid rgba(0, 0, 0, 1);
  transition: .5s;
  cursor: pointer;
}
.continue{
  top: 60px;
}

.footer, .footer2{
  height: 30vh;
  width: 100%;
  background-color: black;
  position: absolute;
  top:100vh;
  overflow: hidden;
}
.footer2{display:none;}
.hse{
  width:237px;
  height: 95px;
  position: relative;
  left: 3.5vw;
  top: 7.5vh;
}
.cont{
font-size: 24px;
line-height: 33px;
color: #FF6100;
}
.contacts{
position: absolute;
font-size: 24px;
width:12em;
left: 38vw;
top: 6.5vh;
display: inline-block;
}
.author{
position: absolute;
font-size: 24px;
width:12em;
left: 74.5vw;
top: 6.5vh;
display: inline-block;
}
