/*============= ALIGNES ===============*/
.alignwide {
  width: 100%;
}

.alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 100vw !important;
    max-width: unset;
  }
}

/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;
}

:root {
  --font-family: "Onest", sans-serif;
  --second-family: "Unbounded", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-weight: 400;
  box-sizing: inherit;
}

body {
  background-color: var(--white);
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
  color: var(--head);
  font-size: 16px;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in;
  color: var(--head);
}

a:hover {
  color: var(--primary);
}

.text::-webkit-scrollbar {
  width: 3px;
}

.text::-webkit-scrollbar-track {
  border-radius: 10px;
  border-left: 1.5px dashed transparent;
  border-right: 1.5px dashed transparent;
  background-clip: padding-box;
  background: var(--stroke);
}

.text::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background: var(--primary);
}

ul li {
  list-style-position: inside;
  font-size: 16px;
  line-height: 130%;
  list-style-type: none;
}

ul li::marker {
  color: var(--primary);
}

ol li {
  list-style-position: inside;
  font-size: 18px;
  line-height: 130%;
}

p {
  font-size: 16px;
  line-height: 130%;
}

.breadcrumbs {
  padding-top: 20px;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--head);
}

.breadcrumbs span {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--head);
  transition: 0.3s;
}

.breadcrumbs span.current-item {
  color: var(--primary);
}

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

.container.second {
  max-width: 1890px;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: transparent;
  outline: none;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: var(--white);
  padding: 19px 45px;
  border-radius: 2px;
  background: var(--primary);
  border: 1px solid var(--primary);
  cursor: pointer;
  transition: all 0.3s ease-in;
  white-space: nowrap;
}

.btn.second {
  background: var(--white);
  color: var(--primary);
  padding: 14px 40px;
}

.btn:hover {
  background-color: var(--hover);
  border-color: var(--hover);
  color: var(--white);
}

#main,
#primary {
  min-height: 80vh;
}

.block-title {
  font-weight: 600;
  font-size: 45px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
  text-align: center;
  font-family: var(--second-family);
}

.text-holder {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.text-holder p {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--main-text);
}

.text-holder ol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.text-holder ol li {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--main-text);
}

.text-holder ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.text-holder ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--main-text);
  position: relative;
  padding-left: 18px;
}

.text-holder ul li:before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  background: var(--primary);
  border-radius: 50%;
  top: 7px;
  left: 0;
}

.text-holder h2 {
  font-weight: 600;
  font-size: 45px;
  line-height: 120%;
  margin-top: 25px;
  margin-bottom: 20px;
  font-family: var(--second-family);
}

.text-holder h3 {
  font-weight: 600;
  font-size: 30px;
  line-height: 120%;
  margin-top: 20px;
  margin-bottom: 15px;
  font-family: var(--second-family);
}

.text-holder h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  margin-top: 15px;
  margin-bottom: 10px;
  font-family: var(--second-family);
}

.text-holder h5 {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  margin-top: 10px;
  margin-bottom: 5px;
}

.text-holder h6 {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  margin-top: 15px;
  margin-bottom: 0px;
  font-family: var(--second-family);
}

.holder {
  position: relative;
  gap: 10px;
}

