@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap");
* {
  padding: 0;
  margin: 0;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

ol, ol li {
  list-style-position: inside;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

input, textarea, button, select {
  border: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background: transparent none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

:root {
  --card: #fff;
  --bg-light: #f5f5f5;
  --bg-dark: #ececec;
  --stroke: #dcdcdc;
  --primary: #524489;
  --hover: #26214e;
  --head: #1d1d1d;
  --main-text: #4b4b4b;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--main-text);
  background: var(--card);
  overflow-x: hidden;
}

h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 100%;
}

h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 100%;
}

.container .page-title, .container .content p{
  margin: 20px 0;
}

@media (max-width: 498px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 100%;
}

h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
}
@media (max-width: 768px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
}

h6 {
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
}

a {
  cursor: pointer;
  color: var(--stroke);
  transition: all 0.3s ease-in;
}
a:hover {
  color: var(--card);
  transition: all 0.3s ease-in;
}

.page {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.privacy-policy {
  font-size: 14px;
  text-decoration-line: underline;
}

.main {
  flex-grow: 1;
}

.none {
  display: none;
}

.no-scroll {
  overflow-y: hidden;
}

.privacy {
  color: var(--primary);
  text-align: start;
}

.header {
  max-height: 100px;
  background: var(--head);
  position: sticky;
  top: 0;
  z-index: 10000;
}
.hero-socials{
  justify-content: center;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}
.hero-socials a, .hero-socials a img{
  height: 80px;
  min-width: 80px;
}
@media (max-width: 1200px) {
  .header__nav {
    display: none;
  }
}
@media (max-width: 991px){
  .prices-nine-block__left{
    max-width: 365px;
  }
}
@media (max-width: 500px){
  .prices-nine-block__left{
    max-width: 278px;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .header__inner .btn {
    display: none;
  }
}
.header__logo {
  max-width: 254px;
  height: fit-content;
}
@media (max-width: 768px) {
  .header__logo {
    max-width: 160px;
  }
}

/*================ MOBILE MNU =============*/
#header .burger.open_menu {
  display: none;
  flex-direction: column;
  background-color: transparent;
  height: 40px;
  width: 40px;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 2px;
  flex-shrink: 0;
}
#header .burger.open_menu span {
  background-color: #D12D26;
  width: 30px;
  height: 4px;
  transition: all 0.3s ease-in;
  pointer-events: none;
}
#header .burger.open_menu.clicked {
  background-color: #D12D26;
}
#header .burger.open_menu.clicked span {
  background-color: #fff;
}
#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-color: var(--head);
  padding: 30px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
  overflow-y: auto;
}
#header #mobile-mnu #close-mnu {
  font-size: 45px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transform: rotate(45deg);
  display: block;
  color: #D12D26;
}
#header #mobile-mnu .menuTop {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#header #mobile-mnu.opened {
  transform: translateX(0);
}

