/*============= ALIGNES ===============*/
body {
  color: var(--Text);
}
.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: 100vw !important;
    max-width: unset;
    /*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', sans-serif;
  font-weight: 400;
  box-sizing: inherit;
}

body {
  /* background-color: #FFFDF8; */
  /*max-width: 1920px;*/
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0 auto;
  width: auto;
  /*-webkit-box-shadow: 0 0 20px 5px #747474;*/
  /*box-shadow: 0 0 20px 5px #747474;*/
}

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

ul li {
  list-style-position: inside;
  color: #121212;
  /* font-size: 18px; */
  line-height: 26px;
  margin-bottom: 10px;
}
ul li::marker {
  color: #1F2F47;
}

ol li {
  list-style-position: inside;
  color: #121212;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 15px;
  color: var(--Text);
  font-size: 18px;
  line-height: 26px;
}

h1.page-title {
  margin-bottom: 40px;
  color: var(--Black);
}

main.foned {
  position: relative;
  overflow: hidden;
  z-index: 999;
}
main.foned:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.breadcrumbs {
  padding: 20px 0;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 18px;
  color: #DFDFDF;
}
.breadcrumbs span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.breadcrumbs span.current-item {
  color: #121212;
}

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

/* .btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 225px;
  width: 100%;
  height: 50px;
  background: transparent;
  border-radius: 5px;
  border: 1px solid #f6c4df;
  outline: none;
  font-family: 'Lato', sans-serif;
  color: #f6c4df;
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease-in;
}
.btn svg {
  transition: all 0.3s ease-in;
  margin-right: 10px;
}
.btn svg path {
  transition: all 0.3s ease-in;
}
.btn:hover {
  color: #fff;
  background-color: #f6c4df;
  letter-spacing: 1px;
}
.btn:hover svg path {
  fill: rgba(18, 223, 236, 0.5);
}
.btn:focus {
  letter-spacing: normal;
}
.btn.invert {
  background-color: #f6c4df;
  color: #fff;
} */

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

/*============ HEADER =================*/
/*================ 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;
}
#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;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-color: #f1f2f3;
  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: #D12D26;
}
#header #mobile-mnu a {
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}
#header #mobile-mnu a:hover {
  color: #D12D26;
}
#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 .logo__holder img {
  max-height: 60px;
}
#header #mobile-mnu .menuTop {
  list-style-type: none;
  margin-bottom: 10px;
}
#header #mobile-mnu .menuTop li {
  margin-bottom: 10px;
}
#header #mobile-mnu .menuTop li a {
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}
#header #mobile-mnu .menuTop li a:hover {
  color: #D12D26;
}
#header #mobile-mnu .menuTop li.active a {
  color: #D12D26;
}
#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: #374957;
  font-weight: 450;
}
#header #mobile-mnu .email__holder .email__item:hover {
  color: #D12D26;
}
#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: #374957;
  font-weight: 450;
}
#header #mobile-mnu .phones__holder .phone__item:hover {
  color: #D12D26;
}
#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: #3A899A;
  transition: background-color .3s ease-in;
}
#header #mobile-mnu .soc__holder .soc__item:hover {
  background-color: #609FA8;
}
#header #mobile-mnu.opened {
  transform: translateX(0);
}

/*============ FOOTER ===============*/
/* ============== MODAL ============= */
.theme-modal {
	display: none;
}
.theme-modal.fancybox__content {
  width: 460px;
}
.theme-modal.fancybox__content .f-button.is-close-btn svg path {
  transition: stroke .3s ease-in;
}
.theme-modal.fancybox__content .f-button.is-close-btn:hover svg path {
  stroke: var(--primary);
}
.fancybox__backdrop {

}

/* ============= MEDIA QUERIES =========== */



/* main */
.container {
  position: relative;
  min-width: 1660px;
  width: 1660px;
  margin: 0 auto;
  padding: 0px;
}
.btn {
  position: relative;
  /* padding-top: 21px;
  padding-bottom: 21px;
  padding-left: 80px;
  padding-right: 80px; */
  color: var(--Primary);
  border: solid 1px var(--Stroke);
  font-size: 20px;
  transition: var(--Transition);
  /* height: fit-content; */
  /* width: fit-content; */
  width: 322px;
  height: 70px;

  cursor: pointer;

  box-sizing: border-box;
  display: block;
  /* display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; */

  overflow: hidden;
}
.btn:hover {
  /* background-color: var(--Hover); */
  .container-btn {
    transform: translateY(-50%);
  }
}
.btn-modal {
  /* background-color: var(--Primary);
  border-color: var(--Primary);
  color: var(--White); */
}
.btn-modal:hover {
  /* background-color: var(--Hover);
  border-color: var(--Hover); */
}