.holder .nav {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.holder .buttons {
  display: flex;
  gap: 10px;
}

.swiper-button-next:after,
.swiper-button-prev::after {
  display: none !important;
}

.holder .swiper-button-next,
.holder .swiper-button-prev {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: 0.3s;
  cursor: pointer;
  width: 67px;
  height: 67px;
  border-radius: 2px;
  border: 1px solid var(--primary);
  margin-top: unset;
}

.holder .swiper-button-next svg,
.holder .swiper-button-prev svg {
  color: var(--primary);
}

.holder .swiper-button-next path,
.holder .swiper-button-prev path {
  transition: 0.3s;
}

.holder .swiper-button-next:hover,
.holder .swiper-button-prev:hover {
  background: var(--hover);
  border-color: var(--hover);
}

.holder .swiper-button-next:hover svg,
.holder .swiper-button-prev:hover svg {
  color: var(--white);
}

.holder .swiper-button-disabled {
  opacity: 1 !important;
  border-color: var(--main-text);
}

.holder .swiper-button-disabled svg {
  color: var(--main-text);
}

.holder .swiper-button-lock {
  display: none !important;
}

.holder {
  position: relative;
}

.holder .swiper-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  position: static;
  justify-content: center;
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.holder .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  border-radius: 50%;
  background: transparent;
  opacity: 1;
  transition: 0.3s;
  cursor: pointer;
  height: 10px;
  margin: unset !important;
  border: 1px solid var(--primary);
}

.holder .swiper-pagination .swiper-pagination-bullet:hover {
  background: var(--primary);
}

.holder .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}

#file {
  display: none;
}

.file__title {
  display: flex;
  gap: 2px;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  transition: 0.3s;
  margin-bottom: 10px;
  font-family: var(--second-family);
}

.file__title:hover {
  color: var(--hover);
}

input.error,
textarea.error {
  border-color: red;
}

/*============ HEADER =================*/
#header {
  max-width: 1890px;
  margin: 0 auto;
  background: var(--bg-light);
  position: sticky;
  top: 0;
  z-index: 98;
}

#header .header-wrapper {
  display: flex;
  flex-direction: column;
}

#header .top-line {
  display: flex;
  padding: 15px 0px;
  border-bottom: 1px solid var(--bg-dark);
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

#header .top-line .soc__holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
}

#header .top-line .soc__holder .soc__item {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background-color 0.3s ease-in;
}

#header .top-line .soc__holder .soc__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#header .top-line .soc__holder .soc__item svg {
  width: 100%;
  height: 100%;
}

#header .header-menu {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 10px 0px 15px 0px;
}

#header .logo-holder {
  display: flex;
  max-width: 300px;
}

#header .logo-holder img {
  width: 100%;
  display: block;
  object-fit: contain;
}

#header .logo-holder.text {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  max-width: 232px;
}

#header .times-holder {
  display: flex;
  gap: 50px;
}

#header .time-wrapper {
  display: flex;
  flex-direction: column;
}

#header .time-title {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text);
}

#header .time {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
}

#header .nav-menu-element a {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  position: relative;
  display: block;
}

#header .nav-menu-element a:before {
  content: "";
  width: 100%;
  height: 1px;
  bottom: -5px;
  left: 0;
  position: absolute;
  background: var(--primary);
  opacity: 0;
  transition: 0.3s;
}

#header .nav-menu-element a:hover {
  color: var(--primary);
}

#header .nav-menu-element a:hover:before {
  opacity: 1;
}

#header .phone__holder {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

#header .phone__holder .phone__holder-item {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
}

