/*============= ALIGNES ===============*/
.alignwide {
  width: 100%;
}

.alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 1920px !important;
    margin-left: calc(-1 * (1920px - 1170px) / 2) !important;
    margin-right: calc(-1 * (1920px - 1170px) / 2) !important;
  }
}

/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;

}

* {
  margin: 0;
  padding: 0;
  font-family: Lato;
  font-weight: 400;
  box-sizing: inherit;
  color: var(--black);
}

.seo-wrapper::-webkit-scrollbar {
  width: 5px;
  /* width of the entire scrollbar */
}

.seo-wrapper::-webkit-scrollbar-track {
  background-color: #EBE7E4;
  border-radius: 0px;
  border-left: 2.5px dashed transparent;
  border-right: 2.5px dashed transparent;
  background-clip: padding-box;
}

.seo-wrapper::-webkit-scrollbar-thumb {
  background: #EBE7E4;
  border-radius: 10px;
}

body {
  background: white;
  max-width: 1920px;
  overflow-x: hidden;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

:root {
  --mainnew: #40ca40;
  --hovernew: #52af52;
  --black: #202020;
  --greenlight: #b8ebb8;
}

a {
  text-decoration: none;
  color: var(--black);
  transition: all 0.3s ease-in;
}

a:hover {
  color: var(--hovernew);
}

ul li {
  list-style-position: inside;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  list-style-type: none;
}

ul li::marker {
  color: #1f2f47;
}

ol li {
  list-style-position: inside;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.text ul,
.text ol {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.text ul li {
  padding-left: 18px;
  position: relative;
}

.text ul li:before {
  content: "";
  width: 8px;
  height: 8px;
  top: 7px;
  left: 0px;
  position: absolute;
  background: var(--mainnew);
  border-radius: 50%;
}

.text ol {
  counter-reset: num;
}

.text ol li::marker {
  display: none;
}

.text ol li {
  position: relative;
  list-style-type: auto;
  list-style: none;
  padding-left: 18px;
}

.text ol li:before {
  content: counter(num);
  counter-increment: num;
  display: inline-block;
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: right;
  position: absolute;
  z-index: 2;
}

p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

h1.page-title {
  font-family: Lato;;
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 40px;
}

h2 {
  margin-top: 40px;
  margin-bottom: 35px;
  font-family: Lato;;
  font-size: 42px;
  font-weight: 700;
  line-height: 130%;
}

h3 {
  margin-top: 35px;
  margin-bottom: 30px;
  font-family: Lato;;
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
}

h4 {
  margin-top: 30px;
  margin-bottom: 25px;
  font-family: Lato;;
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
}

h5 {
  margin-top: 25px;
  margin-bottom: 20px;
  font-family: Lato;;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}

h6 {
  margin-top: 20px;
  margin-bottom: 15px;
  font-family: Lato;;
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
}

main.foned {
  position: relative;
  overflow: hidden;
  z-index: 999;
}

#main,
#primary {
  min-height: 64vh;
}

main.foned:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.breadcrumbs {
  padding-top: 20px;
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 135%;
  color: var(--lText);
}

.breadcrumbs span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: var(--lText);
  transition: 0.3s;
  cursor: pointer;
}

.breadcrumbs .current-item span {
  color: var(--mainnew);
}

.breadcrumbs span:hover {
  color: var(--mainnew);
}

.breadcrumbs span.current-item {
  color: var(--mainnew);
  cursor: auto;
}

.breadcrumbs span.current-item span {
  color: var(--mainnew);
  cursor: auto;
}

.breadcrumbs span.current-item:hover {
  color: var(--mainnew);
}

.breadcrumbs span.current-item:hover span {
  color: var(--mainnew);
}

.container {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  height: auto;
  border-radius: 30px;
  background: var(--mainnew);
  border: 1px solid var(--mainnew);
  outline: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease-in;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.btn:hover {
  background-color: var(--hovernew);
  border-color: var(--hovernew);
  color: white;
}

.block-link {
  display: flex;
  gap: 15px;
  align-items: center;
  transition: 0.3s;
  width: max-content;
}

.block-link .link-icon {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid #202020;
  background: transparent;
  transition: 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-link:hover .link-icon {
  border-color: #202020;
}

.block-link .link-icon path {
  transition: 0.3s;
}

.block-link:hover .link-icon path {
  stroke: white;
}

.block-link .link-icon:before {
  content: "";
  width: 60px;
  height: 60px;
  position: absolute;
  top: -8px;
  left: -8px;
  border: 1px solid #D3D1D0;
  border-radius: 50%;
  background: transparent;
  transition: 0.3s;
  z-index: -1;
}

.block-link:hover .link-icon:before {
  background: linear-gradient(135deg, #202020 25.52%, #0c0c0c 100%);
}

.block-link p {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
  transition: 0.3s;
}

.block-link:hover p {
  color: var(--hovernew);
}

.pagination {
  margin-top: 60px;
  margin-bottom: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 20px;
}

.nav-links {
  display: flex;
  gap: 10px;
}

.pagination .page-numbers {
  font-family: Lato;;
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
  cursor: pointer;
  text-align: center;
  transition: 0.3s;
  color: #5B5351;
}

.pagination .page-numbers:last-child {
  margin-right: 0px;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  color: var(--mainnew);
}

.next.page-numbers {
  margin-left: 200px;
  position: absolute;
  right: 30%;
  border: none;
  transition: 0.3s;
}

.next.page-numbers,
.prev.page-numbers {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #885732 25.52%, #281C10 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.next.page-numbers:hover,
.prev.page-numbers:hover {
  background: linear-gradient(0deg, #885732 25.52%, #281C10 100%);
}

.prev.page-numbers {
  margin-right: 200px;
  position: absolute;
  left: 30%;
  border: none;
  transition: 0.3s;
}

.block-title {
  font-family: Lato;;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  line-height: 130%;
  margin-bottom: 40px;
}

.desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.desc p {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  color: var(--lText);
}

.desc p strong {
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}

.privacy-holder {
  width: 70%;
  display: flex;
  flex-direction: column;
}

.swiper-button-next,
.swiper-button-prev {
  transition: 0.3s;
  height: 50px !important;
  width: 50px !important;
  border-radius: 50% !important;
  opacity: 1 !important;
  background: var(--mainnew) !important;
}

.swiper-button-next path,
.swiper-button-prev path {
  transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--hovernew) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.swiper-button-disabled {
  background: rgba(255, 255, 255, 0.10) !important;
  backdrop-filter: blur(15px);
}

.swiper-pagination {
  display: flex;
  gap: 10px;
  max-width: 1170px;
  left: calc((100% - 1170px) / 2) !important;
  justify-content: center;
  bottom: 20px !important;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.20) !important;
  backdrop-filter: blur(25px);
  width: 60px !important;
  height: 5px !important;
  opacity: 1 !important;
  border-radius: 1px !important;
  transition: 0.3s;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: white !important;
}

.swiper-pagination-bullet:hover {
  background: white !important;
}

.video {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 56.25%;
  background-color: #000;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}

.video__link {
  pointer-events: none;
}

.video__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
  object-fit: cover;
}

.video-btn {
  position: absolute;
  right: 30px;
  bottom: 30px;
  padding: 0;
  border: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 2;
  transition: 0.3s;
  background: transparent;
}

.video-btn svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*============ HEADER =================*/
#header {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
}

#header .social-holder {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

#header .social-holder .soc-item {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--mainnew);
  transition: 0.3s;
}

#header .social-holder .soc-item:hover {
  background: var(--bgH);
}

#header .header-wrapper {
  display: flex;
  align-items: center;
  padding: 13px 0px;
}

#header .logo_holder {
  /* max-width: 180px; */
  max-width: 200px;
}

