@import "fonts/fonts.css";
@import "text.css";
@import "calculator.css";

#alert{
  position: fixed;
}

/*div{border: 1px solid #f00;}*/

.guide{
  outline: 1px solid rgba(0, 220, 255, 0.3);
}

/*input:focus,
select:focus,
textarea:focus,
button:focus {
    background-color: transparent;
    outline: none;
}*/

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #0062da;
  color: #fff;
  font-family: 'Grandis';
  font-size: 12pt;
  font-weight: 500;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.fix{
  overflow: hidden;
}

*{
    box-sizing: border-box;
}

*::-webkit-scrollbar {
  width: 6px;
}
*::-webkit-scrollbar-track {
  width: 6px;
  background-color: black;
}
*::-webkit-scrollbar-thumb {
  background-color: rgba(255,255,255,0.4);
  border-radius: 20px;
}

a{
  color: #00ff9c;
  text-decoration: none;
}

.center{
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  left: 0;
  right: 0;
}

.green {
  color: #0f0;
}

.red {
  color: #f00;
}

.wrapper{
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 200px;
  margin-top: 160px;
}

.top-nav{
  padding: 0px 90px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 999;
}

.logo{
  width: 308px;
  height: 88px;
  background: url('../i/gabionlogo.svg') center center no-repeat;
  position: relative;
  z-index: 10;
}

.contacts a{
  font-size: 18pt;
  color: #fff;
}

.runline{
  width: 100%;
  height: 70px;
  line-height: 70px;
  background-color: #328eff;
  margin-bottom: 100px;
  font-family: 'Grandis Extended';
  font-size: 14pt;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  overflow: hidden;  
  white-space: nowrap;
  text-align: center;
  position: absolute;
  top: 0;
}

.runer {
  background: url('../i/48hours.svg') center center repeat-x;
  display: inline-block;
  padding-left: 0%;
  animation: css-animation-marquee 50s ease infinite;
  height: 70px;
  width: 300%;
}

@keyframes css-animation-marquee {  
  0% {  background-position: -990px 0; }
  50% {  background-position: 0px 0; }
  100% {  background-position: -990px 0; }
}

.title{
  font-family: 'Grandis Extended';
  font-weight: 900;
  font-size: 76pt;
  line-height: 66pt;
  margin-bottom: 40px;
  color: #fff;
}

.subtitle{
  font-family: 'Grandis Extended';
  font-weight: 500;
  font-size: 26pt;
  margin: 0;
  color: #fff;
}

h2{
  font-family: 'Grandis Extended';
  font-weight: 500;
  font-size: 26pt;
  margin: 0;
}

h1{
  text-align: center;
  font-size: 12pt;
  margin-bottom: 30px;
}


.centralbanner{
  width: 100%;
  height: 746px;
  padding: 90px;
  border-radius: 60px;
  background: #007EDF;
  background: linear-gradient(9deg, rgba(0, 126, 223, 1) 35%, rgba(187, 117, 254, 1) 100%);
  display: flex;
  position: relative;
  z-index: 2;
}

.centralbanner::before{
  content: ' ';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 60px;
  background: #007EDF;
  background: linear-gradient(9deg, rgba(0, 126, 223, 1) 35%, rgba(187, 117, 254, 1) 100%);
  position: absolute;
  z-index: -1;
  filter: blur(50px);
}

.cb_leftblock{
  width: 45%;
}

.cb_rightblock{
  width: 55%;
}

.cb_rightblock img{
  margin-left: auto;
  margin-right: auto;
  display: block;
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
  pointer-events: none;
}

.cb_descr{
  font-family: 'Grandis Extended';
  font-size: 28pt;
  font-weight: 600;
}

.accent{
  background-color: #e70067;
  padding: 10px 20px;
  border-radius: 20px;
  margin-left: 10px;
}

.cb_price{
  font-family: 'Grandis Extended';
  font-size: 28pt;
  font-weight: 600;
  margin-top: 20px;
}

.cb_price_descr{
  font-family: 'Grandis Extended';
  font-size: 12pt;
  font-weight: 300;
}

.buttons{
  display: flex;
  justify-content: center;
  margin: 60px 0px;
  user-select: none;
}

.buttongrn, .buttonorg{
  margin-left: 20px;
  margin-right: 20px;
  cursor: pointer;
}

