body.unscroll{overflow: hidden; height: 100%;}
button:focus,select:focus,option:focus{outline:none;}
input,select,option,textarea{font-family: 'Manrope', sans-serif;}
a{color:#000;text-decoration: none;}
.swiper-wrapper{height: 570px !important;}
.prds{overflow: hidden;}
#menu{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 0;
  box-sizing: border-box;
  display: flex;
  clip-path: circle(0%);
  padding:25vh 10vw 5vh 10vw;
  background: #12FF93;
  transition: clip-path 1s;
  overflow-y: auto;
}
#menu.open{clip-path: circle(100%); z-index: 98;}
#menu .menu{
  display: flex;
  flex-flow: column;
  justify-content: center;
  width:100%;
  height: 100%;
  margin: 0 auto;
  max-width: 1920px;
  padding: 0 60px;
  box-sizing: border-box;
  position: relative;
  z-index: 3;
  overflow: auto;
  scrollbar-color: rgb(63, 63, 63) #00e07b;
  scrollbar-width: thin;
}

/* width */
#menu .menu::-webkit-scrollbar {
  width: 5px;
}

/* Track */
#menu .menu::-webkit-scrollbar-track {
  background: #00e07b;
}

/* Handle */
#menu .menu::-webkit-scrollbar-thumb {
  background: rgb(63, 63, 63);
}



