* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "stolzl_regular";
}

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

.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: #fff;
  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: 150px;
  position: fixed;
  top: 0;
  z-index: 20;
  display: flex;
  flex-flow: column;
  height: 100%;
  background-color: #ef5050;
  overflow-y: auto;
  right: -100%;
  transition: 0.8s;
}

.burger-menu_active .burger-menu_nav {
  left: 0;
  transition: 0.4s;
  width: 50%;
}

.burger-menu_link {
  padding: 10px 35px;
  font-size: 22px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.burger-menu_link:hover {
  text-decoration: underline;
  color: #fff;
}

.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: #ef5050;
}

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

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

.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;
}

body {
  background-color: #EDE8F3;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@font-face {
  font-family: "stolzl_bold";
  src: url(../fonts/stolzl_bold.otf);
}
@font-face {
  font-family: "stolzl_book";
  src: url(../fonts/stolzl_book.otf);
}
@font-face {
  font-family: "stolzl_light";
  src: url(../fonts/stolzl_light.otf);
}
@font-face {
  font-family: "stolzl_medium";
  src: url(../fonts/stolzl_medium.otf);
}
@font-face {
  font-family: "stolzl_regular";
  src: url(../fonts/stolzl_regular.otf);
}
@font-face {
  font-family: "stolzl_thin";
  src: url(../fonts/stolzl_thin.otf);
}
h1, h2, h3, h4, h5, h6 {
  font-family: "stolzl_bold";
}