.container-btn {
  transition: var(--Transition);
  height: 200%;
}
.btn-no-hover,
.btn-modal-no-hover,
.btn-modal-hover {
  display: block;
  padding-top: 21px;
  padding-bottom: 21px;
  height: 50%;
  /* padding-left: 80px;
  padding-right: 80px; */
  white-space: nowrap;
}
.btn-no-hover {
  color: var(--Primary);
}
.btn-no-hover,
.btn-modal-no-hover {
  text-align: center;
  border-color: var(--Primary);
}
.btn-modal-no-hover {
  background-color: var(--Primary);
  color: var(--White);
}
.btn-modal-hover {
  text-align: center;
  background-color: var(--Hover);
  border-color: var(--Hover);
  color: var(--White);
}
.btn-no-hover {
  text-align: center;
  background-color: none;
}
.btn-center > .container-btn > .btn-modal-no-hover,
.btn-center > .container-btn > .btn-modal-hover {
  padding-left: 0px;
  padding-right: 0px;
}
body, * {
  font-family: 'PT Sans';
  color: var(--Text);
  font-weight: 400;
}
/* header */
.main-header {
  position: sticky;
  top: 0px;
  width: 100%;
  height: 100px;
  background-color: #FFF;
  border-bottom: solid 1px var(--Stroke);
  z-index: 990;
}
.left-header {
  position: relative;
  display: flex;
  gap: 20px;
  height: 100%;
  align-items: center;
}
.left-header > img {
  height: 100%;
  width: auto;
}
.left-header > ul {
  display: flex;
  gap: 40px;
  align-items: center;
}
.left-header > ul > li {
  display: inline;
}
.right-header {
  display: flex;
  flex-direction: column;
}
.phone-header {
  font-family: 'PT Sans';
  font-size: 24px;
  font-weight: 400;
  line-height: 31.2px;
  text-align: right;
  color: var(--Black);
}
.adress-header {
  color: var(--Text);
  text-align: right;
}
.main-header > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* slider */
.flex-btn-slider {
  display: flex;
}
.btn-slider {
  /* padding: 25px; */
  position: relative;
  width: 70px;
  height: 70px;
  display: block;
  justify-content: center;
  align-items: center;
  background-color: var(--Primary);
  cursor: pointer;
  overflow: hidden;
}
.btn-slider > .container-btn > .btn-modal-no-hover,
.btn-slider > .container-btn > .btn-modal-hover {
  position: absolute;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
}
.btn-slider > .container-btn {
  height: 100%;
  transform: translateY(0%);
}
.btn-slider > .container-btn > .btn-modal-hover {
  transform: translateY(100%);
}
.btn-slider svg {
  width: 20px;
  height: 20px;
}
.btn-slider-next svg {
  transform: rotate(180deg);
}
.btn-slider:hover {
  .container-btn {
    transform: translateY(-100%);
  }
}

/* footer */
.table-footer {
  width: 100%;
  border-spacing: 0px;
  border-collapse: collapse;
}
.table-footer > thead > tr > td {
  position: relative;
  width: 50%;
  padding-left: 60px;
  padding-top: 20px;
  padding-bottom: 25px;
}
.table-footer > tbody > tr > td > .input-container > input {
  padding-left: 30px;
  padding-top: 22px;
  padding-bottom: 28px;
}
.table-footer > thead > tr > td,
.table-footer > tbody > tr > td {
  border: solid 1px var(--Stroke);
}
.table-footer > thead > tr > td > h2 {
  margin: 0px;
}
.table-footer > thead > tr > td:first-child {
  padding-left: 40px;
}
.table-footer > thead > tr > td:last-child {
  background-color: var(--Table-1);
}
.table-footer > thead > tr > td > p {
  margin-top: auto;
  margin-bottom: auto;
  width: 490px;
}

.input-container {
  position: relative;
}
input[type="submit"] {
  cursor: pointer;
}
input {
  outline: none;
  border: none;
  background: none;
}
textarea {
  background: none;
}
.input-no-valid {
  border: solid 1px #D12D26;
}
.input-submit-footer {
  background-color: #fff;
  color: var(--Primary);
}
label {
  position: absolute;
  top: 0px;
  left: 0px;
  color: var(--Stroke);
  z-index: -1;
}
.active-label {
  color: var(--Primary);
  transform: translateY(-65%) translateX(-35%) scale(0.3);
}

