* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Prata", serif;
}

.burger-menu_button {
  position: relative;
  top: 0px;
  right: 25px;
  z-index: 30;
  width: 60px;
  height: 60px;
  transition: 0.4s;
}

.burger-menu_button:hover .burger-menu_lines {
  filter: brightness(0.7);
}

.burger-menu_lines::before,
.burger-menu_lines::after,
.burger-menu_lines {
  position: absolute;
  width: 35px;
  height: 3px;
  background-color: #000;
  transition: 0.4s;
}

.burger-menu_lines {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.burger-menu_lines::before {
  content: "";
  top: -12px;
}

.burger-menu_lines::after {
  content: "";
  top: 12px;
}

.burger-menu_active .burger-menu_lines {
  background-color: transparent;
}

.burger-menu_active .burger-menu_lines::before {
  top: 0;
  transform: rotate(45deg);
}

.burger-menu_active .burger-menu_lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.burger-menu_nav {
  padding-top: 80px;
  position: fixed;
  top: 0;
  z-index: 20;
  display: flex;
  flex-flow: column;
  height: 100%;
  background-color: #fff;
  overflow-y: auto;
  right: -100%;
  transition: 0.8s;
}

.burger-menu_active .burger-menu_nav {
  right: 0;
  transition: 0.4s;
  width: 100%;
}

.burger-menu_link {
  padding: 18px 40px;
  font-size: 26px;
  text-decoration: none;
  font-weight: 600;
  color: #000;
  font-family: "ScotchDisplayCond-Ft";
}
.burger-menu_link:hover {
  text-decoration: underline;
  color: #000;
}

.burger-menu_link:hover {
  filter: brightness(0.9);
}

.burger-menu_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
}

.burger-menu_active .burger-menu_overlay {
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-x: hidden;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  overflow: hidden;
  z-index: 10000000000000000;
}

.popup {
  border-radius: 5px;
  text-align: center;
  position: absolute;
  width: 640px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 50px 100px;
  box-sizing: border-box;
  background-color: #000;
  color: #fff;
  box-shadow: 0px 4px 8px 8px rgba(0, 0, 0, 0.16);
}

.popup h2 {
  font-weight: bold;
  font-size: 30px;
  line-height: 48px;
  margin-bottom: 10px;
}

.popup p {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
}

.popup .input-email {
  border: 3px solid var(--color-accent);
  box-sizing: border-box;
  border-radius: 25px;
  width: 432px;
  height: 52px;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  outline: none;
  border: 1px solid #000;
}

.popup .btn-email {
  background-color: #f7d61e;
  padding: 15px 25px;
  color: #000;
  border: none;
  display: inline-block;
  margin-top: 25px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 30px;
  border: none;
  width: 432px;
  height: 52px;
}

.popup a {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
  color: #000000;
  margin-top: -10px;
  display: block;
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 23px;
  height: 23px;
  cursor: pointer;
}

.close-popup:before {
  content: "";
  background-color: #000;
  position: absolute;
  height: 1px;
  width: 31px;
  top: 11px;
  left: -4px;
  transform: rotate(-45deg);
}

.close-popup:after {
  content: "";
  background-color: #000;
  position: absolute;
  height: 1px;
  width: 31px;
  top: 11px;
  transform: rotate(45deg);
  left: -4px;
}

@media screen and (max-width: 768px) {
  .popup {
    width: 90%;
    height: auto;
    font-size: 15px;
  }
}
.overlay-1 {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  overflow: hidden;
  z-index: 10000000000000000;
}

.popup-1 {
  text-align: center;
  position: absolute;
  width: 640px;
  left: 50%;
  top: 50%;
  height: 50%;
  transform: translate(-50%, -50%);
  padding: 50px 100px;
  box-sizing: border-box;
  background-color: #fff;
  color: #000;
  box-shadow: 0px 4px 8px 8px rgba(0, 0, 0, 0.16);
}

.popup-bg {
  height: auto;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 100px 70px;
  border-radius: 0px;
  background-color: rgb(31, 5, 5);
  border: 1px solid #990000;
}

.popup-bg img {
  margin-bottom: 65px;
}

.popup-bg h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.popup-bg span {
  font-size: 18px;
  font-weight: 400;
}

.close-popup-1 {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 23px;
  height: 23px;
  cursor: pointer;
}

.close-popup-1:before {
  content: "";
  background-color: #fff;
  position: absolute;
  height: 1px;
  width: 31px;
  top: 11px;
  left: -4px;
  transform: rotate(-45deg);
}

.close-popup-1:after {
  content: "";
  background-color: #fff;
  position: absolute;
  height: 1px;
  width: 31px;
  top: 11px;
  transform: rotate(45deg);
  left: -4px;
}