#header .logo_holder img {
  width: 100%;
  display: block;
  object-fit: cover;
}

#header .center {
  display: flex;
  flex-direction: column;
  margin-left: 80px;
  margin-right: 10px;
}

#header .center-top {
  display: flex;
  gap: 80px;
  align-items: center;
  padding-bottom: 10px;
}

#header .adresses__holder,
#header .time-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}

#header .adresses__holder p,
#header .time-wrapper .time {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
}

#header .adresses__holder .icon,
#header .time-wrapper .time-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg);
}

#header .header-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 15px;
  border-top: 1px solid var(--bgH);
}

#header .info-wrapper {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
}

#header .phone-name {
  font-family: Lato;;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  transition: 0.3s;
}

#header .phone-name:hover {
  color: var(--hovernew);
}

#header .header-button {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--mainnew);
  transition: 0.3s;
  cursor: pointer;
}

#header .header-button:hover {
  color: var(--hovernew);
}

#header .nav-menu-element {
  position: relative;
}

#header .nav-menu-element a {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

#header .nav-menu-element:before {
  content: "";
  width: 60px;
  height: 17px;
  background: url(../images/menuHover.png);
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -21px;
  left: 0;
  position: absolute;
  opacity: 0;
  transition: 0.5s;
}

#header .nav-menu-element:hover:before {
  opacity: 1;
}

#header .header-menu .nav-menu-element.has-childs {
  position: relative;
  margin-right: 20px;
}

#header .sub-menu .nav-menu-element:before {
  display: none;
}

#header .nav-menu-element.has-childs>a::before {
  content: "";
  background-color: var(--black);
  width: 1px;
  height: 6px;
  position: absolute;
  left: unset;
  right: -8px;
  top: 14px;
  margin-top: -2px;
  transform: rotate(129deg);
  transition: all 0.5s ease;
  opacity: 1;
}

#header .nav-menu-element.has-childs>a:hover::before {
  transform: rotate(45deg);
  background-color: var(--mainnew);
}

#header .nav-menu-element.has-childs>a::after {
  content: "";
  background-color: var(--black);
  width: 1px;
  height: 6px;
  position: absolute;
  right: -12px;
  top: 14px;
  margin-top: -2px;
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

#header .nav-menu-element.has-childs>a:hover::after {
  transform: rotate(135deg);
  background-color: var(--mainnew);
}

#header .header-menu>.nav-menu-element.has-childs:hover .sub-menu {
  opacity: 1;
  left: 0%;
  transform: translate(-20%, 17px);
  visibility: visible;
  z-index: 100;
}

#header .header-menu .sub-menu {
  position: absolute;
  top: 100%;
  width: max-content;
  height: max-content;
  left: 50%;
  right: 0;
  opacity: 0;
  border-radius: 0px 0px 15px 15px;
  transform: translate(-33%, 0px);
  transition: all 0.2s ease;
  transition-delay: 0.15s;
  visibility: hidden;
  z-index: -100;
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: var(--bg);
}

#header .header-menu .sub-menu .nav-menu-element a {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

#header .header-menu .sub-menu .nav-menu-element:hover a {
  color: var(--mainnew);
}

/*================ MOBILE MNU =============*/
#header .burger.open_menu {
  display: none;
  flex-direction: column;
  background-color: transparent;
  height: 40px;
  width: 30px;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 2px;
  flex-shrink: 0;
  margin-left: 15px;
  margin-bottom: 5px;
}