@media (max-width: 1200px) {
  #header .burger.open_menu {
    display: flex;
  }
}
.navigation {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
@media (max-width: 1200px) {
  .navigation {
    display: none;
  }
}
.navigation__mobile-nav {
  display: none;
}
@media (max-width: 1200px) {
  .navigation__mobile-nav {
    display: block;
  }
}

.socials {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 350px) {
  .socials__hidden {
    display: none;
  }
}
.socials__item {
  max-width: 40px;
}
.socials__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer {
  padding: 30px 0;
  background: var(--head);
}
@media (max-width: 1200px) {
  .footer__nav {
    display: flex;
    column-gap: 15px;
  }
}
@media (max-width: 992px) {
  .footer__nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer__inner {
  display: flex;
  flex-direction: column;
}
.footer__main-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 460px) {
  .socials{
    width: 70px;
    gap: 3px;
  }
  .contacts-list__item{
    white-space: nowrap;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .footer__main-content {
    padding: 15px 0;
  }
}
@media (max-width: 576px) {
  .footer__main-content {
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    align-items: flex-start;
  }
}
.footer__logo {
  max-width: 124px;
}
.footer__cta {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.footer__info {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 576px) {
  .footer__info {
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
  }
}

/* ============== MODAL ============= */
.wpcf7 .wpcf7-response-output,
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 .ajax-loader {
  display: none;
}
.wpcf7 .wpcf7-spinner {
  display: none;
}

.theme-modal {
  height: fit-content;
  width: 770px;
  max-height: 90vh;
  max-width: 90vw;
  background-color: #fff;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  transition: transform 0.3s ease-in;
  z-index: 99999;
  overflow-y: auto;
  padding: 60px;
  border-radius: 5px;
}
.theme-modal.modal-open {
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.theme-modal .title {
  color: var(--head);
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 42px */
  text-transform: uppercase;
  margin-bottom: 40px;
}
.theme-modal .close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 40px;
  font-weight: 750;
  color: var(--head);
  transform: rotate(45deg);
  cursor: pointer;
}
.theme-modal .form {
  width: 100%;
}
.theme-modal .form .inputs-holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0 30px;
}
.theme-modal .form .form-input {
  margin-bottom: 30px;
}
.theme-modal .form .submit {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

[form-send][disabled] {
  opacity: 0.5;
}

@media (max-width: 769px) {
  .theme-modal {
    padding: 20px;
  }
  .theme-modal .title {
    font-size: 30px;
    padding-right: 30px;
  }
  .theme-modal .form .submit {
    flex-wrap: wrap;
  }
}
@media (max-width: 498px) {
  .theme-modal {
    padding: 20px;
  }
  .theme-modal .title {
    font-size: 16px;
  }
  .theme-modal .form .inputs-holder {
    grid-template-columns: 1fr;
  }
}
.error-404 {
  height: 85vh;
  /* =========== BASE CONFIG =========== */
  /*====== NAVIGATION ===========*/
}
.error-404 .error-404__inner {
  padding: 80px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
@media (max-width: 992px) {
  .error-404 .error-404__inner {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0;
  }
}
.error-404 .error-404__inner .page-content-title {
  color: var(--primary, #524489);
  font-size: 250px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
@media (max-width: 580px) {
  .error-404 .error-404__inner .page-content-title {
    font-size: 200px;
  }
}
@media (max-width: 420px) {
  .error-404 .error-404__inner .page-content-title {
    font-size: 150px;
  }
}
.error-404 .error-404__inner .page-content-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 992px) {
  .error-404 .error-404__inner .page-content-item {
    align-items: center;
  }
}
.error-404 .error-404__inner .page-content-item__desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 420px) {
  .error-404 .error-404__inner .page-content-item .page-content-name {
    font-size: 38px;
  }
}
.error-404 .breadcrumbs {
  padding: 20px 0;
}
.error-404 .breadcrumbs span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: var(--head);
}
.error-404 .breadcrumbs span.current-item {
  color: var(--primary);
}
.error-404 .navigation.pagination {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  text-align: center;
}
.error-404 .navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  text-align: center;
}
.error-404 .navigation.pagination .page-numbers {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #1C0130;
  margin: 0 10px;
}
.error-404 .navigation.pagination .page-numbers.current {
  font-weight: 750;
}
.error-404 .navigation.pagination a.prev {
  margin-right: 100px;
  margin-left: -100px;
}
.error-404 .navigation.pagination a.next {
  margin-right: -100px;
  margin-left: 100px;
}

.card__headline {
  display: flex;
  align-items: flex-start;
  gap: 220px;
}
.card__headline-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 15px;
  white-space: nowrap;
}
.card__list-item {
  display: flex;
  padding: 10px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid var(--primary);
  background: var(--card);
  transition: color 0.3s ease-in, background-color 0.3s ease-in;
}
.card__list-item:hover {
  background: var(--hover);
  box-shadow: 0 0 30px 0 rgba(82, 68, 137, 0.7);
  transition: all 0.3s ease-in;
  color: var(--card);
}
.card__list-item.active {
  background: var(--hover);
  transition: all 0.3s ease-in;
  color: var(--card);
}
.card__details-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  grid-gap: 25px 100px;
}
.card__details-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.card__content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 30px;
}
.card__content-left-side {
  grid-column: 1/5;
}
.card__content-right-side {
  grid-column: 5/12;
}

.mobile-nav-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  opacity: 0;
  z-index: 99;
  transition: all 0.3s ease-in;
}

.mobile-nav-overlay--open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  transform: translate(100%, 0);
  height: 100vh;
  width: 220px;
  padding: 40px 20px;
  background: var(--head);
  transition: transform 0.3s ease-in;
}

.mobile-nav--open {
  transform: translate(0, 0);
}