/*================ 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: var(--primary);
  width: 30px;
  height: 4px;
  transition: all 0.3s ease-in;
}

#header .burger.open_menu.clicked {
  background-color: var(--primary);
}

#header .burger.open_menu.clicked span {
  background: var(--white);
  width: 24px;
}

#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-color: var(--white);
  padding: 30px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
}

#header #mobile-mnu #close-mnu {
  font-size: 45px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transform: rotate(45deg);
  display: block;
  color: var(--primary);
}

#header #mobile-mnu a {
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
}

#header #mobile-mnu a.logo-holder.text {
  font-size: 14px;
  text-align: left;
  font-family: var(--second-family);
  font-weight: 600;
  justify-content: flex-start;
}

#header #mobile-mnu a:hover {
  color: var(--primary);
}

#header #mobile-mnu .logo_holder {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 150px;
}

#header #mobile-mnu .logo_holder img {
  max-height: 60px;
  width: 100%;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}

#header #mobile-mnu .menuTop {
  list-style-type: none;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  margin-top: 20px;
}

#header #mobile-mnu .menuTop li a {
  font-size: 16px;
  line-height: 130%;
  font-weight: 500;
}

#header #mobile-mnu .menuTop li a:hover {
  color: var(--primary);
}

#header #mobile-mnu .menuTop li.active a {
  color: var(--primary);
}

#header #mobile-mnu .adresses__holder {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  width: 100%;
}

#header #mobile-mnu .adresses__holder:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-image: url("../images/map.svg");
  background-position: center center;
  background-repeat: no-repeat;
}

#header #mobile-mnu .adresses__holder p {
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
}

#header #mobile-mnu .email__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}

#header #mobile-mnu .email__holder .email__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 450;
}

#header #mobile-mnu .email__holder .email__item:hover {
  color: var(--primary);
}

#header #mobile-mnu .email__holder .email__item svg {
  margin-right: 10px;
}

#header #mobile-mnu .phones__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}

#header #mobile-mnu .phones__holder .phone__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: var(--head);
  font-weight: 450;
}

#header #mobile-mnu .phones__holder .phone__item:hover {
  color: var(--primary);
}

#header #mobile-mnu .phones__holder .phone__item svg {
  margin-right: 10px;
}

#header #mobile-mnu .phones__holder .phone__item svg path,
#header #mobile-mnu .email__holder .email__item svg path {
  stroke: var(--primary);
}

#header #mobile-mnu .soc__holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
}

#header #mobile-mnu .soc__holder .soc__item {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background-color 0.3s ease-in;
}

#header #mobile-mnu .soc__holder .soc__item img,
#header #mobile-mnu .soc__holder .soc__item svg {
  max-width: 100%;
  max-height: 100%;
}

#header #mobile-mnu .soc__holder .soc__item:hover {
  background-color: var(--primary);
}

#header #mobile-mnu.opened {
  transform: translateX(0);
}

/*============ FOOTER ===============*/
#footer {
  background: var(--bg-light);
}

#footer .bot__line {
  padding: 40px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

#footer .bot__line .privacy-holder {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-decoration: underline;
}

#footer .bot__line .privacy-holder:hover {
  color: var(--primary);
}

#footer .bot__line .dev {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  gap: 10px;
  display: flex;
}

#footer .bot__line .dev path {
  transition: 0.3s;
  fill: var(--head);
}

#footer .bot__line .dev:hover path {
  fill: var(--primary);
}

#footer .bot__line .rights {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
}

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

.wpcf7 .ajax-loader {
  display: none;
}

.wpcf7 .wpcf7-spinner {
  display: none;
}

#footer .theme-modal {
  height: -moz-fit-content;
  height: fit-content;
  width: 440px;
  max-height: 90vh;
  max-width: 90vw;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  transition: transform 0.3s ease-in;
  z-index: 9999;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--main-text-light);
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  overflow: auto;
  align-items: center;
}

#footer .theme-modal.modal-open {
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

#footer .theme-modal .close-modal {
  position: absolute;
  right: 25px;
  top: 25px;
  cursor: pointer;
}

#footer .theme-modal .close-modal path {
  transition: 0.3s;
}

#footer .theme-modal .close-modalhover path {
  transition: 0.3s;
}

#footer .theme-modal .modal-title {
  font-weight: 600;
  font-size: 30px;
  line-height: 120%;
  text-align: center;
  margin-bottom: 15px;
  font-family: var(--second-family);
}

#footer .theme-modal .modal-subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: var(--main-text);
  margin-bottom: 30px;
  text-align: center;
}

#footer .theme-modal .form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#footer .theme-modal .form .form-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#footer .theme-modal .form .form-floating.text {
  height: 120px;
}

#footer .theme-modal .form .form-floating.text textarea {
  height: 100%;
}

#footer .theme-modal .form .form-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

#footer .theme-modal .form .btn {
  width: 100%;
}