#header .burger.open_menu span {
  background-color: var(--mainnew);
  width: 25px;
  height: 4px;
  transition: all 0.3s ease-in;
}

#header .burger.open_menu.clicked {
  background-color: var(--mainnew);
}

#header .burger.open_menu.clicked span {
  background-color: white;
}

#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-color: white;
  padding: 30px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
  overflow: scroll;
}

#header #mobile-mnu .header-menu {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  align-items: flex-start;
}

#header #mobile-mnu #close-mnu {
  font-size: 45px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transform: rotate(45deg);
  display: block;
  color: var(--black);
}

#header #mobile-mnu a {
  font-size: 16px;
  line-height: 1;
  color: var(--black);
  font-weight: 450;
}

#header #mobile-mnu .logo_holder {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  color: var(--mainnew);
}

#header #mobile-mnu .logo_holder p {
  line-height: 120%;
  font-size: 16px;
}

#menu-mobilnoe-menyu .nav-menu-element:first-child a {
  background: transparent;
  padding-left: 0px;
}

#menu-mobilnoe-menyu .nav-menu-element:first-child:before,
#menu-mobilnoe-menyu .nav-menu-element:first-child::after {
  display: none;
}

#menu-mobilnoe-menyu .nav-menu-element a {
  padding: 10px 0px;
}

#menu-mobilnoe-menyu .nav-menu-element.active::after {
  display: none;
}

#header #mobile-mnu a:hover {
  color: var(--black);
}

#header #mobile-mnu .logo__holder {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#header #mobile-mnu .menuTop {
  list-style-type: none;
  margin-bottom: 10px;
  transition: unset;
}

#header #mobile-mnu .menuTop li {
  margin-bottom: 10px;
  transition: unset;
}

#header #mobile-mnu .menuTop li a {
  font-size: 16px;
  line-height: 1;
  color: var(--black);
  font-weight: 450;
  transition: unset;
}

#header #mobile-mnu .nav-menu-element.has-childs .sub-menu a {
  padding-left: 15px;
}

#header #mobile-mnu .menuTop li a:hover {
  color: var(--black);
}

#header #mobile-mnu .menuTop li.active a {
  color: var(--black);
}

#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: 1;
  color: #374957;
  font-weight: 450;
}

#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;
  color: var(--black);
  font-weight: 450;
}

#header #mobile-mnu .email__holder .email__item:hover {
  color: var(--black);
}

#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(--black);
  font-weight: 450;
  margin-bottom: 10px;
}

#header #mobile-mnu .phones__holder .phone__item svg path,
#header #mobile-mnu .email__holder .email__item svg path {
  stroke: var(--black);
}

#header #mobile-mnu .phones__holder .phone__item:hover {
  color: var(--black);
}

#header #mobile-mnu .phones__holder .phone__item svg {
  margin-right: 10px;
}

#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%;
  background-color: var(--bg);
  transition: background-color 0.3s ease-in;
}

#header #mobile-mnu.opened {
  transform: translateX(0);
}

#header #mobile-mnu .nav-menu-element.has-childs .sub-menu {
  display: none;
}

#header #mobile-mnu .nav-menu-element:before {
  display: none;
}

/*============ FOOTER ===============*/
#footer {
  background: var(--black);
}

#footer .top-line {
  padding: 40px 0px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

#footer .menu-holder {
  display: flex;
  width: 60%;
  justify-content: space-between;
}

#footer .footMenu,
#footer .about,
#footer .footCat {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#footer .title {
  font-family: Lato;;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  color: white;
}

#footer .nav-menu-element a {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #E1DAD5;
}

#footer .nav-menu-element a:hover {
  color: var(--hovernew);
}

#footer .menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#footer .info-holder {
  width: 29%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#footer .info-item {
  display: flex;
  gap: 15px;
}

#footer .icon-holder {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
}

#footer .icon-holder img {
  max-width: 80%;
  max-height: 80%;
}

#footer .info-item .right-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#footer .info-item .info-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: var(--bg);
}

#footer .info-item .info-name,
#footer .info-item .info-name p {
  font-family: Lato;;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  color: white;
}

#footer .info-item a.info-name:hover {
  color: var(--hovernew);
}

#footer .line {
  background: rgba(255, 255, 255, 0.133);
  height: 1px;
}

#footer .container .bot__line {
  display: flex;
  align-items: center;
  padding: 30px 0px;
  width: 100%;
  justify-content: space-between;
}

#footer .privacy {
  color: var(--bg);
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  text-decoration-line: underline;
  cursor: pointer;
  transition: 0.3s;
}

#footer .bot__line .privacy:hover {
  color: var(--mainnew);
}

#footer .bot__line .dev {
  color: var(--bg);
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 130%;
  transition: 0.3s;
}

#footer .bot__line .dev:hover {
  color: var(--mainnew);
}

#footer .bot__line .dev path {
  fill: var(--bg);
  transition: 0.3s;
}

#footer .bot__line .dev:hover path {
  fill: var(--mainnew);
}

#footer .bot__line .dev span {
  margin-left: 5px;
}

#footer .bot__line .rights {
  color: #D3D1D0;
  font-size: 14px;
  font-weight: 400;
  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: auto;
  width: auto;
  max-height: 90vh;
  width: 570px;
  background: #F6F4F3;
  border-radius: 15px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  transition: transform 0.3s ease-in;
  z-index: 99999;
  padding: 50px 60px;
  overflow: auto;
}

.fancybox-button svg path {
  color: white !important;
}

#footer .theme-modal .modal-title {
  font-family: Lato;;
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 30px;
}

#footer .theme-modal .privacy-holder {
  width: 60%;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
}