.footer-contacts {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 40px;
  padding-bottom: 45px;
  /* display: flex; */
  justify-content: space-between;
}
.left-field-footer-contacts > a {
  display: block;
  width: fit-content;
}
.footer-contacts-container,
.footer-menu-container {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.footer-menu-container {
  align-items: center;
}
.footer-menu {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.footer-menu-container > ul {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
}
.footer-menu-container > ul > li {
  list-style-type: none;
}

/*  &gt;  */
.Breadcrumb-stick {
  position: relative;
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: auto;
  margin-bottom: auto;
  height: 10px;
  width: 1px;
  background-color: var(--Stroke);
}

/* custom-modal */
.background-custom-modal {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: block;
  z-index: 998;
}
.right-modal {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 950px;
  height: 100vh;

  display: none;

  background-color: var(--White);
  transform: translateX(100%);
  z-index: 999;
}
.right-modal-active {
  display: block;
  transform: translateX(0%);
}

/* pagination */
.pagination-post {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: var(--Margin-bottom-block);
}
.pagination-post > .current {
  color: var(--Hover);
}

/* 404 */
.container-404 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 110px;
}
.page-404-info {
  width: 470px;
  padding-top: 100px;
}

.page-404-info > h3 {
  margin-bottom: 30px;
}
.page-404-info > p {
  margin-bottom: 40px;
}
.container-404 > img {
  width: 680px;
  height: auto;
}
.error-page {
  min-height: 0px !important;
}

.title-container-btn {
  display: flex;
  justify-content: space-between;
}



/* modals */
.background-custom-modal {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: block;
  z-index: 998;
  opacity: 0;
  transform: translateX(100%);
  transition: var(--Transition);
}
.background-custom-modal-active {
  transform: translateX(0%);
  opacity: 1;
}

.custom-modal-left,
.custom-modal {
  position: fixed;
  top: 0px;
  right: 0px;
  transform: translateX(100%);
  width: 950px;
  height: 100vh;
  background-color: var(--White);
  z-index: 999;
  transition: var(--Transition);
}
.custom-modal-left {
  left: 0px;
  transform: translateX(-100%);
}
.custom-modal-active {
  transform: translateX(0%);
}

.modal-top {
  padding: 30px;
  padding-top: 17px;
  padding-bottom: 17px;
}
.modal-container-title {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-top: solid 1px var(--Stroke);
  border-bottom: solid 1px var(--Stroke);
  padding-left: 30px;
}
.close-custom-modal {
  width: 130px;
  height: 130px;
  overflow: hidden;

  cursor: pointer;

  /* display: flex;
  justify-content: center;
  align-items: center; */
  border-left: solid 1px var(--Stroke);
}
.title-modal {
  height: fit-content;
}

.input-custom-modal {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 22px;
  padding-bottom: 28px;
  border-top: solid 1px var(--Stroke);
  border-bottom: solid 1px var(--Stroke);
  width: 100%;
}

input[type="file"] {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  opacity: 0;
}

label {
  left: 30px;
  top: 22px;
}
.input-container > input,
.input-container > textarea {
  box-sizing: border-box;
  border: solid 1px var(--Stroke);
  width: 100%;
}    
.input-container > input:hover,
.input-container > textarea:hover {
  border: solid 1px var(--Hover);
}

.custom-modal .input-container > textarea {
  position: relative;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 22px;
  padding-bottom: 28px;
  border-top: solid 1px var(--Stroke);
  border-bottom: solid 1px var(--Stroke);
  height: 270px;
  width: 100%;
  outline: none;
  /* box-sizing: border-box; */
}

.container-file {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: auto auto;
  height: 100px;
  border-bottom: solid 1px var(--Stroke);
}
.add-file-review {
  position: relative;
  display: block;
  border-top: solid 1px var(--Stroke);
  border-bottom: solid 1px var(--Stroke);
  height: 100%;
}
.add-file-container {
  position: relative;
  border-top: solid 1px var(--Stroke);
  border-bottom: solid 1px var(--Stroke);
  border-right: solid 1px var(--Stroke);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.add-file-container > input {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 10;
}
.comm-add-file {
  position: relative;
  width: fit-content;
  padding-left: 0px;
  height: 100%;

  overflow: hidden;
}
.container-add-file-for-hover {
    height: 100%;
  transition: var(--Transition);
}
.comm-add-file:hover {
  .container-add-file-for-hover {
    transform: translateY(-100%);
  }
}
.container-add-file-for-hover > .btn-add-file-form:nth-child(2) {
  background-color: var(--Hover);
}
.container-file > p {
  width: 260px;
}
.placeholder-input-file {
  position: relative;
  display: flex;
  gap: 20px;
}
.btn-add-file-form {
  width: 540px;
  height: 100%;
  border: solid 1px var(--Stroke);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
.text-file-form > h3,
.text-file-form > p {
  color: var(--Stroke);
}
.text-file-form > p {
  width: 270px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


.theme-modal > .is-close-btn {
  display: none;
}
.theme-modal {
  position: relative;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.theme-modal > .title {
  width: 370px;
  margin-bottom: 10px;
}
#modal-success {
  overflow: hidden;
}
.modal-decor {
  position: absolute;
  height: 100%;
  width: auto;
  left: 0px;
  top: 0px;
}
.submit-form-modal {
  text-align: left;
  width: 100%;
  padding-top: 22px;
  padding-bottom: 28px;
  padding-left: 30px;
  padding-right: 30px;
  border-bottom: solid 1px var(--Stroke);
  cursor: pointer;
}
.svg-view {
  height: 40px;
  width: 40px;
}
.container-img-hover-main {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: var(--Transition);
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 81px;
  width: 81px;
  cursor: pointer;
}

.menu-item > a {
  text-transform: uppercase;
  position: relative;
}
.menuTop > .menu-item > a::after {
  content: '';
  display: block;
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: var(--Primary);
  transition: var(--Transition);
}

.menuTop > .menu-item:hover {
  a::after {
    width: 100%;
  }
  .sub-menu a::after {
    width: 0%;
  }
  .sub-menu {
    transform: translateX(0%);
  }
}

.menuTop {
  position: relative;
}
.menuTop > li > a {
  position: relative;
}
.menuTop > li > a::before {
  background-color: #ffffff00;
}
.menuTop > .menu-item:hover {
  a::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    width: 100%;
    background-color: #ffffff00;
    height: 70px;
  }
  svg > g > path {
    fill: var(--Primary);
  }
}
.sub-menu::after {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 120vw;
  transform: translateX(-30%);
  height: 100%;
  background-color: var(--White);
  z-index: -1;
}
.sub-menu {
  position: absolute;
  top: 66px;
  left: 0px;
  width: 100%;
  height: fit-content;
  padding-top: 40px;
  padding-bottom: 40px;
  transition: var(--Transition);
  transform: translateX(-300%);
}
.sub-menu li {
  list-style: none;
}


@media(max-width: 1700px) {
  .container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    min-width: 280px;
    max-width: 100%;
  }
}
@media(max-width: 1570px) {
  .left-header > ul {
    gap: 20px;
  }
}
@media (max-width: 1430px) {
  .phone-header {
    font-size: 20px;
  }
  .adress-header {
    font-size: 12px;
  }
  .menuTop {
    font-size: 14px;
  }
}

.container-right-header {
  display: flex;
  align-items: center;
  gap: 20px;
}
.burger {
  position: relative;
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.burger > span {
  position: relative;
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--Primary);
}

@media(max-width: 1360px) {
  .left-header > ul {
    display: none;
  }
  .burger {
    display: flex;
  }
}
@media(max-width: 690px) {
  .adress-header {
    display: none;
  }
}
@media(max-width: 560px) {
  .phone-header {
    font-size: 16px;
  }
  .left-header > a > img {
    height: 70px;
  }
  .main-header {
    height: 70px;
  }
}
@media(max-width: 440px) {
  .phone-header {
    font-size: 14px;
  }
}
@media(max-width: 400px) {
  .left-header > a > img {
    height: 55px;
  }
  .main-header {
    height: auto;
  }
  .phone-header {
    line-height: 15.2px;
  }
}
@media(max-width: 360px) {
  .phone-header {
    font-size: 12px;
  }
  .left-header > a > img {
    height: 45px;
  }
  .main-header {
    height: auto;
  }
}
#modal-menu {
  width: 320px;
  padding: 10px;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}
.burger-head {
  height: 60px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.burger-logo > img {
  height: 100%;
}
.burger-head > .close-custom-modal {
  border-left: none;
  height: 100%;
}
.burger-head > .close-custom-modal > svg {
  height: 30px;
  width: 30px;
}
.burger-head > .close-custom-modal {
  width: fit-content;
}


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

/* media btn */
@media(max-width: 440px) {
  .service-block > .container > .btn,
  .product-block > .container > .btn,
  .after-stocks-slider > .btn,
  .after-project-slider > .btn,
  .after-review-slider > .btn,
  .more-certificates,
  .title-container-btn > .btn {
    width: 100%;
  }
}
.content .container {
  padding-left: 0px;
  padding-right: 0px;
}



.title-container-btn {
  gap: 20px;
  margin-bottom: 40px;
}
@media(max-width: 730px) {
  .title-container-btn {
    flex-direction: column;
  }
}
.title-container-btn > .page-title {
  margin-bottom: 0px;
}

label {
  transition: var(--Transition);
}
.sub-menu::after {
  width: 120vw !important;
  transform: translateX(-30%) !important;
}


.container-close-custom-modal-el {
  position: relative;
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-close-custom-modal {
  position: relative;
  transition: var(--Transition);
  height: 200%;
}
.close-custom-modal-form {
  position: relative;
}
.close-custom-modal-form:hover {
  .container-close-custom-modal {
    transform: translateY(-50%);
  }
}

.close-cm-hover {
  background-color: var(--Hover);
}

.table-footer > thead > tr > td > p > a {
  color: var(--Primary);
  text-decoration: underline;
}
.container-btn-form-submit {
  transition: var(--Transition);
}
.container-btn-form-submit > input:nth-child(1) {
  color: var(--Primary);
}
.container-btn-form-submit > input:nth-child(2) {
  background-color: var(--Hover);
  color: var(--White);
}

.btn-submit-obj {
  height: 101px;
  overflow-y: hidden;
}
.btn-submit-obj:hover {
  .container-btn-form-submit {
    transform: translateY(-50%);
  }
}
.cd-upload-btn,
.codedropz-upload-wrapper {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.submit-form-modal-hover {
    background-color: var(--Hover);
    color: var(--White);
}

@media(max-width: 950px) {
    .custom-modal {
        width: 100%;
    }
}

@media(max-width: 880px) {
    .custom-modal .input-container > textarea {
        height: 120px;
    }
    .container-file {
        grid-template-columns: 100%;
        grid-template-rows: auto auto;
    }
    .btn-add-file-form {
        width: 100%;
    }
    .comm-add-file {
        width: 100%;
        height: 100px;
    }
    .container-file {
        height: 100%;
    }
    .container-file > p {
        margin: 0 auto;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

#modal-menu {
    overflow-y: auto;
}

.burger-body > ul > li {
    list-style-type: none;
    padding-left: 0px;
}
.burger-body {
    padding: 25px;
}
.burger-body > ul {
    padding-left: 0px;
}

.burger-body .sub-menu {
    display: none;
}

.burger-body > ul {
    margin-bottom: 30px;
}

.burger-body > .menuTop > li > a:after,
.burger-body > .menuTop > li > a:before {
    display: none;
}

.burger-body > .phone-header {
    font-size: 20px;
}

.custom-modal {
    overflow-y: auto;
}

@media(max-width: 1250px) {
    .table-footer > thead > tr > td > h2 {
        font-size: 35px;
    }
    .table-footer > thead > tr > td {
        padding-left: 30px;
        padding-right: 30px;
    }
    .table-footer > thead > tr > td > p {
        font-size: 14px;
    }
}
@media(max-width: 900px) {
    .table-footer > thead > tr {
        display: flex;
        flex-direction: column;
    }
    .table-footer > thead > tr > td {
        width: 100%;
    }
    .footer-contacts-container {
        flex-direction: column;
        gap: 30px;
    }
}

@media(max-width: 1160px) {
    .footer-menu-container {
        flex-direction: column;
        gap: 30px;
    }
}

@media(max-width: 980px) {
    #menu-menyu-podval {
        /* flex-direction: column; */
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        align-items: start;
    }
    #menu-menyu-podval > li {
      margin-bottom: 0px;
    }
}
@media(max-width: 420px) {
  #menu-menyu-podval {
    flex-direction: column;
  }
}

@media(max-width: 530px) {
    .table-footer > thead > tr > td > p {
        width: 100%;
    }
    .left-field-footer-contacts > a {
        font-size: 28px;
    }
    .footer-menu-container {
        align-items: start;
    }
}

@media(max-width: 480px) {
    .site-footer .input-container label {
        font-size: 26px;
        top: 36px;
    }
    .site-footer .input-container .active-label {
        transform: translateY(-100%) translateX(-35%) scale(0.3);
    }
}

@media(max-width: 420px) {
    .left-field-footer-contacts > a {
        font-size: 20px;
    }
}

.wpcf7-response-output {
    display: none !important;
}

#primary .container .container {
    padding-left: 0px;
    padding-right: 0px;
}

#modal-success > .title,
#modal-success > .subtitle {
  z-index: 10;
}