.mobile-nav__btn {
  position: absolute;
  top: 30px;
  right: 20px;
  width: 24px;
  height: 24px;
}

.mobile-nav__list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-nav__list a {
  display: block;
  padding: 10px;
  transition: all 0.3s ease-in;
}
.mobile-nav__list a:hover {
  padding-left: 20px;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 254px;
}

.btn {
  display: flex;
  padding: 15px 40px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: fit-content;
  border-radius: 5px;
  color: var(--card);
  background: var(--primary);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease-in;
}
.btn svg {
  transition: all 0.3s ease-in;
}
.btn svg path {
  transition: all 0.3s ease-in;
}
.btn:focus {
  letter-spacing: normal;
}
.btn:hover {
  background: var(--hover);
  box-shadow: 0 0 30px 0 rgba(82, 68, 137, 0.7);
  transition: all 0.3s ease-in;
}
.btn--inline {
  padding: 0;
  background: none;
}
.btn--cta {
  color: var(--primary);
  background: var(--card);
}
.btn--animated {
  animation: btn-to-up 1.9s ease-out 0.5s;
  animation-fill-mode: backwards;
}
.btn.invert {
  background-color: var(--card);
  color: var(--primary);
}
.btn.invert:hover {
  background: var(--hover);
  box-shadow: 0 0 30px 0 rgba(82, 68, 137, 0.7);
  transition: all 0.3s ease-in;
  color: var(--card);
}

@keyframes btn-to-up {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn_up {
  width: 78px;
  height: 78px;
  flex-shrink: 0;
  background: var(--primary);
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  border-radius: 100px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s linear;
  z-index: 5;
}
@media (max-width: 769px) {
  .btn_up {
    width: 60px;
    height: 60px;
  }
}
.btn_up svg {
  width: 40px;
  height: 40px;
  transform: rotate(-90deg);
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.sign svg circle{
  fill: var(--primary);
}

.logo{
  max-height: 60px;
}
.slide__img{
  min-width: 100px;
  max-height: 500px;
}

@media (max-width: 1200px){
  .slide__img{
    max-height: 400px;
  }
}
@media (max-width: 950px){
  .slide__img{
    max-height: 300px;
  }
}
@media (max-width: 750px){
  .slide__img{
    max-height: 200px;
  }
}
@media (max-width: 550px){
  .slide__img{
    max-height: 150px;
  }
}
@media (max-width: 350px){
  .slide__img{
    max-height: 100px;
  }
}

.services-block .tab__image{
  object-fit: fill;
  height: 200px;
}

.btn_up.is-show {
  opacity: 1;
  visibility: visible;
}
.btn_up.is-show:hover {
  background: var(--hover);
  box-shadow: 0 0 30px 0 rgba(82, 68, 137, 0.7);
  transition: all 0.3s ease-in;
}

.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--head);
  padding-bottom: 15px;
}

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


@media (max-width: 1240px) {
  .section-title {
    font-size: 40px;
  }
}
@media (max-width: 1025px) {
  .section-title {
    font-size: 35px;
  }
}
@media (max-width: 769px) {
  .section-title {
    font-size: 30px;
  }
  .container .page-title{
    font-size: 35px;
  }
  .services-block .tab__image{
    height: 400px;
  }
}
@media (max-width: 498px) {
  .section-title {
    font-size: 25px;
  }
  .container .content p{
    font-size: 12.5px;
  }
  .container .page-title{
    font-size: 25px;
  }
  .services-block .tab__image{
    height: 200px;
  }
}
.section-title::after {
  position: absolute;
  display: block;
  content: "";
  border-radius: 100px;
  background: var(--primary);
  width: 70px;
  height: 4px;
  bottom: 0;
}

.section-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.section-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-next {
  position: absolute;
  display: inline-flex;
  width: 100px;
  height: 100px;
  padding: 25px;
  bottom: 0;
  flex-shrink: 0;
  background: var(--primary);
}
.scroll-next svg {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.slider-controls__next,
.slider-controls__prev {
  position: static;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: var(--primary);
  cursor: pointer;
}

.swiper-button-disabled {
  border-radius: 100px;
  background: var(--bg-light);
  cursor: default;
}
.swiper-button-disabled svg path {
  stroke: #000;
}
.swiper-wrapper{
  align-items: center;
}

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