@media screen and (max-width: 768px) {
  .popup-1 {
    width: 90%;
    height: auto;
    font-size: 15px;
  }
}
.js-overlay-campaign-1 img {
  width: 100px;
  margin: 0 auto;
  display: block;
  margin-bottom: 30px;
}

@font-face {
  font-family: "KyivTypeSerif-Medium3";
  src: url(../fonts/KyivTypeSerif-Medium3.otf);
}
h1, h2, h3, h4, h4, h5, h6 {
  font-family: "Prata", serif;
}

body {
  background-color: #010000;
  color: #fff;
}

.a-btn {
  padding: 15px 25px;
  color: #fff;
  border: 1px solid #990000;
  text-decoration: none;
  font-weight: 600;
}
.a-btn:hover {
  color: #bcbcbc;
}

.a-bg {
  background: linear-gradient(90deg, #900 0%, #540000 100%);
  color: #fff;
}

h2 {
  margin-bottom: 35px;
  font-size: 40px;
  text-align: center;
}

.top {
  padding: 70px 0;
}

.main {
  background: url(../img/main-bg.jpg) center bottom/cover no-repeat;
}
.main .header {
  padding-bottom: 50px;
}
.main .header .header-top {
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main .header .header-top .logo img {
  width: 110px;
}
.main .header .header-top .header-block {
  display: flex;
  align-items: center;
}
.main .header .header-top .header-block .a-btn {
  display: inline-block;
  margin: 0 50px;
}
.main .header .header-top .lang a {
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  background-color: #990000;
  padding: 2px 5px;
}
.main .header .header-top nav ul {
  margin: 0;
  padding: 0;
  display: flex;
}
.main .header .header-top nav ul li {
  list-style-type: none;
}
.main .header .header-top nav ul li a {
  color: #fff;
  text-decoration: none;
  margin-left: 30px;
  font-size: 18px;
}
.main .header .header-content {
  background-color: #1C0505;
  background: url(../img/header-bg.png) center center/cover no-repeat;
  box-shadow: 0px 0px 105px 0px #3b0c0c;
  padding: 70px 50px;
  margin-top: 50px;
}
.main .header .header-content .text {
  width: 50%;
}
.main .header .header-content .text h1 {
  font-size: 45px;
  line-height: 60px;
  margin-bottom: 0;
}
.main .header .header-content .text p {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 50px;
}
.main .header .header-items {
  margin-top: 55px;
}
.main .header .header-items .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.main .header .header-items .items .item {
  border: 1px solid #990000;
  padding: 20px;
  text-align: center;
  padding-top: 30px;
}
.main .header .header-items .items .item .tp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.main .header .header-items .items .item .tp .p {
  font-weight: 500;
  font-size: 24px;
  margin: 0;
}
.main .header .header-items .items .item .tp .fg {
  width: 100%;
  border: 1px dashed #fff;
  opacity: 0.5;
  border-style: dashed;
  border-width: 1px;
  border-spacing: 5px;
  height: 1px;
  margin: 0 20px;
}
.main .header .header-items .items .item .tp img {
  width: 30px;
}
.main .header .header-items .items .item p {
  font-size: 22px;
}
.main .price {
  background: url(../img/work-bg.png) center center/cover no-repeat;
}
.main .price .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.main .price .items .item {
  background: linear-gradient(270deg, #2D1111 0%, #490909 100%);
}
.main .price .items .item h3 {
  font-family: "Nunito Sans", sans-serif;
  padding: 20px;
  padding-top: 30px;
  margin: 0;
  font-size: 30px;
  border-bottom: 1px solid rgba(243, 17, 17, 0.4);
}
.main .price .items .item .txt {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.main .price .items .item .txt h6 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 26px;
  opacity: 0.7;
  margin-bottom: 15px;
}
.main .price .items .item .txt h4 {
  font-family: "Nunito Sans", sans-serif;
  display: flex;
  align-items: center;
  font-size: 18px;
}
.main .price .items .item .txt h4 .fg {
  width: 10px;
  height: 10px;
  background-color: #990000;
  border-radius: 999px;
  margin-right: 10px;
}
.main .price .items .item .txt .mt {
  margin-top: 40px;
}
.main .price .items .item .txt .mt_2 {
  margin-top: 107px;
}
.main .price .items .item .txt .mt_3 {
  margin-top: 127px;
}
.main .price .items .item .txt .prc {
  font-size: 50px;
  margin-bottom: 15px;
}
.main .price .items .item .txt a {
  display: inline-block;
}

.work .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 30px 0;
}
.work .items .item {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work .items .item img {
  width: 100%;
}
.work .items .item .txt {
  position: absolute;
  text-align: center;
  top: 100px;
  width: 90%;
}
.work .items .item .txt h6 {
  font-size: 32px;
  margin-bottom: 20px;
}
.work .items .item .txt h3 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
}
.work .items .item .txt p {
  font-size: 20px;
  opacity: 0.8;
}

.reviews {
  background: url(../img/reviews.png) center center/cover no-repeat;
}
.reviews .slider-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.reviews .swiper-button-prev,
.reviews .swiper-button-next {
  background-color: transparent;
  border: none;
  position: static;
}
.reviews .swiper-button-prev svg,
.reviews .swiper-button-next svg {
  width: 30px;
  color: #bcbcbc;
}
.reviews .swiper-container {
  padding-bottom: 50px;
}
.reviews .card .block {
  height: 350px;
  border: 1px solid #990000;
  padding: 30px;
}
.reviews .card .tp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.reviews .card .tp h3 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  color: #bcbcbc;
}
.reviews .card .tp h4 {
  font-size: 70px;
  line-height: 40px;
  height: 10px;
  color: #bcbcbc;
}
.reviews .card p {
  margin: 0;
}

.text-block {
  background: url(../img/text-block.png) center center/cover no-repeat;
  padding: 200px 0;
}
.text-block .text {
  width: 60%;
  margin: 0 auto;
  text-align: center;
  font-size: 19px;
}
.text-block .text .txt-block {
  display: flex;
}
.text-block .text .txt-block img {
  width: 80px;
  height: 80px;
  border-radius: 999px;
}
.text-block .text .txt-block .fg {
  width: 1px;
  height: auto;
  background-color: #990000;
  margin: 0 20px;
}
.text-block .text .txt-block .p-g {
  margin: 0;
  text-align: left;
}

.faq .accordion {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.faq .accordion-item:first-of-type .accordion-button {
  color: #FFF;
  font-weight: bold;
}
.faq .accordion-button:not(.collapsed) {
  border-radius: 20px;
  background-color: transparent;
  border-radius: 0;
}
.faq .accordion-button:focus {
  box-shadow: none;
}
.faq .accordion-item {
  background: transparent;
  border-bottom: 2px solid #990000;
  padding: 10px 0;
}
.faq .accordion-button {
  background-color: transparent;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  font-size: 19px;
  font-family: "Nunito Sans", sans-serif;
}
.faq .accordion-body {
  padding: 10px 0;
}
.faq .accordion-button::after {
  content: "+";
  font-size: 40px;
  line-height: 20px;
  background: none;
  font-weight: 300;
  text-align: center;
  opacity: 0.6;
}
.faq .accordion-button:not(.collapsed)::after {
  content: "+";
  background: none;
  opacity: 1;
}

.form {
  background: url(../img/text-block_form.png) center center/cover no-repeat;
  padding: 250px 0;
}
.form h2 {
  margin-bottom: 10px;
  font-size: 50px;
}
.form p {
  font-size: 24px;
  margin: 15px 0;
}
.form form {
  max-width: 600px;
  margin: 0 auto;
  margin-top: 20px;
}
.form form .g {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.form form .input-email {
  padding: 10px;
  background-color: transparent;
  border: 1px solid #990000;
  margin-bottom: 20px;
}
.form form .input-email::-moz-placeholder {
  color: #bcbcbc;
}
.form form .input-email::placeholder {
  color: #bcbcbc;
}
.form form .btn-email {
  margin-top: 20px;
}

.footer {
  border-top: 1px solid #990000;
  padding-top: 30px;
  padding-bottom: 50px;
  margin-top: 20px;
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .container .logo img {
  width: 110px;
}
.footer .container .lang a {
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  background-color: #990000;
  padding: 2px 5px;
}
.footer .container nav ul {
  margin: 0;
  padding: 0;
}
.footer .container nav ul li {
  list-style-type: none;
}
.footer .container nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}
.footer .container .mail {
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #990000;
  font-size: 22px;
}
.footer .container .txt h3 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 20px;
  margin-bottom: 30px;
}
.footer .container .txt a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
}
.footer .container .txt a svg {
  width: 35px;
  margin-right: 20px;
}

.modal-content {
  background-color: rgb(31, 5, 5);
  border: 1px solid #990000;
  border-radius: 0;
}
.modal-content h5 {
  font-weight: bold;
  font-size: 27px;
}

.btn-close {
  background-color: #fff;
}

.modal-header {
  border-bottom: none;
}

.modal-body {
  padding: 20px;
}
.modal-body a {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 10px 0;
}

@media (max-width: 1400px) {
  .main .header .header-content .text h1 {
    font-size: 35px;
    line-height: 45px;
  }
  .main .header .header-content .text p {
    margin-top: 30px;
  }
  .work .items .item .txt p {
    font-size: 18px;
  }
  .text-block .text {
    font-size: 18px;
  }
  .form {
    padding: 180px 0;
  }
  .text-block {
    padding: 120px 0;
  }
}
@media (max-width: 1200px) {
  .main .header .header-content {
    margin-top: 30px;
    padding: 20px;
  }
  .main .header .header-content .text h1 {
    font-size: 27px;
    line-height: 35px;
  }
  .main .header .header-content .text p {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .main .header .header-items .items .item p {
    font-size: 18px;
  }
  .main .price .items .item .txt h4 {
    font-size: 16px;
  }
  .main .price .items .item .txt .prc {
    font-size: 35px;
  }
  .top {
    padding: 45px 0;
  }
  h2 {
    margin-bottom: 20px;
    font-size: 33px;
  }
  .work .items .item .txt {
    top: 30px;
  }
  .work .items .item .txt h3 {
    font-size: 22px;
  }
  .work .items .item .txt p {
    font-size: 16px;
  }
  .reviews .card .block {
    height: 330px;
  }
  .text-block .text {
    font-size: 16px;
  }
  .form h2 {
    font-size: 35px;
  }
  .form p {
    font-size: 18px;
  }
  .footer .container .mail {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .text-block {
    background: url(../img/text-block-m.png) center center/cover no-repeat;
  }
  .text-block .text {
    width: 90%;
  }
  .form {
    background: url(../img/text-block_form-m.png) center center/cover no-repeat;
  }
  .work .items {
    grid-template-columns: repeat(2, 1fr);
  }
  .main .header .header-top nav {
    display: none;
  }
  .footer .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .footer .container .mail {
    display: inline-block;
    width: auto;
  }
  .reviews .card .block {
    height: 250px;
  }
  .work .items .item .txt h6 {
    margin-top: 35px;
  }
  .work .items .item .txt h3 {
    font-size: 26px;
  }
  .work .items .item .txt p {
    font-size: 18px;
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .work .items .item .txt h6 {
    margin-top: 0;
  }
  .main .header .header-top .logo img {
    width: 70px;
  }
  .main .header .header-top .a-btn {
    padding: 10px 15px;
  }
  .main .header .header-content .text {
    width: 100%;
  }
  .main .header .header-items .items {
    grid-template-columns: repeat(1, 1fr);
  }
  .main .price .items {
    grid-template-columns: repeat(1, 1fr);
  }
  .main .price .items .item .txt .mt, .main .price .items .item .txt .mt-2 {
    margin-top: 30px;
  }
  .work .items .item .txt h6 {
    margin-bottom: 15px;
    font-size: 22px;
  }
  .work .items .item .txt h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .work .items .item .txt p {
    font-size: 14px;
  }
  .top {
    padding: 25px 0;
  }
  .text-block {
    padding: 150px 0;
  }
  .text-block .text {
    width: 80%;
  }
  .text-block .text .p-g {
    font-size: 14px;
  }
  .text-block .text .txt-block img {
    width: 55px;
    height: 55px;
  }
  .footer .container {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .footer .container .txt h3 {
    margin-bottom: 15px;
  }
  .reviews .card .block {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .main .header .header-content {
    padding: 30px 20px;
  }
  .main .header .header-top .lang a {
    font-size: 18px;
  }
  .form form .g {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 20px;
  }
  .form form .input-email {
    margin-bottom: 0;
  }
  .text-block {
    padding: 100px 0;
  }
  .popup-bg {
    width: 90%;
    padding: 35px;
  }
  .reviews .card .block {
    height: 330px;
  }
  .work .items .item .txt h6 {
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .reviews .card .block {
    height: 360px;
  }
  .work .items {
    grid-template-columns: repeat(1, 1fr);
  }
  .text-block {
    background: linear-gradient(122deg, #280505 0%, #4D0A0A 100%);
    padding: 30px 0;
    margin: 30px 0;
  }
  .text-block .text .p-g {
    font-size: 14px;
  }
  h2 {
    font-size: 25px;
  }
  .work .items .item img {
    width: 70%;
  }
  .work .items .item .txt {
    width: 60%;
  }
  .form h2 {
    font-size: 30px;
  }
  .text-block .text {
    width: 100%;
  }
  .main .price .items .item .txt .mt_3, .main .price .items .item .txt .mt_2 {
    margin-top: 30px;
  }
}
@media (max-width: 410px) {
  .reviews .card .block {
    height: 420px;
  }
}
@media (max-width: 370px) {
  .reviews .card .block {
    height: 460px;
  }
  .main .header .header-top .header-block .a-btn {
    margin: 0 30px;
  }
}
@media (max-width: 350px) {
  .reviews .card .block {
    height: 480px;
  }
}/*# sourceMappingURL=style.css.map */