* {
  box-sizing: border-box;
}


@font-face {
  font-family: 'gilroy';
  src: url("../../fonts/Gilroy/Gilroy-Light.eot");
  src: url("../../fonts/Gilroy/Gilroy-Light.eot") format("embedded-opentype"), url("../../fonts/Gilroy/Gilroy-Light.woff") format("woff"), url("../../fonts/Gilroy/Gilroy-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'gilroy';
  src: url("../../fonts/Gilroy/Gilroy-Regular.eot");
  src: url("../../fonts/Gilroy/Gilroy-Regular.eot") format("embedded-opentype"), url("../../fonts/Gilroy/Gilroy-Regular.woff") format("woff"), url("../../fonts/Gilroy/Gilroy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: 'gilroy';
  src: url("../../fonts/Gilroy/Gilroy-SemiBold.eot");
  src: url("../../fonts/Gilroy/Gilroy-SemiBold.eot") format("embedded-opentype"), url("../../fonts/Gilroy/Gilroy-SemiBold.woff") format("woff"), url("../../fonts/Gilroy/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: 'gilroy';
  src: url("../../fonts/Gilroy/Gilroy-ExtraBold.eot");
  src: url("../../fonts/Gilroy/Gilroy-ExtraBold.eot") format("embedded-opentype"), url("../../fonts/Gilroy/Gilroy-ExtraBold.woff") format("woff"), url("../../fonts/Gilroy/Gilroy-ExtraBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal; }

.open_popup_block_button {
  width: 320px;
  height: 80px;
  border-radius: 20px;
  background-color: #fdc021;
  position: fixed;
  z-index: 20;
  right: 3%;
  bottom: 6%;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 10px;
  transition: all 0.3s;
  transition-delay: 0.5s;
  z-index: 1000;
}

.open_popup_block_button:hover {
  background-color: #e9a902;
}

.open_popup_block_button .open_popup_block_button_logo {
  width: 75px;
  flex-shrink: 0;
  margin-right: 10px;
}

.open_popup_block_button .open_popup_block_button_logo img {
  display: block;
  width: 100%;
  height: auto;
}

.open_popup_block_button .open_popup_block_button_text {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: center;
  height: 100%;
  flex-grow: 1;
  border-radius: 15px;
  font-size: 17px;
  font-weight: 400;
  box-shadow: 0 0 8px 0 #a3a3a3;
  font-family: 'gilroy';
  color: #000;
}

.open_popup_block_button_hide {
  transform: scale(0);
  transform-origin:  bottom right;
  transition-delay: 0s;
}

.popup_block {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  color: #000;
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  transition-delay: 0.5s;
  z-index: 1000;
}

.popup_block .popup_content {
  width: 100%;
  max-width: 1000px;
  max-height: 540px;
  height: 100%;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin: 20px;
}

.popup_block .popup_content .close_popup_button {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: all 0.2s;
}

.popup_block .popup_content .close_popup_button img {
  display: block;
  height: auto;
  width: 100%;
}

.popup_block .popup_content .close_popup_button:hover {
  transform: rotate(90deg) scale(1.2);
}

.popup_block .popup_content .popup_content_image {
  background-color: #fdc021;
  width: 45%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup_block .popup_content .popup_content_image img {
  display: block;
  height: auto;
  width: 100%;
}

.popup_block .popup_content .popup_content_text {
  background-color: #ffffff;
  flex-grow: 1;
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.popup_block .popup_content .popup_content_text .popup_logo {
  width: -moz-fit-content;
  width: fit-content;
}

.popup_block .popup_content .popup_content_text .popup_logo img {
  display: block;
  height: auto;
  width: 100%;
  max-width: 150px!important;
}

.popup_block .popup_content .popup_content_text .popup_description {
  font-weight: 700;
  font-family: 'gilroy';
  font-size: 33px;
  /* text-align: center; */
  line-height: 1.2;
  width: 100%;
  max-width: 390px;
  margin: 0;
}

.popup_block .popup_content .popup_button {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 100%;
  max-width: 390px;
  background-color: #fdc021;
  border-radius: 10px;
  font-weight: 700;
  font-family: 'gilroy';
  font-size: 25px;
  text-decoration: none;
  color: #000000;
  transition: all 0.2s;
}

.popup_block .popup_content .popup_button:hover {
  background-color: #e9a902;
}

.popup_block_hide {
  transform: scale(0);
  transform-origin:  bottom right;
  transition-delay: 0s;
}

@media only screen and (max-width: 1200px) {
  .open_popup_block_button {
    width: 65px;
    height: 65px;
    overflow: hidden;
    border-radius: 50%;
   left: 20px;
  	bottom: 7%;
    padding: 10px;
  }

  .open_popup_block_button .open_popup_block_button_logo {
    width: 100%;
  }

  .open_popup_block_button .open_popup_block_button_text {
    display: none;
  }

  .open_popup_block_button_hide {
    transform-origin:  bottom right;
  }

  .popup_block_hide {
    transform-origin:  bottom right;
  }
}

@media only screen and (max-width: 980px) {
  .popup_block .popup_content {
    max-height: 400px;
  }

  .popup_block .popup_content .close_popup_button {
    top: 20px;
    right: 20px;
    width: 25px;
    height: 25px;
  }

  .popup_block .popup_content .popup_content_image {
    width: 40%;
  }

  .popup_block .popup_content .popup_content_text {
    padding: 40px;
  }

  .popup_block .popup_content .popup_content_text .popup_logo img {
    max-width: 100px!important;
  }

  .popup_block .popup_content .popup_content_text .popup_description {
    font-size: 26px;
  }

  .popup_block .popup_content .popup_button {
    height: 50px;
    font-size: 20px;
  }
}

@media only screen and (max-width: 560px) {
  .popup_block .popup_content {
    max-height: 220px;
    border-radius: 10px;
    max-width: 320px;
  }

  .popup_block .popup_content .close_popup_button {
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
  }

  .popup_block .popup_content .popup_content_image {
    width: 40%;
  }

  .popup_block .popup_content .popup_content_text {
    padding: 20px 13px;
  }

  .popup_block .popup_content .popup_content_text .popup_logo img {
    max-width: 70px!important;
  }

  .popup_block .popup_content .popup_content_text .popup_description {
    font-size: 14px;
  }

  .popup_block .popup_content .popup_button {
    height: 30px;
    font-size: 13px;
  }
 .open_popup_block_button {

  	bottom: 20%;
 
  }
}

/*# sourceMappingURL=main.css.map */

.button-tender {
  display: none !important;
}