#menu::before{
  content: '';
  position: absolute;
  width: 60%;
  top:20%;
  right: 20%;
  height: 65%;
  background: url(/img/menu-bg.svg) center no-repeat;
  background-size: contain;
}
#menu::after{
  content: '';
  position: absolute;
  width: 60%;
  height: 50%;
  max-width: 370px;
  max-height: 220px;
  top:50%;
  right: 30%;
  transform: translate(50%, -50%);
  background: url(/img/menu-wn.svg) center no-repeat;
  background-size: contain;
}
#menu .menu .srv, #menu .menu .lnk{
  display: flex;
  flex-flow: column;
}
#menu .menu .srv{margin-bottom: 100px;}
#menu .menu .srv a{
  width: fit-content;
  text-decoration: none;
  font-size: 43px;
  line-height: 1.36em;
  font-weight: 300;
  color:#000;
  padding-left: 30px;
  position: relative;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
}
#menu .menu .srv a::before{
  left: 8px;
  top: 10%;
  height: 80%;
  width: 4px;
  background: #000;
  position: absolute;
  transform: skewX(-20deg);
  content: '';
  transition: all 0.3s ease-in-out;
}
#menu .menu .lnk a{
  width: fit-content;
  text-decoration: none;
  font-size: 30px;
  line-height: 2em;
  font-weight: 800;
  color:#000;
  transition: all 0.3s ease-in-out;
}
#menu .menu .lnk a{
  color:#000;
  font-weight: 800;
  font-size:44px;
  line-height: 1.16em;
  text-decoration: none;
  margin-bottom: 30px;
  width: fit-content;
  transition: all 0.3s ease-in-out;
}
#menu .menu .srv strong, #menu .menu .lnk strong{
  color: #00C26A;
  font-size: 34px;
  line-height: 1.36em;
  font-weight: 600;
  margin-bottom: 30px;
}
#menu .menu a:hover{ color: #F9512D;}
#menu .menu .srv a:hover::before{background: #F9512D;}
html,body{
  margin:0;
  padding: 0;
  min-height: 100%;
  height: 100%;
  font-family: 'Manrope', sans-serif;
}
header{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  padding: 40px 60px;
  box-sizing: border-box;
  width: 100%;
  max-width: 1920px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
header .lg img{max-height: 48px;}
header .mnbtn{
  width: 28px;
  height: 25px;
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  cursor: pointer;
}
header .mnbtn span{
  height: 3px;
  background: #000;
  width: 100%;
  opacity:1;
  transform: rotate(0deg) translate(0,0);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
header .mnbtn.open span:nth-child(1){opacity: 0;}
header .mnbtn.open span:nth-child(2){
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header .mnbtn.open span:nth-child(3){
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg) translate(-7px, -8px);
}
header .tpmn{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
header .nwprjt{
  margin-left: 45px;
  background: #000;
  color:#12FF93;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.49px;
  text-decoration: none;
  padding:10px 20px 10px 45px;
  position: relative;
}
header .nwprjt::before{
  content: '+';
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  left: 12px;
  font-size: 31px;
  line-height: 31px;
}

.hmcover{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgb(156,241,202);
  background: linear-gradient(153deg, rgba(156,241,202,1) 0%, rgba(18,255,147,1) 100%);
  z-index: 1000;
  pointer-events: none;
}

.hmcover.scale{
  transform: scale(2);
  transition: all 0.5s ease-in-out;
}

.hmcover img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate( -50%, -50%);
  max-width: 100%;
  box-sizing: border-box;
}
.fltab{
  width: 100vw;
  width: 100%;
  /*max-width:100%;*/
  min-height: 100%;
  padding: 130px 20px 50px 20px;
  margin: 0;
  overflow: hidden;
  box-sizing: border-box;
}
.fltab.tab5{
  background: #fff;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  z-index: 8;
  position: relative;

}
.fltab.tab5 .ttl{
  padding: 50px 20px 20px 20px;
  box-sizing: border-box;
  background-image:url(/img/bg-contact-bottom.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  background-size: contain;
  text-align: center;
  max-height: 40vh;
  max-height: 48vh;
  position: relative;
  z-index: 1;
}
.fltab.tab5 .ttl::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:url(/img/bg-contact-bottom-hvr.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fff;
  z-index: 2;
  transition: ease 0.25s;
  opacity: 0;
}
.fltab.tab5 .ttl.mo::before{opacity: 1 !important;}
.fltab.tab5 .ttl h3{
  font-size: 45px;
  line-height: 1.18em;
  font-weight: 800;
  color: #000000;
  padding: 0;
  margin: 0 0 22px 0;
  position: relative;
  z-index: 3;
}
.fltab.tab5 .ttl a{
  cursor: pointer;
  background: #000000;
  color: #12ff93;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  padding: 22px 38px 22px 62px;
  letter-spacing: 0.58px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  text-align: center;
  transition: ease 0.25s;
}

.fltab.tab5 .ttl a:hover,
header .nwprjt:hover{
  background: #12FF93 ;
  color: #000000;
}

.fltab.tab5 .ttl a:hover::before,
header .nwprjt:hover::before{
  color: #000000;
}
.fltab.tab5 .ttl a::before{
  content: '+';
  color:#12ff93;
  font-size: 42px;
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  left: 20px;
}
.fltab.tab5 .boxes{
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-flow:row nowrap;
  min-height: 48vh;
}
.fltab.tab5 .box{
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  padding:0;
  box-sizing: border-box;
  position: relative;
}
.fltab.tab5 .box:first-child{justify-content: space-between; padding: 30px 20px 45px 20px;}
.fltab.tab5 .box form{display: flex; flex-flow: row nowrap; align-items: center; justify-content: space-between; margin-bottom: 90px;}
.fltab.tab5 .box .form_box{display: flex; flex-flow: column nowrap;}
.fltab.tab5 .box .form_box strong{font-size: 24px;}
.fltab.tab5 .box input[type=email]{
  background: transparent;
  border:none;
  border-bottom: 2px solid #333;
  flex-grow: 1;
  padding: 15px 0;
  box-sizing: border-box;
  font-size: 23px;
  color:#333;
  outline: none;
}
.fltab.tab5 .box input[type=email]:focus{outline: none;}
.fltab.tab5 .box form button{
  width: 15px;
  height: 15px;
  position: relative;
  border: none;
  background: transparent;
  cursor: pointer;
}
.fltab.tab5 .box form button::before{
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: transparent;
    border-top: 4px solid #000;
    border-right: 4px solid #000;
}
.fltab.tab5 .box .cnt h3{
  font-size: 24px;
  line-height: 1.4em;
  margin: 0;
  padding: 0;
}
.fltab.tab5 .box .cnt p{
  padding: 10px 0;
  margin: 0;
  font-size: 20px;
  line-height: 1.3em;
}
.fltab.tab5 .boxl{
  flex:0 0 30%;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
}
.fltab.tab5 .boxm{
  flex:0 0 20%;
  transition: all 0.5s ease-in-out;
}
.fltab.tab5 .boxm:hover{background: #12FF93;}

.fltab.tab5 .boxl:last-child{background: #000; color:#fff;}
.fltab.tab5 a.box{
  font-weight: 800;
  font-size: 32px;
  line-height: 1.05em;
}
.fltab.tab5 a.box span{
  position: absolute;
  bottom:17%;
  min-height: 2.1em;
  left:5%;
  padding-top: 40px;
}
.fltab.tab5 a.box span::before{
  content: '/';
  font-weight: 800;
  font-size: 42px;
  top:-15px;
  left: 0;
  color:#333;
  position: absolute;
}
.fltab.tab5 a.box::after{
  content: '';
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  border-top: 4px solid #000;
  border-right: 4px solid #000;
  top: 45px;
  right: 50px;
  background: transparent;
  position: absolute;
  display: none;
}
.fltab.tab5 a.boxl::after{
  content: '';
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  top:45px;
  right: 50px;
  background: transparent;
  position: absolute;
  display: none;
}
.fltab.tab5 .boxm:hover::after,
.fltab.tab5 .boxl:hover::after{display: unset;}


.fltab.tab5 .boxl:last-child span{
  left:18%;
  max-width: 50%;
}
.fltab.tab5 a.box:last-child span::before{color:#fff;}

#cookies{
  z-index: 100;
  width: 100%;
  max-width: 570px;
  padding: 20px 25px;
  box-sizing: border-box;
  background: #000;
  position: fixed;
  left: 4%;
  bottom: 0;
  border-radius: 10px 10px 0 0;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  color: #F9F6F2;
}
#cookies .cookie_img{
  width: 100%;
  max-width: 60px;
  font-size: 0;
}
#cookies_text{
  padding: 0 25px 0 15px;
  box-sizing: border-box;
  flex-grow: 1;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: center;
}

#cookies_text strong{
  width: 100%;
  font-size: 19px;
  line-height: 20px;
  margin: 0 0 4px 0;
  font-weight: 800;
}
#cookies_text p{
  width: 100%;
  font-size: 13px;
  line-height: 20px;
  margin: 0;
  font-weight: 200;
}

#cookies_buttons{
  max-width: 180px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: space-between;
}
#cookies_buttons a{
  background: transparent;
  color: #F9F6F2;
  font-size: 13px;
  line-height: 20px;
  margin: 0;
  font-weight: 200;
}
#cookies_buttons a:first-of-type{
  margin: 0 30px 0 0;
}