#footer .theme-modal .privacy {
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: var(--mainnew);
}

#footer .theme-modal .privacy:hover {
  color: var(--hovernew);
}

.form .bot {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.form .bot .btn {
  width: max-content;
}

.form .form-bot span {
  opacity: 1;
  text-align: center;
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
}

.form .privacy {
  color: var(--mainnew);
  opacity: 1;
}

#footer .theme-modal.modal-open {
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

#footer .theme-modal .close-modal {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 40px;
  font-weight: 750;
  cursor: pointer;
}

#footer .theme-modal .close-modal path {
  transition: 0.3s;
}

#footer .theme-modal .close-modal:hover path {
  fill: var(--mainnew);
}

#footer .theme-modal .form {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.form-floating {
  position: relative;
  width: 100%;
  display: flex;
}

.form-control {
  display: block;
  padding: 16px 30px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: white;
  transition: border-color .5s ease-in-out, box-shadow .5s ease-in-out;
  width: 100%;
  outline: none;
  cursor: pointer;
  position: relative;
  border-radius: 20px;
  border: 1px solid #E2E2E2;
  background: #FFF;
}

.form textarea {
  resize: none;
}

.form-control.text {
  height: 100px;
  overflow: auto;
}

.form-control:focus {
  border-color: var(--mainnew);
}

.form .btn {
  width: 100%;
}

.form-control::placeholder {
  transition: 0.5s;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
  opacity: 0;
}

.form-control:focus::placeholder {
  opacity: 1;
}

.form input.error,
.form textarea.error {
  border-color: red;
}

.form .form-floating label {
  position: absolute;
  top: 15px;
  color: var(--lText);
  left: 0;
  z-index: 2;
  height: 100%;
  pointer-events: none;
  transition: opacity .2s ease-in-out, transform .2s ease-in-out;
  padding-left: 30px;
}

.form .form-floating .form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
  transform: scale(1) translateY(-8px) translateX(0px);
  font-size: 10px;
  font-weight: 300;
  line-height: 100%;
  color: var(--mainnew);
}

#footer #modal-success {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

#footer #modal-success .modal-title {
  margin-bottom: 0px;
}

.privacy-policy .content {
  margin-bottom: 40px;
}

.privacy-policy .content p strong {
  font-weight: 800;
}

/* ============== MODAL ============= */
.error404 .wrapper {
  display: flex;
  padding-top: 100px;
  justify-content: space-between;
  gap: 30px;
}

.error404 .error-title {
  width: 49%;
  height: 220px;
  background-image: url(../images/404.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.error404 .right-side {
  display: flex;
  flex-direction: column;
}

.error404 .right-side .error-subtitle {
  font-family: Lato;;
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 15px;
}

.error404 .error-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 30px;
  color: var(--lText);
}



/* ============== Archives-services Start ============= */
#archive-services {
  margin-bottom: 40px;
}

#archive-services .services {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#archive-services .services-item {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-radius: 20px;
  background: var(--bg);
  padding: 20px;
  transition: 0.3s;
  border: 1px solid white;
}

#archive-services .services-item:hover {
  border-color: var(--mainnew);
  background: var(--hovernew);
}

#archive-services .img {
  border-radius: 20px;
  overflow: hidden;
  width: 40%;
  max-height: 300px;
}

#archive-services .img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

#archive-services .right-side {
  width: 57%;
  display: flex;
  flex-direction: column;
}

#archive-services .chars {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

#archive-services .char-item {
  display: flex;
  border-radius: 30px;
  background: var(--bgH);
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  transition: 0.3s;
  color: var(--lText);
}

#archive-services .services-item:hover .char-item {
  background: var(--bg);
}

#archive-services .name {
  font-family: Lato;;
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 20px;
  transition: 0.3s;
}

#archive-services .services-item:hover .name {
  color: #fff;
}

#archive-services .short-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
  margin-bottom: 10px;
  transition: 0.3s;
}

#archive-services .services-item:hover .short-desc {
  color: #fff;
}

#archive-services .link {
  margin-top: auto;
  margin-left: auto;
  width: 60px;
  height: 60px;
  background-size: cover;
  background: url(../images/originSvg.svg);
  transition: 0.3s;
}

#archive-services .services-item:hover .link {
  background-image: url(../images/hoverSVG.svg);
}

#archive-services .btn {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

/* ============== Archives-services End ============= */



/* ============== Services-tax Start============= */
#services-tax {
  margin-bottom: 40px;
}

#services-tax .services {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#services-tax .services-item {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-radius: 20px;
  background: var(--bg);
  padding: 20px;
  transition: 0.3s;
  border: 1px solid white;
}

#services-tax .services-item:hover {
  border-color: var(--mainnew);
  background: var(--hovernew);
}

#services-tax .img {
  border-radius: 20px;
  overflow: hidden;
  width: 40%;
  max-height: 300px;
}

#services-tax .img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

#services-tax .right-side {
  width: 57%;
  display: flex;
  flex-direction: column;
}

#services-tax .chars {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

#services-tax .char-item {
  display: flex;
  border-radius: 30px;
  background: var(--bgH);
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  transition: 0.3s;
  color: var(--lText);
}

#services-tax .services-item:hover .char-item {
  background: #fff;
  transition: 0.3s;
}

#services-tax .name {
  font-family: Lato;;
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 20px;
  transition: 0.3s;
}

#services-tax .services-item:hover .name,
#services-tax .services-item:hover .short-desc {
  color: #fff;
  transition: 0.3s;
}

#services-tax .short-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
  margin-bottom: 10px;
}