@media(max-width: 1080px) {
  .container-404 {
    position: relative;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .page-404-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .container-404 > img {
    width: 60%;
  }
  .page-404-info > p {
    text-align: center !important;
  }
}

@media(max-width: 470px) {
  .page-404-info > p {
    width: 90%;
  }
}
@media(max-width: 440px) {
  .page-404-info > p {
    width: 320px;
  }
}

.input-no-valid {
	border: solid 1px red !important;
}

.breadcrumbs > span:last-child > a > span {
  color: var(--Primary);
}



.left-field-footer-contacts > a {
  color: var(--Black);
}

.footer-menu-container > h5 {
  color: var(--text);
}

.grampus-logo > .grampus-logo {
  color: var(--Black);
}

@media(max-width: 630px) {
  .block-after-footer {
    flex-direction: column;
    gap: 15px;
  }
}

.left-field-footer-contacts > a:hover {
  color: var(--Primary);
}

.icon-text > p, .icon-text > h4 {
  color: var(--Black);
}
.adress-container-contact > .contact-data-text,
.table-footer > thead > tr > td > .p1,
.text-info-product > ul > li,
.product-cost > ul > li > .p2,
.product-razmer > .p2 {
  color: var(--Black);
}

.menu-item-has-children > svg {
  transition: var(--Transition);
}
.menu-item-has-children:hover {
  svg {
    transform: rotate(180deg);
  }
}

.table-product-left {
  flex-grow: 1;
}
::-webkit-scrollbar-thumb { border-radius: 10px; }


@media(max-width: 580px) {
  .close-custom-modal {
    width: 85px;
    height: 85px;
  }
  .container-close-custom-modal-el > svg {
    width: 35px;
    height: 35px;
  }

  .custom-modal .modal-container-title .title-modal {
    font-size: 30px;
  }
  .btn-submit-obj {
    height: 84px;
  }
}

@media(max-width: 420px) {
  .custom-modal .modal-container-title .title-modal {
    font-size: 22px;
  }
}

@media(max-width: 430px) {
  .table-footer > thead > tr > td > h2 {
    font-size: 23px;
  }
}
@media(max-width: 630px) {
  .right-field-banner > .pagination {
    left: 7% !important;
  }
}

.comm-review-open {
  overflow: visible !important;
  height: auto;
  max-height: none !important;
}
.block-comm-review-open {
  height: auto !important;
}
.btn-reviews-details-margin {
  margin-bottom: 30px;
}
.review-item-open {
  height: auto !important;
}

.sub-menu a::after {
  content: '';
  display: block;
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: var(--Primary) !important;
  transition: var(--Transition);
}

.sub-menu > .menu-item:hover {
  a::after {
    width: 100% !important;
  }
}
.body-single-service > p {
  color: var(--Black) !important;
}


::-moz-scrollbar-button:decrement,
::-moz-scrollbar-button:increment,
::-webkit-scrollbar-button:decrement,
::-webkit-scrollbar-button:increment {
  width: 0px;
}

::-webkit-scrollbar-button {
  height: 0;
  width: 0
}

.theme-modal h3 {
  color: var(--Black);
}
.theme-modal.fancybox__content {
  width: 490px;
}
.theme-modal {
  overflow: hidden;
}
.fancybox__content {
  padding-left: 60px !important;
  padding-right: 60px !important;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.theme-modal .subtitle {
  width: 370px;
}

@media(max-width: 700px) {
  .container {
    overflow: hidden;
  }
}

.body-single-service {
  /*height: 55vh;*/
  height: 45%;
  overflow-y: auto;
}
@media(max-width: 1240px) {
  .body-single-service {
    height: auto;
    overflow-y: visible;
  }
}
.review-slider {
  height: fit-content !important;
}
.review-item {
  height: 100% !important;
}

.top-right-single-service {
    max-height: calc(100% - 140px);
}

@media(1240px <= width <= 1530px) {
    .top-right-single-service > h1 {
        font-size: 58px !important;
    }
}