@media only screen and (max-width: 1920px){
  #menu .menu{padding: 0;}
}
@media only screen and (max-width: 1500px){
  .fltab.tab5{padding: 100px 20px 50px 20px;}

}
@media only screen and (max-width: 1300px){
  .fltab{padding: 130px 20px 50px 20px;}
}
@media only screen and (max-width: 1100px){

  .fltab.tab5 .boxes{
    flex-flow: row wrap;
    margin: 30px auto 30px auto;
  }
  .fltab.tab5 .boxl{
    order: 4;
  }
  .fltab.tab5 a.boxl{
    order: 3;
  }
  .fltab.tab5 .boxm{
    order: 1;
    width: 50%;
    flex: 0 0 50%;
  }
  .fltab.tab5 a.box span{
    position: relative;
    padding: 50px 20px 50px 30px;
    bottom: unset;
    left: unset;
    min-height: unset;
  }
  .fltab.tab5 a.box span::before {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
  }
  .fltab.tab5 .boxl:last-child{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 50px auto;
  }
  .fltab.tab5 .boxl:last-child span{
    left: unset;
    max-width: 100%;
    padding: 30px 20px 30px 30px;
  }

  .fltab.tab5 .boxl{flex: 0 0 100%; flex-flow: row nowrap; justify-content: space-between; align-items: center;}
  .fltab.tab5 .box .form_box{flex: 0 0 40%;}
  .fltab.tab5 .box .form_box input{max-width: unset;}
  .fltab.tab5 .box .cnt{flex: 0 0 60%; text-align: center;}
}