#footer .theme-modal .form .privacy-holder {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text);
  text-align: center;
  flex-direction: column;
}

#footer .theme-modal .form .privacy-holder a {
  color: var(--head);
}

#footer .theme-modal .form .privacy-holder a:hover {
  color: var(--primary);
}

.form-floating {
  position: relative;
  width: 100%;
  display: flex;
}

.form-control {
  display: block;
  padding: 23px 25px;
  border-radius: 2px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color .5s ease-in-out, box-shadow .5s ease-in-out;
  width: 100%;
  outline: none;
  cursor: pointer;
  position: relative;
  height: fit-content;
  transition: 0.3s;
  background: var(--white);
  border: 1px solid var(--stroke);
}

.form-control:hover {
  border-color: var(--primary);
}

.form textarea {
  resize: none;
  height: 120px;
}

.form-control.text {
  overflow: auto;
}

.form-control:focus {
  border-color: var(--main-text-light);
}

.form-control::placeholder {
  transition: 0.5s;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text);
  opacity: 0;
}

.form-floating:hover::placeholder {
  color: var(--primary);
}

.form-control:focus::placeholder {
  opacity: 1;
}

.form input.error,
.form textarea.error {
  border-color: red;
}

.form .form-floating label {
  position: absolute;
  top: 23px;
  left: 0;
  z-index: 2;
  height: 100%;
  pointer-events: none;
  transition: opacity .2s ease-in-out, transform .2s ease-in-out;
  padding-left: 25px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text);
}

.form-floating:hover label {
  color: var(--primary);
}

.form .form-floating .form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
  transform: scale(1) translateY(-12px) translateX(0px);
  font-size: 10px;
  font-weight: 400;
  line-height: 150%;
}

#modal-background {
  z-index: 99 !important;
}

.privacy-holder {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text);
}

#modal-success.theme-modal {
  background: var(--primary);
  width: 960px;
}

#modal-success.theme-modal path {
  fill: var(--white);
}

#modal-success.theme-modal .modal-title,
#modal-success.theme-modal .modal-subtitle {
  color: var(--white);
}

.error404 #primary {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom -130px;
  min-height: 100vh;
}

.error-404 .wrapper {
  display: flex;
  justify-content: space-between;
  padding: 110px 0px;
}

.error-404 .wrapper .left-side {
  display: flex;
  flex-direction: column;
  width: 50%;
  background: var(--bg-light);
  padding: 55px 70px;
}

.error-404 .wrapper .error-subtitle {
  font-weight: 600;
  font-size: 30px;
  line-height: 120%;
  font-family: var(--second-family);
  margin-bottom: 20px;
}

.error-404 .wrapper .error-desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--main-text);
  margin-bottom: 50px;
}

.error-404 .wrapper .right-side {
  width: 50%;
  text-align: center;
  font-weight: 600;
  font-size: 240px;
  line-height: 120%;
  color: var(--hover);
  font-family: var(--second-family);
}

.error-404 .wrapper .right-side span {
  color: var(--primary);
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 240px;
  line-height: 120%;
}

.privacy-policy.page .content {
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
}

.privacy-policy.page .content p {
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
}

.privacy-policy.page .content h2 {
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 130%;
  font-weight: 600;
}




@media (max-width: 1400px) {
  .error-404 .wrapper {
    align-items: center;
    padding: 20px 0px;
  }

  .error404 #primary {
    min-height: 80vh;
  }

  .error-404 .wrapper .left-side {
    padding: 15px;
  }

  .error-404 .wrapper .right-side,
  .error-404 .wrapper .right-side span {
    font-size: 120px;
  }
}


@media (max-width: 1200px) {
  #header .logo-holder {
    max-width: 150px;
  }

  #header .logo-holder.text {
    font-size: 16px;
    max-width: 150px;
  }
}