#services-tax .link {
  margin-top: auto;
  margin-left: auto;
  width: 60px;
  height: 60px;
  background-size: cover;
  background: url(../images/originSvg.svg);
  transition: 0.3s;
}

#services-tax .services-item:hover .link {
  background-image: url(../images/hoverSVG.svg);
}

#services-tax .btn {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

/* ============== Services-tax End============= */



/* ============== Single-services Start ============= */
.single_services .single-top {
  margin-bottom: 40px;
}

.single_services .banner {
  min-height: 835px;
  position: relative;
  background-size: cover;
  background-position: right;
}

.single_services .banner:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(87deg, rgba(0, 0, 0, 0.80) 2.77%, rgba(0, 0, 0, 0.50) 37.3%, rgba(0, 0, 0, 0.00) 66.85%);
}

.single_services .banner .wrapper {
  display: flex;
  flex-direction: column;
  padding-top: 140px;
  width: 55%;
  position: relative;
}

.single_services .banner-title {
  font-family: Lato;;
  font-size: 60px;
  font-weight: 700;
  line-height: 120%;
  color: white;
}

.single_services .banner-desc {
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.48px;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 40px;
}

.single_services .banner .btn {
  margin-block-end: 30px;
}

.single_services .seo-holder {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  background: var(--bg);
}

.single_services .seo-img {
  width: 45%;
  border-radius: 0px 20px 20px 0px;
  overflow: hidden;
  max-height: 700px;
}

.single_services .seo-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.single_services .seo-holder .right-side {
  width: 55%;
  padding: 100px 0px 100px 35px;
  padding-right: calc((100% - 1170px) / 2);
}

.single_services .seo-title {
  font-family: Lato;;
  font-size: 42px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 40px;
}

.single_services .desc p {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.single_services .seo-wrapper {
  height: 430px;
  overflow: auto;
  padding-right: 60px;
}

/* ============== Single-services End ============= */


/* ============== Archive-horses Start ============= */
#archive-horses .horses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

#archive-horses .horses-item {
  display: flex;
  flex-direction: column;
}

#archive-horses .horses-item .img {
  width: 100%;
  max-height: 500px;
  border-radius: 20px;
  overflow: hidden;
}

#archive-horses .horses-item .img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

#archive-horses .horses-item .name {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Lato;;
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
}

#archive-horses .horses-item .desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

/* ============== Archive-horses End ============= */



/* ============== Archive-news Start ============= */
#archive-news,
#news-cat {
  margin-bottom: 40px;
}

#archive-news .btn-wrapper,
#news-cat .btn-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

#archive-news .btn-item,
#news-cat .btn-item {
  border-radius: 30px;
  padding: 5px 15px;
  background: var(--bgH);
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
  transition: 0.3s;
}

#archive-news .btn-item.active,
#archive-news .btn-item:hover,
#news-cat .btn-item.active,
#news-cat .btn-item:hover {
  background: var(--black);
  color: white;
}

#archive-news .news,
#news-cat .news {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

#archive-news .news-item,
#news-cat .news-item {
  width: calc((100% - 60px) / 3);
  border-radius: 20px;
  background: var(--bg);
  padding: 30px 40px;
  display: flex;
  min-height: 300px;
  justify-content: space-between;
  border: 1px solid var(--bg);
  transition: 0.3s;
}

#archive-news .news-item:hover,
#news-cat .news-item:hover {
  border-color: var(--mainnew);
}

#archive-news .news-item.hidden,
#news-cat .news-item.hidden {
  display: none;
}

#archive-news .news-item .img,
#news-cat .news-item .img {
  display: none;
}

#archive-news .news-item .img img,
#news-cat .news-item .img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

#archive-news .news-item:first-child,
#news-cat .news-item:first-child {
  width: calc((134% - 30px) / 2);
  padding: 0px;
  overflow: hidden;
}

#archive-news .news-item:first-child .left-side,
#news-cat .news-item:first-child .left-side {
  width: 48%;
  padding: 30px 30px 30px 40px;
}

#archive-news .news-item:first-child .img,
#news-cat .news-item:first-child .img {
  display: block;
  width: 55%;
  border-radius: 20px;
  overflow: hidden;
  max-height: 300px;
}

#archive-news .news-item .left-side,
#news-cat .news-item .left-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

#archive-news .name,
#news-cat .name {
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}

#archive-news .news-top,
#news-cat .news-top {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

#archive-news .data,
#news-cat .data {
  display: flex;
  gap: 15px;
  align-items: center;
}

#archive-news .day,
#news-cat .day {
  font-family: Lato;;
  font-size: 60px;
  font-weight: 700;
  line-height: 120%;
  transition: 0.3s;
}

#archive-news .news-item:hover .day,
#news-cat .news-item:hover .day {
  color: var(--mainnew);
}

#archive-news .right-side,
#news-cat .right-side {
  display: flex;
  gap: 5px;
  flex-direction: column;
}

#archive-news .month,
#archive-news .year,
#news-cat .month,
#news-cat .year {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

#archive-news .icon,
#news-cat .icon {
  width: 60px;
  height: 60px;
  background-image: url(../images/originSvg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.3s;
}

#archive-news .news-item:hover .icon,
#news-cat .news-item:hover .icon {
  background-image: url(../images/hoverSVG.svg);
}

/* ============== Archive-news End ============= */



/* ============== Single-News Start ============= */
.single_news {}