.header {
  padding-bottom: 30px;
  background-color: #EDE8F3;
}
.header .header-top {
  text-align: center;
  padding-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.header .header-top .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .header-top .logo img {
  width: 190px;
}
.header .header-top .social {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.header .header-top .social a img {
  width: 30px;
  border-radius: 10px;
}
.header .content {
  margin-top: 50px;
}
.header .content h1 {
  font-size: 50px;
  text-align: center;
}
.header .content .block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .content .block img {
  width: 37%;
}
.header .content .block .text {
  width: 31%;
  text-align: center;
}
.header .content .block .text .items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
.header .content .block .text .items .item {
  background-color: #ffffff;
  border-radius: 99px;
  display: flex;
  align-items: center;
  padding: 10px;
  text-align: left;
}
.header .content .block .text .items .item img {
  width: 60px;
  margin-right: 15px;
}
.header .content .block .text .items .item p {
  margin: 0;
  font-size: 15px;
}
.header .content .block .price {
  margin-bottom: 20px;
  margin-top: 50px;
}
.header .content .block .price h2 {
  color: #9391F0;
  font-size: 50px;
}
.header .content .block .price .price-none h6 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}
.header .content .block .price .price-none h5 {
  text-decoration: line-through;
}

.a-btn {
  background-color: #9391F0;
  border: 2px solid #9391F0;
  color: #ffffff;
  padding: 20px 70px;
  border-radius: 90px;
  display: inline-block;
  text-decoration: none;
  margin-bottom: 20px;
  transition: 0.3s all;
}
.a-btn:hover {
  background-color: #fff;
  color: #9391F0;
}

.mp {
  margin: 100px 0;
}

.h2 {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 35px;
  text-align: center;
}

.action {
  margin: 20px 0;
  background-color: #9391F0;
}
.action h3 {
  text-align: center;
  font-size: 30px;
  color: #fff;
  border-radius: 99px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.video-block .content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.video-block .content video {
  width: 400px;
  border-radius: 30px;
}
.video-block .content .items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 60px;
}
.video-block .content .items .item {
  background-color: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.video-block .content .items .item img {
  width: 40px;
  margin-bottom: 20px;
  margin-top: -50px;
}

.work .items {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.work .items .item {
  background-color: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.work .items .item .txt {
  background-color: #9391F0;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 99px;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -50px;
}
.work .items .item h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.work .items .item img {
  width: 40px;
  margin-bottom: 20px;
  margin-top: -50px;
}

.free .content {
  background-color: #9391F0;
  border-radius: 30px;
  padding: 30px;
  color: #fff;
  margin-top: 100px;
}
.free .content .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px 30px;
}
.free .content .items .item {
  text-align: center;
}
.free .content .items .item img {
  width: 120px;
  margin-bottom: 30px;
  margin-top: -90px;
}
.free .content .items .item h3 {
  font-size: 22px;
}

.phone-bottom {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  border: 1px solid #fff;
  border-radius: 99px;
}
.phone-bottom img {
  width: 65px;
}

.footer {
  background-color: #515151;
  padding: 30px 0;
  color: #fff;
}
.footer .footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
.footer .footer-top .logo img {
  width: 190px;
}
.footer .footer-top .social {
  display: flex;
  margin-top: 20px;
  gap: 10px;
}
.footer .footer-top .social a img {
  width: 30px;
  border-radius: 10px;
}
.footer .footer-top p {
  font-size: 14px;
}
.footer .footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .footer-bottom a {
  color: #ffffff;
  font-size: 14px;
}
.footer .cp {
  text-align: center;
  font-size: 12px;
  border-top: 1px solid #a5c0ef;
  padding-top: 30px;
}

.table table {
  text-align: center;
}
.table table tr, .table table td {
  border: 1px solid #ffffff;
  padding: 20px;
}
.table table .td {
  background-color: #9391F0;
  color: #fff;
  text-transform: uppercase;
}

.text-1 .container .content {
  background-color: #fff;
  padding: 30px;
  border-radius: 30px;
  text-align: center;
}
.text-1 .container .content .a-btn {
  margin-top: 30px;
}
.text-1 .container .content-2 {
  background-color: #9391F0;
  color: #fff;
}
.text-1 .container .content-2 .a-btn {
  margin-top: 30px;
  background-color: #fff;
  color: #9391F0;
}

.rev .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 15px;
  background-color: #c5bbd0;
  opacity: 1;
}
.rev .swiper-pagination-bullet-active {
  background-color: #9391F0;
}
.rev .swiper-button-prev,
.rev .swiper-button-next {
  position: static;
  margin-left: 10px;
}
.rev .swiper-container {
  padding-bottom: 50px;
}
.rev .swiper-slide {
  border-radius: 30px;
  overflow: hidden;
}

.color-block .block {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 150px;
}
.color-block .content {
  display: flex;
  background-color: #fff;
  padding: 30px;
  gap: 30px;
  border-radius: 15px;
}
.color-block .content .slider-color {
  width: 40%;
}
.color-block .content .text {
  width: 60%;
}
.color-block .content .text h3 {
  margin-bottom: 15px;
}
.color-block .content .text h4 {
  background-color: #9391F0;
  display: inline;
  color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
}
.color-block .content .text .price {
  margin-bottom: 20px;
  margin-top: 20px;
}
.color-block .content .text .price h2 {
  color: #9391F0;
  font-size: 50px;
}
.color-block .content .text .price .price-none h6 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}
.color-block .content .text .price .price-none h5 {
  text-decoration: line-through;
}
.color-block .content .text table {
  text-align: center;
  margin-bottom: 30px;
}
.color-block .content .text table tr, .color-block .content .text table td {
  border: 1px solid #668CCD;
  padding: 20px;
}
.color-block .content .text table .td {
  background-color: #9391F0;
  color: #fff;
  text-transform: uppercase;
}
.color-block .content .text .color-img {
  width: 100%;
  max-width: 400px;
  margin-bottom: 20px;
}
.color-block .content .text .nav-tabs {
  margin-bottom: 20px;
  box-shadow: none;
  border: none;
  gap: 15px;
  color: #668CCD;
}
.color-block .content .text .nav-tabs .nav-link {
  border-radius: 20px;
}
.color-block .content .text .nav-tabs .nav-item.show .nav-link, .color-block .content .text .nav-tabs .nav-link.active {
  border: 2px solid #000;
}
.color-block .content .text .nav-tabs .nav-link {
  border: 2px solid #eeeeee;
}

.modal-title {
  text-transform: uppercase;
}

.modal-body form .input-email {
  width: 100%;
  margin-bottom: 20px;
  border: none;
  border-bottom: 1px solid #000;
  padding: 10px 0;
  outline: none;
  border-radius: 0;
  color: #000;
}
.modal-body form .btn-email {
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-block {
  position: fixed;
  top: 35px;
  left: 50%;
  transform: translate(-50%);
  padding: 10px;
  background-color: #fff;
  color: #000;
  border-radius: 50px;
  display: flex;
  align-items: center;
  display: none;
  padding-right: 25px;
  padding-left: 25px;
  transition: 0.3s all;
}

.notification-image {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 50px;
  display: none;
  transition: 0.3s all;
}

.thank-you .container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.thank-you .container .text h2 {
  font-weight: 500;
  font-size: 25px;
  margin: 35px 0;
}

@media (max-width: 1400px) {
  .header .content .block .text .items .item p {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  .header .content .block .text .items .item p {
    font-size: 12px;
  }
  .header .content .block .text .items .item img {
    width: 50px;
  }
}
@media (max-width: 991px) {
  .video-block .content {
    flex-direction: column;
  }
  .video-block .content video {
    order: 1;
  }
  .video-block .content .items {
    order: 2;
  }
  .color-block .content {
    flex-direction: column;
    gap: 30px;
  }
  .color-block .content .slider-color, .color-block .content .text {
    width: 100%;
  }
  .color-block .block {
    gap: 50px;
  }
  .text-1 .container {
    grid-template-columns: repeat(1, 1fr);
  }
  .work .items, .free .content .items {
    grid-template-columns: repeat(2, 1fr);
  }
  .header .content h1 {
    font-size: 35px;
  }
  .header .content .block {
    flex-direction: column;
  }
  .header .content .block .text {
    width: 90%;
  }
  .footer .footer-top {
    grid-template-columns: repeat(1, 1fr);
  }
  .img-m {
    display: none;
  }
}
@media (max-width: 768px) {
  .work .items, .free .content .items {
    grid-template-columns: repeat(1, 1fr);
  }
  .free .content .items {
    gap: 110px;
  }
  .free .content .items .item img {
    width: 90px;
    margin-bottom: 15px;
  }
  .table table {
    width: 100%;
    font-size: 12px;
  }
  .video-block .content video {
    width: 290px;
    margin-right: 20px;
  }
  .action h3 {
    font-size: 22px;
  }
  .header .content .block img {
    width: 100%;
  }
  .header .content h1 {
    font-size: 30px;
  }
  .header .content .block .text .items {
    gap: 15px;
  }
  .mp {
    margin: 60px 0;
  }
  .text-1 .container .content-2 .a-btn {
    padding: 20px;
    width: 100%;
  }
  .header .header-top .logo img {
    width: 130px;
  }
  .div {
    display: none;
  }
  .header .header-top {
    grid-template-columns: repeat(2, 1fr);
  }
  .header .header-top .social {
    justify-content: center;
  }
  .phone-bottom {
    bottom: 75px;
  }
  .phone-bottom img {
    width: 60px;
  }
  .color-block .content .text .nav-tabs .nav-item.show .nav-link, .color-block .content .text .nav-tabs .nav-link.active {
    width: 100%;
    text-align: center;
  }
  .color-block .content .text .nav-tabs .nav-item {
    width: 100%;
  }
  .color-block .content .text .nav-tabs .nav-link {
    width: 100%;
  }
  .a-btn {
    text-align: center;
    width: 100%;
    padding: 20px;
  }
  .header .header-top .logo img {
    width: 100px;
  }
  .notification-block {
    top: 15px;
    width: 90%;
    font-size: 12px;
    text-align: center;
  }
  .color-block .content .text .nav-tabs-gt {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
}/*# sourceMappingURL=style.css.map */