@media (max-width: 996px) {
  #header .header-menu {
    display: none;
  }

  #header .top-line {
    border-bottom: unset;
  }

  #header .top-line .soc__holder {
    display: none;
  }

  #header {
    border-bottom: 1px solid var(--bg-dark);
  }

  #header .times-holder {
    display: none;
  }

  #header .burger.open_menu {
    display: flex;
  }

  .btn.second,
  .btn {
    padding: 10px 15px;
    font-size: 14px;
  }

  #footer .bot__line {
    padding: 10px 0px;
  }

  #footer .bot__line .privacy-holder,
  #footer .bot__line .rights,
  #footer .bot__line .dev {
    font-size: 14px;
  }

  #footer .theme-modal .close-modal {
    right: 15px;
    top: 15px;
  }

  .text-holder p,
  .text-holder ul li,
  .text-holder ol li {
    font-size: 16px;
  }

  .text-holder,
  .text-holder ul,
  .text-holder ol {
    gap: 10px;
  }

  .text-holder h2 {
    font-size: 20px;
    margin-top: 12px;
    margin-bottom: 10px;
  }

  .text-holder h3 {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 7px;
  }

  .text-holder h4 {
    font-size: 16px;
    margin-top: 7px;
    margin-bottom: 5px;
  }

  .text-holder h5 {
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .text-holder h6 {
    font-size: 14px;
    margin-top: 7px;
    margin-bottom: 0px;
  }

  .form-control {
    padding: 15px 15px;
  }

  .form .form-floating label {
    top: 15px;
    padding-left: 15px;
  }

  .block-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .holder .swiper-button-next,
  .holder .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .holder .swiper-button-next svg,
  .holder .swiper-button-prev svg {
    color: var(--primary);
  }

  .holder .nav {
    margin-top: 20px;
  }

  #modal-success.theme-modal {
    width: 95%;
  }

  #footer .theme-modal {
    padding: 40px 15px 15px 15px;
  }

  #footer .theme-modal .modal-title {
    font-size: 20px;
  }

  #footer .theme-modal .modal-subtitle {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .error-404 .wrapper {
    flex-direction: column;
  }

  .error-404 .wrapper .left-side {
    width: 100%;
    background: unset;
    align-items: center;
  }

  .error-404 .wrapper .right-side {
    width: 100%;
  }

  .error-404 .wrapper .error-subtitle {
    text-align: center;
    margin-bottom: 10px;
  }

  .error-404 .wrapper .error-desc {
    text-align: center;
    margin-bottom: 10px;
  }

  .error404 #primary {
    min-height: 75vh;
  }
}

@media (max-width: 768px) {
  #header .phone__holder .phone__holder-item {
    font-size: 14px;
    white-space: nowrap;
  }

  #footer .bot__line {
    flex-direction: column;
    align-items: center;
    padding: 10px 0px;
    gap: 5px;
  }

  .block-title {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .block-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .text-holder p,
  .text-holder ul li,
  .text-holder ol li {
    font-size: 14px;
  }
}

@media (max-width: 498px) {
  #header .top-line {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5px;
    gap: 5px;
  }

  #header .btn.second {
    width: 50%;
    order: 3;
  }

  #header .logo-holder {
    width: 70%;
    max-width: unset;
    max-height: 70px;
    order: 0;
  }

  #header .logo-holder.text {
    font-size: 14px;
    max-width: 100%;
    text-align: center;
    justify-content: center;
  }

  #header .burger.open_menu {
    order: 1;
  }

  #header .phone__holder {
    order: 2;
  }

  #header .container {
    padding: 0px 5px;
  }

  .btn.second {
    padding: 5px 10px;
  }

  .error-404 .wrapper .error-subtitle {
    font-size: 16px;
  }

  .error-404 .wrapper .error-desc {
    font-size: 14px;
  }

  .error-404 .wrapper .right-side,
  .error-404 .wrapper .right-side span {
    font-size: 100px;
  }
}