.buttongrn{
  font-family: 'Grandis Extended';
  font-size: 18pt;
  font-weight: 600;
  color: #1b7955;
  background-color: #00ff9c;
  height: 78px;
  line-height: 78px;
  text-align: center;
  width: 330px;
  border-radius: 40px;
  box-shadow: 0px 0px 60px rgba(0, 255, 156, 1.0);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease; 
}

.buttongrn:hover{
  box-shadow: 0px 0px 0px rgba(0, 255, 156, 1.0);
    -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease; 
}

.wa{
  display: inline-block;
  background: url("../i/wa.svg") center center no-repeat;
  width: 30px;
  height: 30px;
  margin-left: 30px;
}

.buttonwa{
  background: url("../i/wa.svg") 20px center no-repeat;
  background-size: 40px;
  padding-left: 74px;
  display: flex;
  align-items: center;
  font-size: 14pt;
  border: 5px solid #00e676;
  width: 220px;
  height: 76px;
  border-radius: 40px;
  margin-left: 20px;
  margin-right: 20px;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.buttonwa:hover{
  color: #00e676;
  border: 5px solid #00e676;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease; 
}

.buttonwa a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}


.buttonorg{
  margin-left: 20px;
  margin-right: 20px;
  font-family: 'Grandis Extended';
  font-size: 18pt;
  font-weight: 600;
  color: #fff;
  border: 5px solid #ff6c00;
  height: 76px;
  line-height: 68px;
  text-align: center;
  width: 350px;
  border-radius: 40px;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease; 
}

.buttonorg:hover{
  color: #00ffcc;
  border: 5px solid #00ffcc;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease; 
}

.buttonorg a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.block{
  margin: 100px 0px;
  padding: 20px 90px;
}

.block_title{
  font-size: 44pt;
  font-family: 'Grandis Extended';
  font-weight: 800;
  color: #fff;
  max-width: 820px;
  line-height: 42pt;
  margin-bottom: 50px;
}

.block_title_half{
  font-size: 30pt;
  font-family: 'Grandis Extended';
  font-weight: 800;
  color: #fff;
  max-width: 700px;
  line-height: 42pt;
  margin-bottom: 50px;
}

.block_text{
  margin: 50px 0px;
  font-size: 18pt;
  font-family: 'Grandis';
  font-weight: 400;
  width: 60%;
}

.block_icons{
  display: flex;
  justify-content: space-between;
}

.icon{
  margin-top: 50px;
  width: calc(100% / 5 - 2%);
  height: 350px;
  padding: 0px 30px;
  border-radius: 60px;
  background: #4DA5E9;
  background: linear-gradient(203deg, rgba(77, 165, 233, 1) 0%, rgba(0, 126, 223, 1) 100%);
  font-family: 'Grandis';
  font-weight: 400;
  font-size: 16pt;
  text-align: center;
}

.ic{
  width: 100%;
  margin-top: 20px;
  height: 200px;
  background-position: center center;
  background-repeat: no-repeat;
}

.icon-text{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.ic1{
  background-image: url('../i/ic1.png');
}
.ic2{
  background-image: url('../i/ic2.png');
}
.ic3{
  background-image: url('../i/ic3.png');
  background-size: 100%;
}
.ic4{
  background-image: url('../i/ic4.png');
}
.ic5{
  background-image: url('../i/ic5.png');
}

.plates{
  display: flex;
  justify-content: space-between;
  margin: 50px 0px;
}

.plate{
  background-color: #007edf;
  border-radius: 54px;
  width: calc(100% / 3 - 40px);
  padding: 50px;
  text-align: center;
}

.plate_title{
  color: #94d0ff;
  font-size: 22pt;
  font-family: 'Grandis Extended';
  font-weight: 600;
}

.plate_middle{
  font-size: 28pt;
  font-family: 'Grandis Extended';
  font-weight: 700;
  margin: 40px 0px;
}

.plate_content{
  font-size: 12pt;
  font-family: 'Grandis';
  font-weight: 400;
}

.block_properties{
  width: 100%;
  border-radius: 54px;
  min-height: 300px;
  padding: 40px 60px;
  background: url('../i/back.webp') center right no-repeat;
  background-color: #007edf;
  font-size: 15pt;
  font-family: 'Grandis';
}

.block_properties dl{
  display: flex;
}

.block_properties dt{
  font-weight: 300;
  flex-basis: 18%;
}

.block_properties dd{
  font-weight: 500;
  flex-basis: 50%;
}

.faq{
  max-width: 1600px;
}

.faq-item{
  border: 3px solid #2688d5;
  padding: 20px 40px;
  border-radius: 30px;
  margin-bottom: 8px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  height: auto;
  user-select: none;
  position: relative;
}

.faq-item:hover{
  border: 3px solid #9fd5ff;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.faq-open{
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease; 
  background-color: #007edf;
  border: 3px solid #007edf !important;
  padding-bottom: 50px;
}

.faq-item-title{
  font-family: 'Grandis Extended';
  font-size: 22pt;
  font-weight: 600;
}

.faq-item-content{
  display: none;
  opacity: 0;
  height: 0;
  margin-top: 20px;
  font-family: 'Grandis';
  font-size: 14pt;
  font-weight: 400;
}

.faq-item.editable{
  outline-color: #ffbc00;
}

.faq-btns{
  display: flex;
}

.faq-edit{
  margin-right: 10px;
  display: block;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  width: 200px;
  padding: 10px 20px;
  cursor: pointer;
  text-align: center;
}

.faqdelete{
  margin-top: 50px;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.2);
  width: 200px;
  text-align: center;
}