.single_news .top-wrapper {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.single_news .top-wrapper .left-side {
  display: flex;
  flex-direction: column;
  width: 49%;
}

.single_news .top-wrapper .img {
  width: 49%;
  position: sticky;
  top: 30px;
  max-height: 360px;
  border-radius: 20px;
  overflow: hidden;
}

.single_news .top-wrapper .img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.single_news .data {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 40px;
}

.single_news .data .right-side {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.single_news .data .day {
  font-family: Lato;;
  font-size: 60px;
  font-weight: 700;
  line-height: 120%;
}

.single_news .data .month,
.single_news .data .year {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.single_news .gallery-holder {
  margin-top: 80px;
  margin-bottom: 40px;
  padding-bottom: 80px;
  position: relative;
}

.single_news .news-gallery-img {
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid transparent;
  transition: 0.3s;
  cursor: pointer;
}

.single_news .news-gallery-img:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: 0.3s;
}

.single_news .news-gallery-img:hover:before {
  opacity: 1;
}

.single_news .news-gallery-img:hover {
  border-color: var(--mainnew);
}

.single_news .news-gallery-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/0.7;
}

.single_news .gallery-holder .swiper-button-prev,
.single_news .gallery-holder .swiper-button-next {
  bottom: 0;
  top: unset;
  background: linear-gradient(135deg, #885732 25.52%, #281C10 100%) !important;
  transition: 0.3s;
}

.single_news .gallery-holder .swiper-button-prev:hover,
.single_news .gallery-holder .swiper-button-next:hover {
  background: linear-gradient(0deg, #885732 25.52%, #281C10 100%) !important;
}

.single_news .gallery-holder .swiper-button-disabled {
  background: white !important;
  border: 1px solid #D3D1D0 !important;
}

.single_news .gallery-holder .swiper-button-disabled path {
  stroke: #D3D1D0;
}

.single_news .gallery-holder .swiper-button-prev {
  right: 60px;
  left: unset;
}

.single_news .gallery-holder .swiper-button-next {
  right: 0;
}

.single_news .swiper-pagination {
  left: 0 !important;
  width: max-content !important;
  bottom: 10px !important;
}

.single_news .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background: var(--bgH) !important;
  border-radius: 50% !important;
}

.single_news .swiper-pagination-bullet:before {
  content: "";
  width: 18px;
  height: 18px;
  top: -6px;
  left: -6px;
  position: absolute;
  background: transparent;
  border: 1px solid var(--mainnew);
  border-radius: 50%;
  opacity: 0;
  transition: 0.3s;
}

.single_news .swiper-pagination-bullet:hover {
  background: var(--mainnew) !important;
}

.single_news .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--mainnew) !important;
}

.single_news .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  opacity: 1;
}

/* ============== Single-News End ============= */




/* ============== Archive-Teams Start ============= */
#teams-cat,
#archive-teams {
  margin-bottom: 40px;
}

#archive-teams .btn-wrapper,
#teams-cat .btn-wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

#archive-teams .btn-item,
#teams-cat .btn-item {
  border-radius: 30px;
  padding: 5px 15px;
  background: var(--bgH);
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
  transition: 0.3s;
}

#archive-teams .btn-item.active,
#archive-teams .btn-item:hover,
#teams-cat .btn-item.active,
#teams-cat .btn-item:hover {
  background: var(--black);
  color: white;
}

#archive-teams .teams,
#teams-cat .teams {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

#archive-teams .teams-item,
#teams-cat .teams-item {
  display: flex;
  flex-direction: column;
}

#archive-teams .teams-item .img,
#teams-cat .teams-item .img {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-height: 500px;
  position: relative;
}

#archive-teams .teams-item .img:before,
#teams-cat .teams-item .img:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url(../images/more.svg);
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: 0.3s;
}

#archive-teams .teams-item:hover .img:before,
#teams-cat .teams-item:hover .img:before {
  opacity: 1;
}

#archive-teams .teams-item .img img,
#teams-cat .teams-item .img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1.5;
}

#archive-teams .teams-item .name,
#teams-cat .teams-item .name {
  font-family: Lato;;
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
  margin-top: 20px;
  margin-bottom: 10px;
}

#archive-teams .teams-item .post,
#teams-cat .teams-item .post {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--mainnew);
}

/* ============== Archive-Teams End ============= */





/* ============== Single-teams Start ============= */
.single_teams .top-wrapper {
  display: flex;
  margin-bottom: 40px;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}

.single_teams .top-wrapper .text {
  width: 51%;
}

.single_teams .team-img {
  width: 42%;
  position: sticky;
  top: 30px;
  border-radius: 20px;
  overflow: hidden;
  max-height: 500px;
}

.single_teams .team-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ============== Single-teams End ============= */




.single-services #price-block,
.page-id-316 #price-block {
  background: white;
  padding-top: 40px;
  padding-bottom: 40px;
}

.page-id-316 #price-block {
  padding-top: 10px;
}

.page-id-316 #price-block .block-title {
  text-align: left;
}

.single-services #price-block .prog-name,
.page-id-316 #price-block .prog-name {
  background: var(--bg);
}

.single-services #price-block .prices-item,
.page-id-316 #price-block .prices-item {
  background: var(--bg);
}

.single-services #price-block .week-item:nth-child(1),
.page-id-316 #price-block .week-item:nth-child(1) {
  background: white;
}

.single-services #cert-block {
  padding-top: 40px;
}

.page-id-255 h1.page-title,
.page-id-285 h1.page-title,
.page-id-316 h1.page-title,
.page-id-319 h1.page-title {
  display: none;
}

.page-id-255 #about-block .left-side,
.page-id-285 #about-block .left-side,
.page-id-319 #about-block .left-side {
  padding-top: 20px;
}

.page-id-319 #about-block .left-side {
  padding-bottom: 20px;
}

.page-id-285 #about-block .left-side {
  padding-top: 100px;
  position: relative;
}