@media only screen and (max-width: 900px){
  .fltab.tab5 a.box{font-size: 24px;}
  .fltab.tab5 .boxl:last-child span{
    padding: 20px 20px 20px 30px;
  }
}
@media only screen and (max-width: 800px){
  #cookies{
    max-width: 100%;
    width: 100%;
    left: 0;
    padding: 15px 20px;
  }
  #cookies .cookie_img{
    max-width: 50px;
  }
  #cookies_text strong {
    font-size: 17px;
    line-height: 18px;
  }
}
@media only screen and (max-width: 700px){

  .fltab.tab5 .boxl{flex: 0 0 100%; flex-flow: column nowrap; justify-content: unset; align-items: center;}
  .fltab.tab5 .box .form_box{width: 100%; max-width: 450px; margin: 0 auto;}
  .fltab.tab5 .box .cnt{width: 100%; }
  .fltab.tab5 .box input[type=email]{font-size: 18px;}
}
@media only screen and (max-width: 640px){
  header{padding: 20px 30px;}
  header .nwprjt{display: none;}
  .fltab.tab5 .ttl h3{font-size: 32px;}
  .fltab.tab5 .boxl,.fltab.tab5 .boxm{flex: 0 0 100%; align-items: center;}
  .fltab.tab5 .boxm{
    margin: 0 auto 10px auto;
    background: #12FF93;
  }
  .fltab.tab5 a.box::after,
  .fltab.tab5 a.boxl::after{
    display: block;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
  }

  .fltab.tab5 a.box span{position: relative; padding: 20px;}
  .fltab.tab5{height: auto;}
  .fltab.tab5 .boxes{height: auto;}

  #menu .menu{justify-content:flex-start;}
  #menu .menu .srv{margin-bottom: 50px;}
  #menu::after{right: 50%; width: 50%;}
  #menu .menu a{font-size: 24px;}
  #menu .menu .srv strong, #menu .menu .lnk a{font-size: 26px;}
  .fltab.tab5 .box form button{
    width: 12px;
    height: 12px;
  }
}
@media only screen and (max-width: 600px){
  .fltab.tab5 a.box::after,
  .fltab.tab5 a.boxl::after{
    display: none;
  }
  .fltab.tab5 a.box:hover::after,
  .fltab.tab5 a.boxl:hover::after{display: none;}
}
@media only screen and (max-width: 480px){
  #menu .menu .srv strong, #menu .menu .lnk a{font-size: 22px;}
  #menu .menu a{font-size: 20px;}
  #menu .menu .srv{margin-bottom: 30px;}
  #menu .menu .srv a{font-size: 30px;}
  header{padding: 25px 20px;}
  header .lg img{max-height:34px;}
  .fltab.tab5 .ttl h3{font-size: 25px;}
  .fltab.tab5 .ttl a{padding: 15px 22px 15px 52px; font-size: 18px;}
  .fltab.tab5 .ttl a::before{font-size: 32px;}
  .fltab.tab5 .box:first-child{padding: 0;}
  .fltab.tab5 .boxes .cnt{margin: 15px 0;}
  .fltab.tab5 .box .cnt p{font-size: 15px; line-height: 1.6em;}
  .fltab.tab5 .cprghts{color:#656565;font-size: 12px;text-align: center;}
  .fltab.tab5 a.box {
    font-size: 18px;
  }
}

@media only screen and (max-width: 450px){
  .fltab.tab5 a.boxl:last-child span::before{
    display: none;
  }
  .fltab.tab5 a.boxl:last-child span{text-align: center; padding: 20px 10px;}
  #cookies{
    flex-flow: column nowrap;
    text-align: center;
  }
  #cookies .cookie_img{margin: 0 0 10px 0;}
  #cookies_text{
    padding: 0;
    margin: 0 0 10px 0;
  }
  #cookies_buttons{
    flex-flow: column nowrap;
    align-items: center;
  }
  #cookies_buttons a:first-of-type{
    margin: 0 0 8px 0;
  }
}
@media (orientation: landscape) {
  #menu .menu{justify-content: flex-start;}
}