.faq-handle{
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 30px;
  height: 30px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}

.hndlstr{
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
}

.faq-add, .faq-save{
  width: 300px;
  padding: 10px 20px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  margin-right: 10px;
  text-align: center;
  cursor: pointer;
  display: none;
}

.faq-save{
  border: none;
  background-color: rgba(255, 255, 255, 0.3);
}

.editmode{
  border: 2px solid rgb(255, 188, 0);
  background-color: rgb(255, 188, 0);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;

}

.modal-block{
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  display: none;
  overflow: hidden;
}

.modal-scrollBlock{
  width: 100%;
  z-index: 10000;
  height: 100vh;
  box-sizing: border-box;
  position: fixed;
  /*overflow-y: scroll;*/
  display: none;
  top: 0px;
}

.modal-back{
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
  opacity: 0;
  background-color: rgba(46, 59, 98, 0.3);
}

.modal-content h3{
  font-size: 24pt;
  margin-top: 10px;
  margin-bottom: 20px;
}

.modal-window{
  width: 460px;
  max-height: 490px;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 126, 223, 1);
  padding: 20px;
  border-radius: 42px;
  z-index: 9999;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: auto;
  margin-top: auto;
  opacity: 0;
  box-shadow: 0px 0px 80px rgba(155, 200, 255, 1.0);
  user-select: none;
  border: 22px solid rgba(200, 225, 255, 1.0);
}

.modal-close{
  background: url("../i/close.svg");
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 99000;
  top: -35px;
  right: -35px;
  cursor: pointer;
  opacity: 0.7;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.modal-close:hover{
  opacity: 1;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.modal-content{
  padding: 10px;
  text-align: center;
  padding-bottom: 20px;
  min-height: 330px;
}

.modal-content.center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.modal-glow{
  height: 1px;
  width: 90%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(21,119,97,1);
  box-shadow: 0px 0px 120px rgba(21,119,97,1.0);
}

.btnsend {
    margin-left: auto;
    margin-right: auto;
    font-family: 'Grandis Extended';
    font-size: 14pt;
    font-weight: 600;
    width: 250px;
    color: #1b7955;
    background-color: #00ff9c;
    height: 58px;
    line-height: 58px;
    text-align: center;
    border-radius: 40px;
    cursor: pointer;
    box-shadow: 0px 0px 60px rgba(0, 255, 156, 1.0);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.btnsend[data-enabled="disabled"] {
  opacity: .3;
  cursor: default;
}

.modal-ani{
  animation: animblur 0.4s ease-out forwards;
}

@-webkit-keyframes animblur {
  0% {
      backdrop-filter: blur(0px);
      -webkit-backdrop-filter: blur(0px);
  }
  100% {
     backdrop-filter: blur(9px);
     -webkit-backdrop-filter: blur(9px);
  }
}
@keyframes animblur {
  0% {
      backdrop-filter: blur(0px);
      -webkit-backdrop-filter: blur(0px);
  }
  100% {
     backdrop-filter: blur(9px);
      -webkit-backdrop-filter: blur(9px);
  }
}

#phone{
  border: none;
  outline: none;
  color: #2e334c;
  width: 80%;
  font-size: 18pt;
  border-radius: 16px;
  padding: 14px 18px;
  font-weight: 500;
  font-family: 'Grandis';
  text-align: center;
}

#addprices{
  width: 300px;
  padding: 10px 20px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  margin-top: 6px;
  margin-right: 10px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
}

#sendprices{
  margin: 40px auto;
  width: 200px;
  padding: 10px 20px;
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.3);
  text-align: center;
  cursor: pointer;
  display: inline-block;
}