.page-id-285 #about-block .block-title {
  margin-top: -90px;
}

.page-id-255 #about-block .block-link,
.page-id-285 #about-block .block-link,
.page-id-319 #about-block .block-link {
  display: none;
}

.page-id-285 #about-block .block-title {
  position: absolute;
  width: max-content;
}

.page-id-312 #question-page-block {
  padding-top: 0px;
}

.page-id-319 #about-block .block-title {
  width: 100%;
}

.single-teams #news-block {
  padding-top: 20px;
}


@media (max-width: 1200px) {
  #header .center {
    margin-left: 60px;
  }

  #header .header-menu {
    gap: 30px;
  }

  .single_services .seo-holder .right-side {
    padding: 30px 0px 30px 0px;
    padding-right: 15px;
  }

  .single_services .banner .wrapper {
    width: 100%;
  }

  .single_services .banner {
    min-height: 600px;
  }

  .single_services .banner-title {
    font-size: 40px;
  }
}

@media (max-width: 996px) {
  #header .header_nav_menu {
    display: none;
  }

  #header .center-top {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding-bottom: 0px;
  }

  #header .center {
    margin-left: 20px;
  }

  #header .burger.open_menu {
    display: flex;
  }

  #footer .top-line {
    flex-direction: column;
  }

  #footer .menu-holder {
    width: 100%;
    flex-wrap: wrap;
  }

  #footer .info-holder {
    width: 100%;
  }

  h1.page-title,
  .block-title {
    font-size: 32px;
  }

  .single_services .seo-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .single_services .banner .wrapper {
    padding-top: 50px;
    padding-bottom: 40px;
  }

  .single_services .banner {
    min-height: 500px;
  }

  .single_services .banner-title {
    font-size: 32px;
  }

  #archive-horses .horses-item .name {
    font-size: 20px;
  }

  #archive-horses .horses-item .desc {
    font-size: 14px;
  }

  .page-id-285 #about-block .block-title {
    position: static;
    width: auto;
    margin-top: unset;
    margin-bottom: 20px;
  }

  .page-id-285 #about-block .left-side {
    padding-top: 0px;
  }

  .page-id-285 #about-block .desc {
    margin-top: unset;
  }

  #archive-news .news-item,
  #news-cat .news-item {
    width: calc((100% - 30px) / 2);
  }

  #archive-news .news-item:first-child,
  #news-cat .news-item:first-child {
    width: 100%;
  }

  h2 {
    font-size: 32px;
    margin-top: 35px;
    margin-bottom: 30px;
  }

  h3 {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 25px;
  }

  h4 {
    font-size: 26px;
    margin-top: 25px;
    margin-bottom: 20px;
  }

  h5 {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  h6 {
    font-size: 22px;
  }

  #archive-teams .teams-item .name,
  #teams-cat .teams-item .name {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  #footer .container .bot__line {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0px;
  }

  #footer .menu {
    width: 47%;
  }

  #footer .menu-holder {
    gap: 20px;
  }

  #footer .info-holder {
    gap: 15px;
  }

  #footer .info-item .right-side {
    gap: 5px;
  }

  #footer .info-item .info-title {
    font-size: 12px;
  }

  #footer .info-item .info-name,
  #footer .info-item .info-name p {
    font-size: 14px;
  }

  #footer .footMenu,
  #footer .about,
  #footer .footCat {
    gap: 10px;
  }

  #header .phone-name {
    font-size: 22px;
  }

  #footer .theme-modal .modal-title {
    font-size: 28px;
  }

  .error404 .wrapper {
    padding-top: 30px;
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
    gap: 5px;
  }

  .error404 .error-title {
    width: 80%;
  }

  .error404 .right-side .error-subtitle {
    text-align: center;
  }

  .error404 .right-side .error-text {
    text-align: center;
  }

  .error404 .right-side .btn {
    margin-left: auto;
    margin-right: auto;
  }

  h1.page-title,
  .block-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  #archive-services .right-side {
    width: 45%;
  }

  #archive-services .img {
    width: 50%;
  }

  #archive-services .services-item {
    padding: 10px;
  }

  #archive-services .char-item {
    font-size: 11px;
  }

  #archive-services .name {
    font-size: 20px;
  }

  #archive-services .short-desc {
    font-size: 14px;
  }

  .single_services .banner-title,
  .single_services .seo-title {
    font-size: 28px;
  }

  .single_services .banner-desc {
    font-size: 20px;
  }

  .single_services .banner {
    min-height: 400px;
  }

  .single_services .seo-holder {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .single_services .seo-img {
    order: 2;
    border-radius: 20px;
    width: 70%;
  }

  .single_services .seo-holder .right-side {
    order: 1;
    width: 100%;
    padding-left: 15px;
  }

  #archive-horses .horses {
    grid-template-columns: repeat(2, 1fr);
  }

  .next.page-numbers {
    right: 0%;
  }

  .prev.page-numbers {
    left: 0%;
  }

  #archive-news .news-item,
  #archive-news .news-item:first-child .left-side,
  #news-cat .news-item,
  #news-cat .news-item:first-child .left-side {
    padding: 15px;
  }

  .single_news .top-wrapper {
    flex-direction: column;
  }

  .single_news .top-wrapper .left-side {
    width: 100%;
    order: 2;
  }

  .single_news .top-wrapper .img {
    width: 100%;
    order: 1;
    position: static;
    top: unset;
    max-height: 460px;
  }

  h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 30px;
  }

  h3 {
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 25px;
  }

  h4 {
    font-size: 24px;
    margin-top: 25px;
    margin-bottom: 20px;
  }

  h5 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  h6 {
    font-size: 20px;
  }

  #archive-teams .teams,
  #teams-cat .teams {
    grid-template-columns: repeat(2, 1fr);
  }

  #header .adresses__holder .icon,
  #header .time-wrapper .time-icon {
    display: none;
  }

  #header .logo_holder {
    max-width: 150px;
  }

  #header .container {
    padding: 0px 5px;
  }
}

@media (max-width: 600px) {
  #header .phone-name {
    font-size: 20px;
  }

  #footer .theme-modal {
    width: 95%;
    padding: 25px;
  }

  #footer .theme-modal .modal-title {
    font-size: 26px;
  }

  .form .bot {
    flex-direction: column;
    align-items: center;
    margin-top: 5px;
  }

  .form .privacy-holder {
    width: 100%;
    text-align: center;
    align-items: center;
  }

  h1.page-title,
  .block-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  #archive-services {
    padding: 40px 0px;
  }

  #archive-services .services-item,
  #services-tax .services-item {
    flex-direction: column;
  }

  #archive-services .right-side,
  #services-tax .right-side {
    width: 100%;
  }

  #archive-services .img,
  #services-tax .img {
    width: 100%;
  }

  .single_services .banner-title,
  .single_services .seo-title {
    font-size: 26px;
  }

  .single_services .banner-desc {
    font-size: 16px;
  }

  .single_services .seo-wrapper {
    height: 350px;
  }

  .single_services .banner {
    min-height: 300px;
  }

  #archive-news .btn-wrapper,
  #news-cat .btn-wrapper {
    margin-bottom: 20px;
  }

  #archive-news .news,
  #news-cat .news {
    display: flex;
    flex-direction: column;
  }

  #archive-news .news-item,
  #news-cat .news-item {
    width: 100%;
    min-height: 170px;
  }

  #archive-news .news-item:first-child,
  #news-cat .news-item:first-child {
    flex-direction: column;
  }

  #archive-news .news-item:first-child .left-side,
  #news-cat .news-item:first-child .left-side {
    width: 100%;
  }

  #archive-news .news-item:first-child .img,
  #news-cat .news-item:first-child .img {
    width: 100%;
  }

  h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 30px;
  }

  h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 25px;
  }

  h4 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 20px;
  }

  h5 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .single_news .gallery-holder {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  #archive-teams .btn-wrapper,
  #teams-cat .btn-wrapper {
    margin-bottom: 20px;
  }

  .single_teams .top-wrapper {
    flex-direction: column;
  }

  .single_teams .top-wrapper .text {
    width: 100%;
    order: 2;
  }

  .single_teams .img {
    width: 100%;
    order: 1;
    position: static;
    top: unset;
  }

  #footer .theme-modal .privacy-holder {
    width: 100%;
    text-align: center;
  }

  .single_teams .team-img {
    position: static;
    top: unset;
    width: 70%;
  }

  .single_teams .top-wrapper {
    align-items: center;
  }

  #header .time-wrapper .time {
    display: none;
  }

  #header .center {
    max-width: 150px;
  }
}

@media (max-width: 498px) {
  #header .phone-name {
    font-size: 16px;
  }

  #header .logo_holder {
    max-width: 120px;
  }

  #header .center {
    max-width: unset;
  }

  #header .header-wrapper {
    padding: 5px 0px;
  }

  #footer .theme-modal .modal-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  #footer .theme-modal {
    padding: 25px 10px;
  }

  .error404 .error-title {
    width: 100%;
    height: 120px;
    background-position: center;
  }

  h1.page-title,
  .block-title {
    font-size: 24px;
  }

  .privacy-policy .content p {
    font-size: 14px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
  }

  .swiper-pagination-bullet {
    width: 30px !important;
    height: 3px !important;
  }

  .swiper-pagination {
    gap: 0px;
    flex-wrap: wrap;
  }

  .single_services .banner-title,
  .single_services .seo-title {
    font-size: 24px;
  }

  .single_services .banner-desc {
    font-size: 14px;
  }

  .single_services .seo-img {
    width: 100%;
  }

  .single_services .seo-wrapper {
    height: 300px;
    padding-right: 5px;
  }

  .single_services .desc p {
    font-size: 14px;
  }

  .next.page-numbers,
  .prev.page-numbers {
    width: 40px;
    height: 40px;
  }

  .pagination {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .single_news .swiper-pagination {
    gap: 5px;
  }

  #archive-teams .teams-item .name,
  #teams-cat .teams-item .name {
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 16px;
  }

  #archive-teams .teams-item .post,
  #teams-cat .teams-item .post {
    font-size: 14px;
  }

  p,
  ul li,
  ol li {
    font-size: 14px;
  }

  #header .social-holder {
    bottom: 10px;
    left: 10px;
  }

  #header .social-holder .soc-item {
    width: 40px;
    height: 40px;
  }

  .single_teams .team-img {
    width: 100%;
  }

  #archive-teams .teams,
  #teams-cat .teams {
    display: flex;
    flex-direction: column;
  }

  #footer .menu {
    width: 45%;
  }

  #header .header-wrapper {
    flex-wrap: wrap;
    gap: 10px;
  }

  #header .center-top {
    order: 3;
  }

  #header .center {
    margin-left: auto;
  }

  #header .info-wrapper {
    order: 2;
    margin-left: unset;
    margin-right: auto;
    align-items: flex-start;
  }

  #header .burger.open_menu {
    order: 4;
  }

  #header .adresses__holder p {
    text-align: end;
  }
}

@media (max-width: 400px) {
  .btn {
    width: 100% !important;
  }

  #archive-horses .horses {
    display: flex;
    flex-direction: column;
  }
}