.pricecontrol{
  width: 1500px;
  margin-right: auto;
  margin-left: auto;
}


@media only screen and (min-device-width: 320px) and (max-device-width : 667px){
  .centralbanner{
    padding: 20px;
    flex-wrap: wrap;
    border-radius: 30px;
    flex-direction: column-reverse;
    text-align: center;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .title {
    font-size: 30pt;
    line-height: 30pt;
  }  

  .subtitle {
    font-size: 16pt;
  }  

  .cb_leftblock{
    width: 100%;
  }

  .cb_rightblock{
    width: 100%;
    margin-bottom: 30px;
  }

  h2{
    font-size: 16pt;
  }

   .cb_descr{
    font-size: 16pt;
  }

  .accent{
    margin-left: 0;
    padding: 8px 14px;
  }

  .cb_price{
    font-size: 22pt;
  }

  .cb_price_descr{
    font-size: 10pt;
    margin-top: 10px;
  }

  .buttons{
    flex-wrap: wrap;
  }

  .buttongrn{
    width: 80%;
    margin-bottom: 20px;
  }

  .buttonorg{
    width: 80%;
    margin-bottom: 20px;
  }

  .block_icons{
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .icon{
    width: 45%;
    height: 220px;
    border-radius: 30px;
    font-size: 12pt;
    margin-top: 20px;
  }

  .ic{
    height: 110px;
    background-size: 100%;
  }

  .ic4{
    background-size: 80%;
  }

  .ic1, .ic5{
    background-size: 60% !important;
  }

  .block_title{
    padding: 20px;
    font-size: 22pt;
    line-height: 22pt;
    margin-bottom: 10px;
  }

  .block_text{
    width: 100%;
    padding: 20px;
    font-size: 14pt;
    margin: 0px 0px;
  }

  .plates{
    flex-wrap: wrap;
  }

  .plate{
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    margin-bottom: 20px;
    padding: 30px 20px;
  }

  .block{
    width: 100%;
    padding: 20px 0px;
    margin-top: 0px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
  }

  .block_properties{
    padding: 40px;
    border-radius: 24px;
    background-size: cover;
  }
  .block_properties dt {
    flex-basis: 100%;
  }
  .block_properties dd {
    flex-basis: 100%;
    margin-left: 0;
  }
  .block_properties dl{
    flex-wrap: wrap;
  }

  .block_title_half{
    font-size: 20pt;
    line-height: 20pt;
    padding: 20px;
    margin-bottom: 20px;
  }

  .plate{
    border-radius: 30px;
  }

  .plate_middle{
    font-size: 20pt;
    margin: 20px 0px;
  }

  .wrapper{
    margin-top: 100px;
  }

  img{
    max-width: 80%;
  }

  .top-nav{
    width: 100%;
    padding: 0px 30px;
    flex-direction: column;
  }

  .contacts{
    width: 100%;
    margin-top: 40px;
    text-align: center;
  }

  .pricecontrol{
    max-width: 100%;
  }

  .modal-close{
    top: 20px;
    right: 20px;
  }

  .modal-window{
    width: 90%;
  }

  .faq-btns{
    flex-wrap: wrap;
  }

   .faq-btns > *{
    flex-basis: 90%;
  }

  .faq-item{
    padding: 20px 30px;
  }

  .faq-item-title{
    font-size: 14pt;
  }

  .faq-item-content{
    font-size: 11pt;
  }

  .faq-edit, .faq-add, .faq-save{
    width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  #phone{
     width:100%;
  }
}

@media only screen and (min-device-width: 760px) and (max-device-width: 1440px){
  h1{
    font-size: 56pt;
    line-height: 56pt;
  }

  .centralbanner{
    padding: 60px;
    height: 680px;
  }

  .cb_leftblock{
    width: 50%;
  }

  .cb_rightblock{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .block_properties dd{
    flex-basis: 70%;
  }

  .plate {
    width: calc(100% / 3 - 10px);
    padding: 30px;
  }

  .block_icons{
    flex-wrap: wrap;
    justify-content: center;
  }

  .icon {
    margin: 10px;
    width: calc(100% / 3 - 2%);
  }
}