/*============= ALIGNES ===============*/
:root{
  --main: #062939;
  --sec: #e58b53;
  --bg: #e9ecf1;
  --lText: #56585b;
}

.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-weight: 400;
  box-sizing: inherit;
}

body {
  background-color: var(--bg);
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
  color: var(--main);
  font-family: Manrope;
  font-size: 16px;
}
.seo-text::-webkit-scrollbar {
  width: 3px; 
}
.seo-text::-webkit-scrollbar-track {
  background-color: var(--main);
  border-radius: 0px;
  border-left: 1.5px dashed transparent;
  border-right: 1.5px dashed transparent;
  background-clip: padding-box;
}
.seo-text::-webkit-scrollbar-thumb {
  background: var(--main);
  border-radius: 41px;
}
a {
  text-decoration: none;
  transition: all 0.3s ease-in;
  color: var(--text);
}

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

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

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

h1.page-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 60px;
  margin-top: 60px;
}

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-top: 90px;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}
.breadcrumbs span {
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  transition: 0.3s;
}
.breadcrumbs span:hover {
  color: var(--sec);
}
.breadcrumbs .current-item span{
  cursor: auto;
}
.breadcrumbs span.current-item {
  color: var(--sec);
}
.breadcrumbs .current-item:hover span {
  color: var(--lText);
}
.container {
  max-width: 1650px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: fit-content;
  background: transparent;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--sec);
  padding: 19px 30px 19px 67px;
  background-color: transparent;
  border: 1px solid var(--sec);
  cursor: pointer;
  border-radius: 100px;
  transition: 0.3s;
}
.btn:hover {
  padding-left: 30px;
  padding-right: 67px;
  background-color: var(--sec);
  color: white;
}
.btn:before {
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
  left: 3px;
  border-radius: 50%;
  background-color: var(--sec);
  background-image: url(../images/btn.svg);
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s;
}
.btn:hover:before {
  left: unset;
  right: 3px;
  transform: rotate(45deg);
  background-color: white;
  background-image: url(../images/btnHoverG.svg);
}
.btn.second {
  background: transparent;
  color: var(--main);
  border-color: var(--main);
}
.btn.second:hover {
  padding-left: 30px;
  padding-right: 67px;
  background-color: var(--main);
  color: white;
}
.btn.second:before {
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
  top: 3px;
  left: 3px;
  border-radius: 50%;
  background-color: var(--main);
  background-image: url(../images/btn.svg);
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s;
}
.btn.second:hover:before {
  left: unset;
  right: 3px;
  transform: rotate(45deg);
  background-color: white;
  background-image: url(../images/btnHoverS.svg);
}
#main,
#primary,
main {
  min-height: 64vh;
  margin-top: 135px;
}
.home #main {
  margin-top: unset;
}
.swiper-button-prev,
.swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.swiper-button-prev:hover ,
.swiper-button-next:hover {
  background: var(--main);
}
.swiper-button-disabled {
  background: white !important;
  opacity: 1 !important;
  width: 50px;
  height: 50px;
  border: 1px solid var(--main);
}
.swiper-button-disabled path {
  stroke: var(--main);
}
.block-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 40px;
}
.desc ul,
.desc ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}
.desc ul li {
  padding-left: 20px;
  position: relative;
}
.desc ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  top: 5px;
  left: 0;
  position: absolute;
  background: var(--main);
  border-radius: 50%;
}
.pagination {
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-content: center;
  padding: 0px 50px;
  gap: 25px;
  position: relative;
}
.page-numbers {
  font-size: 24px;
  font-weight: 400;
  transition: 0.3s;
  color: #929292;
}
.page-numbers.current {
  color: var(--main);
}
.page-numbers:hover {
  color: var(--main);
}
.page-numbers.active {
  color: var(--main);
}
.prev.page-numbers,
.next.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--grad);
  transition: 0.3s;
  width: 49px;
  height: 49px;
  position: absolute;
}
.prev.page-numbers {
  left: 0;
}
.prev.page-numbers svg,
.next.page-numbers svg {
  max-width: 90%;
}
.next.page-numbers {
  right: 0;
}
.prev.page-numbers:hover,
.next.page-numbers:hover {
  background: white;
  border: 1px solid var(--main);
}
.prev.page-numbers path,
.next.page-numbers path {
  transition: 0.3s;
  stroke: white;
}
.prev.page-numbers:hover path,
.next.page-numbers:hover path {
  stroke: var(--main);
}
.desc {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#modal-background {
  z-index: 100 !important;
}
.text-holder {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.text-holder ul,
.text-holder ol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.text-holder p,
.text-holder li {
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
}
.text-holder ul li {
  position: relative;
  padding-left: 18px;
}
.text-holder li:before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  background: var(--main);
  border-radius: 50%;
  top: 9px;
  left: 0;
}
.text-holder h2 {
  font-size: 42px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  margin-top: 25px;
  margin-bottom: 20px;
}
.text-holder h3 {
  font-size: 32px;
  font-weight: 800;
  line-height: 100%;
  margin-top: 20px;
  margin-bottom: 15px;
}
.text-holder h4 {
  font-size: 24px;
  font-weight: 800;
  line-height: 100%;
  margin-top: 15px;
  margin-bottom: 10px;
}
.text-holder h5 {
  font-size: 18px;
  font-weight: 800;
  line-height: 100%;
  margin-top: 10px;
  margin-bottom: 5px;
}
.text-holder h6 {
  font-size: 14px;
  font-weight: 800;
  line-height: 100%;
  margin-top: 15px;
  margin-bottom: 0px;
}
.nav-holder.block {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
.nav-holder.block .buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

/*============ HEADER =================*/
#header {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 1234;
}
#header .header-wrapper {
  background: var(--main);
  padding: 18px 25px;
  display: flex;
  backdrop-filter: blur(15px);
  border-radius: 10px;
  align-items: center;
}
.home #header .header-wrapper,
.single #header .header-wrapper{
  background: rgba(50, 50, 50, 0.5);
  backdrop-filter: blur(15px);
}
.home #header .header-wrapper .btn,
.single #header .header-wrapper .btn {
  border-color: white;
  color: white;
}
.home #header .header-wrapper .btn:before,
.single #header .header-wrapper .btn:before {
  background-color: white;
  background-image: url(../images/btnHoverS.svg);
}
.home #header .header-wrapper .btn:hover,
.single #header .header-wrapper .btn:hover {
  background: white;
  color: var(--main);
}
.home #header .header-wrapper .btn:hover:before,
.single #header .header-wrapper .btn:hover:before {
  background-color: var(--main);
  background-image: url(../images/btn.svg);
}
#header .logo-holder {
  display: flex;
  max-width: 190px;
}
#header .logo-holder img {
  width: 100%;
  display: block;
  object-fit: contain;
}
#header .header-menu {
  display: flex;
  gap: 50px;
  margin: 0px 55px;
  width: 51%;
}
#header .nav-menu-element a {
  font-size: 16px;
  font-weight: 600;
  color: white;
}
#header .info-wrapper.phones {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  align-items: flex-end;
  margin-right: 30px;
}
#header .info-name {
  font-size: 18px;
  font-weight: 600;
  color: white;
}
#header .info-name:nth-child(2){
  font-size: 14px;
  opacity: 0.6;
}
#header .info-name:hover {
  color: var(--sec);
  opacity: 1;
}
#header .nav-menu-element a:hover {
  color: var(--sec);
}
#header .header-menu .nav-menu-element.active a{
  color: var(--sec);
}
#header .header-menu .nav-menu-element.active:hover a {
  color: var(--sec);
}
#header .header-menu .nav-menu-element.active .sub-menu a {
  color: var(--lText);
}
#header .header-menu .nav-menu-element.active .sub-menu a:hover {
  color: var(--sec);
}
#header .header-menu .nav-menu-element.has-childs {
  position: relative;
  margin-right: 10px;
}
#header .nav-menu-element.has-childs > a::before {
  content: "";
  background-color: white;
  width: 2px;
  height: 5px;
  position: absolute;
  left: unset;
  right: -11px;
  top:  13px;
  margin-top: -2px;
  transform: rotate(129deg);
  transition: all 0.5s ease;
  opacity: 1;
}
#header .nav-menu-element.has-childs:hover > a::before {
  transform: rotate(45deg);
  background-color: var(--sec);
}
#header .nav-menu-element.has-childs > a::after {
  content: "";
  background-color: white;
  width: 2px;
  height: 5px;
  position: absolute;
  right: -14px;
  top: 13px;
  margin-top: -2px;
  transform: rotate(45deg);
  transition: all 0.5s ease;
}
#header .nav-menu-element.has-childs:hover > a::after {
  transform: rotate(135deg);
  background-color: var(--sec);
}
#header .header-menu .sub-menu {
  position: absolute;
  top: 100%;
  width: max-content;
  height: max-content;
  left: 50%;
  right: 0;
  opacity: 0;
  /* transform: translate(-32%, -43%); */
  transition: all 0.2s ease;
  transition-delay: 0.15s;
  visibility: hidden;
  z-index: -100;
  display: flex;
  flex-direction: column;
  background: white;
  min-width: fit-content;
  padding: 20px 30px;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
#header .header-menu > .nav-menu-element.has-childs:hover .sub-menu {
  opacity: 1;
  left: 0%;
  transform: translate(-15%, 45px);
  visibility: visible;
  z-index: 100;
}
#header .header-menu .sub-menu .nav-menu-element a{
  font-size: 16px;
  font-weight: 400;
  color: var(--lText);
  border-bottom: 1px solid #EEEFF0;
  padding: 10px 0px;
  display: block;
}
#header .header-menu .sub-menu .nav-menu-element:hover a {
  color: var(--sec);
  border-color: var(--sec);
}
/*================ 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;
  margin-left: 10px;
  
}
#header .burger.open_menu span {
  background-color: var(--sec);
  width: 30px;
  height: 4px;
  transition: all 0.3s ease-in;
}
#header .burger.open_menu.clicked {
  background-color: var(--sec);
  
}
#header .burger.open_menu.clicked span {
  background: white;
  width: 24px;
}
#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 300px;
  background-color: var(--main);
  padding: 20px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
  
}
#header #mobile-mnu #close-mnu {
  font-size: 45px;
  position: absolute;
  right: 15px;
  top: 0px;
  cursor: pointer;
  transform: rotate(45deg);
  display: block;
  color: var(--sec);
}
#header #mobile-mnu a:hover {
  color: var(--sec);
}
#header #mobile-mnu .logo-holder  {
  font-size: 24px;
  font-weight: 800;
  line-height: 100%;
  margin-bottom: 20px;
}
#header #mobile-mnu .menuTop {
  list-style-type: none;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}
#header #mobile-mnu .menuTop li {
  margin-bottom: 10px;
}
#header #mobile-mnu .menuTop li a {
  font-size: 16px;
  line-height: 130%;
  font-weight: 500;
}
#header #mobile-mnu .menuTop li a:hover {
  color: var(--sec);
}
#header #mobile-mnu .menuTop li.active a {
  color: var(--sec);
}
#header #mobile-mnu .nav-menu-element.has-childs .sub-menu{
  display: none;
  margin-top: 10px;
}
#header #mobile-mnu .nav-menu-element.has-childs .sub-menu .nav-menu-element {
  padding-left: 15px;
  position: relative;
}
#header #mobile-mnu .nav-menu-element.has-childs .sub-menu .nav-menu-element:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 9px;
  left: 0;
  position: absolute;
  background: var(--sec);
}
#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;
  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;
  font-weight: 450;
  color: var(--sec);
}
#header #mobile-mnu .email__holder .email__item:hover {
  color: var(--sec);
}
#header #mobile-mnu .email__holder .email__item svg {
  margin-right: 10px;
}
#header #mobile-mnu .email__holder .email__item svg path {
  stroke: var(--sec);
}
#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;
  font-weight: 450;
  color: var(--sec);
}
#header #mobile-mnu .phones__holder .phone__item:hover {
  color: var(--sec);
}
#header #mobile-mnu .phones__holder .phone__item svg {
  margin-right: 10px;
}
#header #mobile-mnu .phones__holder .phone__item svg path {
  stroke: var(--sec);
}
#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%;
  border: 1px solid var(--sec);
  transition: background-color .3s ease-in;
}
#header #mobile-mnu .soc__holder .soc__item svg,
#header #mobile-mnu .soc__holder .soc__item img {
  max-width: 60%;
  max-height: 60%;
}
#header #mobile-mnu .soc__holder .soc__item:hover {
  background-color: var(--sec);
}
#header #mobile-mnu .soc__holder .soc__item:hover path {
  fill: white;
}
#header #mobile-mnu.opened {
  transform: translateX(0);
}

/*============ FOOTER ===============*/
#footer {
  background: var(--main);
  border-top: 1px solid rgba(255, 255, 255, 0.367);
}
#footer .info-holder {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.367);
}
#footer .info-item {
  padding: 50px;
  display: flex;
  flex-direction: column;
}
#footer .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#footer .icon svg,
#footer .icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}
#footer .icon svg path {
  stroke: var(--sec);
  transition: 0.3s;
}
#footer .info-wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
#footer .info-name,
#footer .info-name p {
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: white;
}
#footer a.info-name:hover {
  color: var(--sec);
}
#footer .footer-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px 0px;
}
#footer .footer-dev{
  font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: white;
}

#footer .time p {
  color: white;
  font-size: 16px;
}
#footer .footer-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
#footer .logo-holder {
  display: flex;
  max-width: 290px;
}
#footer .logo-holder img {
  width: 100%;
  display: block;
  object-fit: contain;
}
#footer .foot-menu {
  display: flex;
  gap: 50px;
}
#footer .nav-menu-element a {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: white;
}
#footer .nav-menu-element a:hover {
  color: var(--sec);
}
#footer .nav-menu-element.active a{
  color: var(--sec);
}
#footer .nav-menu-element.active:hover a {
  color: var(--sec);
}
#footer .nav-menu-element.active .sub-menu a {
  color: var(--lText);
}
#footer .nav-menu-element.active .sub-menu a:hover {
  color: var(--sec);
}
#footer .nav-menu-element.has-childs {
  position: relative;
  margin-right: 10px;
}
#footer .nav-menu-element.has-childs > a::before {
  content: "";
  background-color: white;
  width: 2px;
  height: 5px;
  position: absolute;
  left: unset;
  right: -11px;
  top:  13px;
  margin-top: -2px;
  transform: rotate(129deg);
  transition: all 0.5s ease;
  opacity: 1;
}
#footer .nav-menu-element.has-childs:hover > a::before {
  transform: rotate(45deg);
  background-color: var(--sec);
}
#footer .nav-menu-element.has-childs > a::after {
  content: "";
  background-color: white;
  width: 2px;
  height: 5px;
  position: absolute;
  right: -14px;
  top: 13px;
  margin-top: -2px;
  transform: rotate(45deg);
  transition: all 0.5s ease;
}
#footer .nav-menu-element.has-childs:hover > a::after {
  transform: rotate(135deg);
  background-color: var(--sec);
}
#footer .sub-menu {
  position: absolute;
  top: 0;
  width: max-content;
  height: max-content;
  left: 50%;
  right: 0;
  opacity: 0;
  transform: translate(-32%, -43%);
  transition: all 0.2s ease;
  transition-delay: 0.15s;
  visibility: hidden;
  z-index: -100;
  display: flex;
  flex-direction: column;
  background: white;
  min-width: fit-content;
  padding: 20px 30px;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
#footer .nav-menu-element.has-childs:hover .sub-menu {
  opacity: 1;
  left: 0%;
  transform: translate(-5%, -100%);
  visibility: visible;
  z-index: 100;
}
#footer .sub-menu .nav-menu-element a{
  font-size: 16px;
  font-weight: 400;
  color: var(--lText);
  border-bottom: 1px solid #EEEFF0;
  padding: 10px 0px;
  display: block;
}
#footer .sub-menu .nav-menu-element a:before {
  content: "";
  width: 8px;
  height: 8px;
  top: 28px;
  left: 28px;
  position: absolute;
  background: var(--grad);
  border-radius: 50%;
}
#footer .sub-menu .nav-menu-element:hover a {
  color: var(--main);
  border-color: #EEEFF0;
}
#footer .line{
  height: 1px;
  background: white;
  opacity: 0.3;
}
#footer .bottom-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 30px 0px;
}
#footer .privacy-holder {
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: white;
}
#footer .privacy-holder:hover {
  color: var(--sec);
}
#footer .dev {
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
  display: flex;
  gap: 5px;
}
#footer .dev:hover {
  color: var(--sec);
}
#footer .dev path {
  transition: all 0.3s ease-in;
  fill: var(--lText);
}
#footer .dev:hover path {
  fill: var(--sec);
}
#footer .rights {
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: white;
}


/* ============== MODAL ============= */
.wpcf7 .wpcf7-response-output,
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 .ajax-loader {
  display: none;
}
.wpcf7 .wpcf7-spinner {
  display: none;
}
.theme-modal {
  height: fit-content;
  width: 680px;
  max-height: 90vh;
  max-width: 90vw;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  transition: transform .3s ease-in;
  z-index: 9999;
  overflow: hidden;
  background: #F5F5F5;
  padding: 40px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
}
.theme-modal.modal-open {
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.theme-modal .close-modal {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
.theme-modal .close-modal path {
  transition: 0.3s;
}
.theme-modal .close-modal:hover path {
 stroke: var(--main);
}
.theme-modal .modal-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 100%;
  margin-bottom: 20px;
}
.theme-modal .modal-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
  margin-bottom: 20px;
}
.theme-modal .form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.theme-modal .form-top {
  display: flex;
  gap: 20px;
}
.theme-modal .form-top .left-side  {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 10px;
}
.theme-modal .form-top .form-floating.text{
  width: 50%;
  height: 120px;
}
.theme-modal .form-top .form-floating.text textarea {
  height: 100%;
  border: 1px solid black;
  padding-left: 20px;
  border-radius: 3px;
}
.theme-modal .form-top .form-floating.text label {
  padding-left: 20px;
}
.theme-modal .form-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  justify-content: space-between;
}
.theme-modal .privacy {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
  width: 50%;
}
.theme-modal .privacy a {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: var(--main);
  text-decoration: underline;
}
.theme-modal .privacy a:hover {
  color: var(--sec);
}
#modal-success.theme-modal {
  padding: 40px 20px 20px 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: unset;
  height: fit-content;
  width: fit-content;
}
#modal-success.theme-modal .close-modal {
  top: 10px;
  right: 10px;
}
.theme-modal .close-modal path {
  transition: 0.3s;
}
.theme-modal .close-modal:hover path{
  stroke: var(--sec);
}
#modal-success.theme-modal .modal-title {
  text-align: center;
}
.form-floating {
  position: relative;
  width: 100%;
  display: flex;
}
.form-control {
  display: block;
  padding: 15px 20px 15px 0px;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
  -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;
  border: unset;
  border-bottom: 1px solid black;
  background: transparent;
  height: fit-content;
}
.form textarea {
  resize: none;
}
.form-control.text {
  overflow: auto;
}
.form-control:focus {
  border-color: var(--main);
}
.form-control::placeholder {
  transition: 0.5s;
  font-size: 16px;
  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;
  font-size: 16px;
  font-weight: 400;
}
.form .form-floating .form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
  transform: scale(1) translateY(-10px) translateX(0px);
  font-size: 10px;
  font-weight: 400;
  line-height: 150%;
}
#file {
  display: none;
}
.file {
  background: var(--primary, linear-gradient(90deg, #0077C2 0%, #59A5F5 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 100%;
}

#modal-review .form {
  gap: 20px;
}
/* ============== Pages Start============= */
.error404 .error-holder {
  background-image: url(../images/404.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}
.error404 .error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0px;
}
.error404 .error-title {
  font-size: 300px;
  font-weight: 800;
  line-height: 100%;
  background: var(--main);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.error404 .error-subtitle {
  font-size: 42px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.error404 .error-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  margin-bottom: 40px;
  color: var(--lText);
  width: 55%;
}
.privacy-policy .content {
  margin-bottom: 40px;
}
.privacy-policy .content p strong {
  font-weight: 600;
}
.page-id-215 .offer-block {
  padding-top: 80px;
}
.page-id-99 h1.page-title {
  margin-bottom: 30px;
}







/* ============== Archive-news Start ============= */
#archive-news {
  padding-bottom: 100px;
}
#archive-news .news-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#archive-news .news-item {
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  position: relative;
  width: calc((100% - 20px) / 2);
  height: auto;
  background: white;
}
#archive-news .news-item .gallery {
  width: 100%;
  max-height: 410px;
  display: flex;
}
#archive-news .news-item .gallery-wrapper {
  width: auto;
}
#archive-news .news-item .gallery-img {
  box-sizing: border-box;
}
#archive-news .news-item .gallery-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
#archive-news .news-item .gallery-img::before{
  content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    pointer-events: none;
}

#archive-news .bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 40px;
  background: white;
  height: auto;
}
#archive-news .bottom-left {
  width: 75%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#archive-news .bottom-left  .data {
  color: var(--lText);
  font-size: 14px;
}
#archive-news .name {
  font-size: 22px;
  font-weight: 700;
  line-height: 135%;
  transition: 0.3s;
}
#archive-news .news-item:hover .name {
  color: var(--sec);
}
#archive-news .link {
  min-width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main);
  transition: 0.3s;
}
#archive-news .news-item:hover .link{
  background: var(--sec);
}
#archive-news .news-item:hover .link {
  transform: rotate(45deg);
}
#archive-news .category {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 40px;
  left: 40px;
  width: fit-content;
  color: white;
  font-size: 16px;
  font-weight: 400;
  z-index: 10;
  border-radius: 100px;
  padding: 10px 20px;
}
#archive-news .category.news {
  background: var(--main);
}
#archive-news .category.stocks {
  background: var(--sec);
}
#archive-news .swiper-pagination {
  position: absolute;
  top: 50px;
  right: 40px;
  left: unset;
  display: flex;
  gap: 10px;
  width: fit-content;
  z-index: 12;
  height: 10px;
}
#archive-news .swiper-pagination-bullet {
  height: 10px;
  margin: unset;
  background: white;
  width: 10px;
  border-radius: 50px;
  opacity: 1;
  transition: 0.3s;
}
#archive-news .swiper-pagination-bullet:hover {
  background: var(--sec);
}
#archive-news .swiper-pagination-bullet-active {
  width: 35px;
  background: var(--sec);
}
/* ============== Archive-news End ============= */







/* ============== Single-news Start ============= */
.single main {
  margin-top: unset;
}
.single-page .single-top {
  height: 900px;
  background-size: cover;
  position: relative;
  padding: 50px 150px;
  display: flex;
  align-items: flex-end;
}
.single-page .single-top:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url(../images/banner.png);
  pointer-events: none;
}
#single-news h1.page-title {
  color: white;
  position: relative;
  width: 80%;
  margin-bottom: 0px;
}
#single-news .desc {
  padding-top: 30px;
  padding-bottom: 100px;
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
}
/* ============== Single-news End ============= */







/* ============== Archive-works Start ============= */
#archive-works h1.page-title {
  margin-bottom: 30px;
}
#archive-works .tabs__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
#archive-works .tabs__btn {
  font-size: 16px;
  font-weight: 400;
  color: var(--lText);
  cursor: pointer;
  transition: 0.3s;
  background: white;
  padding: 10px 20px;
  border-radius: 100px;
}
#archive-works .tabs__btn.active,
#archive-works .tabs__btn:hover {
  background: var(--sec);
  color: white;
}
#archive-works .works-wrapper {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  padding-bottom: 40px;
}
#archive-works .works-item {
  display: flex;
  flex-direction: column;
  position: relative;
  background: white;
}
#archive-works .works-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
}
#archive-works .works-img .original-img {
  opacity: 1;
  transition: 0.5s;
  width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
#archive-works .works-item:hover .original-img {
  opacity: 0;
}
#archive-works .works-img .hover-img {
  opacity: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}
#archive-works .works-item:hover .hover-img {
  opacity: 1;
}
#archive-works .works-item:hover .works-img .hover-img img{
  transform: scale(1.1);
}
#archive-works .works-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 0.7;
  transition: 0.5s;
  z-index: 1;
}
#archive-works .works-img.unhovered:hover .original-img {
  opacity: 1;
}
#archive-works .works-img.unhovered:hover .original-img img {
  transform: scale(1.1);
}
#archive-works .cat {
  position: absolute;
  font-size: 16px;
  font-weight: 400;
  color: white;
  top: 20px;
  left: 20px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: var(--main);
  width: fit-content;
  z-index: 2;
  transition: 0.3s;
}
#archive-works .works-item:hover .cat {
  background: var(--sec);
}
#archive-works .cat.sec-color {
  background: var(--sec);
}
#archive-works .works-item:hover .cat.sec-color {
  background: var(--main);
}
#archive-works .info-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 25px 40px;
  gap: 10px;
}
#archive-works .info-wrapper .left-side {
  width: 80%;
  display: flex;
  flex-direction: column;
}
#archive-works .info-wrapper .left-side .name {
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
  transition: 0.3s;
  margin-bottom: 10px;
}
#archive-works .works-item:hover .name {
  color: var(--sec);
}
#archive-works .street {
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 10px;
  transition: 0.3s;
}
#archive-works .works-item:hover .street {
  color: var(--sec);
}
#archive-works .city {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
  margin-bottom: 15px;
}
#archive-works .chars-wrapper {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  width: 80%;
  gap: 20px 100px;
}
#archive-works .archive-char-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#archive-works .char-top {
  display: flex;
  gap: 4px;
  align-items: center;
}
#archive-works .char-icon {
  width: 16px;
  height: 16px;
  display: flex;
}
#archive-works .char-icon svg,
#archive-works .char-icon img  {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}
#archive-works .char-name {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
}
#archive-works .char-value {
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
}
#archive-works .icon {
  min-width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--main);
  transition: 0.3s;
}
#archive-works .works-item:hover .icon {
  background: var(--sec);
  transform: rotate(45deg);
}
/* ============== Archive-works End ============= */








/* ============== Single-works Start ============= */
#single-works .banner-gallery {
  position: relative;
  width: 100%;
  height: 100%;
}
#single-works .single-top {
  padding: unset;
  position: relative;
}
#single-works .banner-gallery-img {
  box-sizing: border-box;
}
#single-works .banner-gallery-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
#single-works .banner-gallery-img:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url(../images/banner.png);
  pointer-events: none;
}
#single-works .single-top .swiper-button-prev,
#single-works .single-top .swiper-button-next {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sec);
  border: unset;
}
#single-works .single-top .swiper-button-prev:hover,
#single-works .single-top .swiper-button-next:hover {
  background: var(--main);
}
#single-works .single-top .swiper-button-prev {
  left: 50px;
}
#single-works .single-top .swiper-button-next {
  right: 50px;
}
#single-works .banner-info {
  position: absolute;
  bottom: 85px;
  left: calc((100% - 1620px) / 2);
  display: flex;
  flex-direction: column;
  z-index: 12;
}
#single-works h1.page-title {
  color: white;
  margin-bottom: 15px;
  width: 60%;
}
#single-works .banner-subtitle {
  color: white;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
#single-works .chars {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin: 30px 0px;
}
#single-works .char-item {
  display: flex;
  flex-direction: column;
  padding: 20px;
  align-items: center;
  background: white;
  gap: 10px;
}
#single-works .char-value {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  color: var(--sec);
}
#single-works .char-value span {
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
  color: var(--sec);
}
#single-works .char-name {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
}
#single-works .texts-holder {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px 80px;
}
#single-works .text-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#single-works .text-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
}
#single-works .text p{
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
}
#single-works .people-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  background: white;
  margin-bottom: 60px;
  padding: 40px 50px;
}
#single-works .people-name {
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 5px;
}
#single-works .people-post {
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 20px;
  color: var(--sec);
}
#single-works .gallery-block {
  padding: 60px 0px;
}
/* ============== Single-works End ============= */






/* ============== Archive-services Start ============= */
#archive-services .works-block {
  padding-bottom: 60px;
}
#archive-services .services-wrapper {
    display: grid;
    padding-bottom: 30px;
    grid-template-columns: repeat(4, 1fr);
}
#archive-services .services-item {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 45px 40px;
  height: 480px;
}
#archive-services .services-item:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
  pointer-events: none;
}
#archive-services .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
#archive-services .img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.5s;
}
#archive-services .services-item:hover img {
  transform: scale(1.1);
}
#archive-services .info {
  display: flex;
  margin-top: auto;
  position: relative;
  z-index: 3;
}
#archive-services .left-side {
  display: flex;
  flex-direction: column;
  width: 80%;
}
#archive-services .name {
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 10px;
  color: white;
}
#archive-services .short-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: white;
}
#archive-services .services-item .icon {
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  min-width: 54px;
  transition: 0.3s;
  margin-left: auto;
}
#archive-services .services-item .icon path {
  transition: 0.3s;
}

#archive-services .services-item:hover .icon {
  transform: rotate(45deg);
  width: 60px;
  min-width: 60px;
  height: 60px;
  background: var(--sec);
}
#archive-services .services-item:hover path {
  stroke: white;
}
/* ============== Archive-services End ============= */









/* ============== Single-services Start ============= */
#single-services .banner-wrapper {
  position: relative;
  height: 900px;
  margin-bottom: 30px;
  background-size: cover;
}
#single-services .gallery {
  height: 100%;
}
#single-services .gallery-img {
  box-sizing: border-box;
}
#single-services .gallery-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
#single-services .banner-wrapper:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url(../images/banner.png);
  z-index: 12;
}
#single-services .banner-info {
  position: absolute;
  display: flex;
  flex-direction: column;
  bottom: 85px;
  left: calc((100% - 1620px) / 2);
  z-index: 12;
  max-width: 1000px;
}
#single-services .title {
  color: white;
  font-size: 60px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 10px;
  width: 70%;
}
#single-services .subtitle {
  color: white;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
#single-services .modal-btn {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(15px);
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 280px;
  bottom: 50px;
  right: calc((100% - 1620px) / 2);
  z-index: 12;
  cursor: pointer;
  transition: 0.3s;
}
#single-services .modal-btn:hover {
  background: white;
  backdrop-filter: unset;
}
#single-services .btn-title {
  color: white;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 30px;
  transition: 0.3s;
}
#single-services .modal-btn:hover .btn-title {
  color: var(--main);
}
#single-services .icon {
  min-width: 54px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  transition: 0.3s;
}
#single-services .icon path {
  transition: 0.3s;
}
#single-services .modal-btn:hover .icon {
  background: var(--sec);
}
#single-services .modal-btn:hover .icon path {
  stroke: white;
}
#single-services .prices-holder {
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
}
#single-services .price-title {
  margin-bottom: 0px;
}
#single-services .prices {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 0px 20px;
}
#single-services .price-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 30px 0px;
  border-bottom: 1px solid rgba(86, 88, 91, 0.20);
}
#single-services .price-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
}
#single-services .price-value {
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  color: var(--sec);
}
#single-services .btn.second {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}
/* ============== Single-services End ============= */











@media (max-width: 1650px) {
  #header .header-menu {
    margin: 0px 15px;
    gap: 30px;
    width: auto;
  }
  #single-news .single-top {
    height: 800px;
  }
  #single-works .banner-info {
    left: 15px;
    bottom: 15px;
  }
  #single-works h1.page-title {
    width: 100%;
  }
  #single-works .single-top {
    height: 800px;
  }
  #archive-services .services-item {
    height: 400px;
    padding: 15px;
  }
  #archive-services .name {
    font-size: 20px;
  }
  #archive-services .short-desc {
    font-size: 14px;
  }
  #archive-services .services-item .icon {
    margin-top: auto;
  }
  #single-services .banner-info {
    left: 15px;
    width: calc(100% - 30px);
    bottom: 110px;
    max-width: unset;
  }
  #single-services .title {
    width: 100%;
  }
  #single-services .modal-btn {
    width: calc(100% - 30px);
    padding: 15px;
    flex-direction: row;
    align-items: center;
    width: fit-content;
    gap: 10px;
    left: 15px;
    bottom: 15px;
  }
  #single-services .btn-title {
    margin-bottom: 0px;
  }
}

@media (max-width: 1450px) {
  #header .header-wrapper {
    padding: 15px;
  }
  #header .header-menu {
    display: none;
  }
  #header .burger.open_menu {
    display: flex;
    
  }
  #footer .logo-holder {
    max-width: 160px;
  }
  #footer .footer-wrapper {
    padding: 15px 0px;
  }
  #footer .foot-menu {
    gap: 15px;
  }
  #footer .nav-menu-element a {
    font-size: 14px;
  }
  #single-news .single-top {
    height: 700px;
    padding: 100px 15px 15px 15px;
  }
  #archive-works .chars-wrapper {
    width: 100%;
    gap: 20px;
  }
  #archive-works .info-wrapper {
    padding: 15px;
  }
  #archive-works .street {
    font-size: 20px;
  }
  #single-works .single-top {
    height: 700px;
  }
  #single-services .banner-wrapper {
    height: 800px;
  }
}

@media (max-width: 1200px) {
  #footer .info-item {
    padding: 15px;
  }
  #footer .info-wrapper {
    margin-top: 10px;
  }
  #footer .info-name, #footer .info-name p {
    font-size: 14px;
  }
  h1.page-title {
    font-size: 52px;
    margin-bottom: 40px;
  }
  #archive-news,
  #single-news .desc {
    padding-bottom: 80px;
  }
  #archive-news .bottom {
    padding: 15px;
  }
  #archive-news .name {
    font-size: 18px;
  }
  #archive-news .category {
    top: 5px;
    left: 5px;
    padding: 5px;
  }
  #single-news .single-top {
    height: 600px;
  }
  #single-services .title {
    font-size: 32px;
  }
  #single-works .char-value {
    font-size: 20px;
  }
  #single-works .char-value span {
    font-size: 16px;
  }
  #single-works .char-item {
    padding: 10px;
  }
  #single-works .single-top {
    height: 600px;
  }
  #archive-news .swiper-pagination {
    top: 10px;
    right: 10px;
  }
  #archive-services .services-wrapper {
    grid-template-columns: repeat(2,1fr);
  }
  #archive-services .block-top {
    margin-bottom: 40px;
  }
  #archive-services .link-icon {
    width: 100px;
    height: 100px;
    min-width: 100px;
  }
  #single-services .banner-wrapper {
    height: 700px;
  }
}

@media (max-width: 996px) {
  #footer .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  #footer .sub-menu {
    padding: 5px 15px;
  }
  #footer .sub-menu .nav-menu-element a {
    font-size: 12px;
    padding: 5px 0px;
  }
  #footer .icon {
    width: 20px;
    height: 20px;
  }
  h1.page-title {
    font-size: 42px;
    margin-bottom: 30px;
  }
  .breadcrumbs span,
  .breadcrumbs {
    font-size: 14px;
  }
  #archive-news,
  #single-news .desc {
    padding-bottom: 60px;
  }
  #archive-news .news-wrapper {
    gap: 10px;
  }
  #archive-news .link {
    min-width: 40px;
    height: 40px;
  }
  #archive-news .name {
    font-size: 16px;
  }
  #single-news .single-top {
    height: 500px;
  }
  #single-news h1.page-title {
    width: 100%;
  }
  .text-holder p, .text-holder li,
  #single-works .text p {
    font-size: 18px;
  }
  #archive-works .char-value {
    font-size: 16px;
  }
  #archive-works .char-name {
    font-size: 12px;
  }
  #single-works .people-wrapper {
    padding: 15px;
  }
  .block-title {
    margin-bottom: 30px;
    font-size: 32px;
  }
  #single-works .chars {
    grid-template-columns: repeat(2,1fr);
  }
  #single-works .texts-holder {
    gap: 30px;
  }
  #single-works .single-top {
    height: 500px;
  }
  #single-works .single-top .swiper-button-next {
    right: 15px;
    width: 40px;
    height: 40px;
    transform: translateY(-20px);
  }
  #single-works .single-top .swiper-button-prev {
    left: 15px;
    width: 40px;
    height: 40px;
    transform: translateY(-20px);
  }
  #archive-services .block-top {
    margin-bottom: 30px;
  }
  #single-services .banner-wrapper {
    height: 600px;
  }
  #single-services .prices {
    margin-top: 20px;
  }
  #single-services .price-item {
    padding: 10px 0px;
  }
  #single-services .price-name {
    font-size: 16px;
  }
  #single-services .price-value {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .breadcrumbs span, .breadcrumbs{
    padding-top: 20px;
  }
  .btn.open-modal {
        display: none;
}
  #footer .bottom-wrapper {
    padding: 10px 0px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  #footer .privacy-holder,
  #footer .dev,
  #footer .rights {
    font-size: 12px;
  }
  #header .container {
    padding: unset;
  }
  #header .header-wrapper {
    border-radius: 0px 0px 10px 10px;
    padding: 5px;
  }
  #header {
    top: 0px;
  }
  .btn {
    padding: 7px 10px 8px 41px;
    font-size: 12px;
  }
  .btn:hover,
  .btn.second:hover {
    padding-left: 10px;
    padding-right: 41px;
  }
  .btn:before,
  .btn.second:before {
    width: 30px;
    height: 30px;
    top: 1px;
    left: 1px;
  }
  #footer .foot-menu {
    flex-wrap: wrap;
    gap: 20px;
  }
  .theme-modal .form-top {
    flex-direction: column;
    gap: 10px;
  }
  .theme-modal .form-top .left-side {
    width: 100%;
  }
  .theme-modal .form-top .form-floating.text {
    width: 100%;
  }
  .theme-modal {
    padding: 40px 15px 15px 15px;
  }
  .theme-modal .modal-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .theme-modal .form-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .theme-modal .privacy {
    width: 100%;
    font-size: 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .theme-modal .form {
    gap: 10px;
  }
  .theme-modal .privacy a {
    font-size: 12px;
  }
  #footer .info-holder {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  #footer .info-item {
    padding: 10px 15px;
    flex-direction: row;
    gap: 10px;
  }
  #footer .info-wrapper {
    margin-top: unset;
  }
  h1.page-title {
    margin-bottom: 30px;
    font-size: 32px;
  }
  #main, #primary {
    margin-top: 60px;
  }
  #archive-news .news-wrapper {
    flex-direction: column;
  }
  #archive-news .news-item {
    width: 100%;
  }
  #single-news .single-top {
    height: 400px;
  }
  .text-holder p, .text-holder li,
  #single-works .text p {
    font-size: 16px;
  }
  .theme-modal {
    width: 95%;
  }
  #archive-works .works-wrapper {
    display: flex;
    flex-direction: column;
  }
  #single-works .people-name {
    font-size: 24px;
  }
  .block-title,
  #single-services .title {
    font-size: 28px;
  }
  #single-works .texts-holder {
    display: flex;
    flex-direction: column;
  }
  #archive-services .services-item {
    height: 300px;
  }
  #archive-services .info {
    flex-direction: column;
    gap: 5px;
  }
  #archive-services .left-side {
    width: 100%;
  }
  #archive-services .services-item .icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }
  #archive-services .name {
    font-size: 20px;
  }
  #archive-services .short-desc {
    font-size: 14px;
  }
  #archive-services .block-top {
    flex-direction: column;
    align-items: unset;
  }
  #archive-services .block-title {
    width: 100%;
  }
  #archive-services .link-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    margin-left: auto;
  }
  #archive-services .link-icon p {
    font-size: 13px;
  }
  main {
    margin-top: 60px;
  }
  #single-services .banner-wrapper {
    height: 500px;
  }
  #single-services .modal-btn {
    flex-direction: column;
    padding: 5px;
  }
  #single-services .icon {
    margin-right: auto;
  }
  #single-services .btn-title {
    font-size: 12px;
  }
  .error404 .error-title {
    font-size: 120px;
  }
  .error404 .error-subtitle {
    font-size: 24px;
  }
  .error404 .error-desc {
    width: 100%;
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .home #header .header-wrapper .btn, .single #header .header-wrapper .btn{
    display: none;
  }
  #header .logo-holder {
    max-width: 100px;
  }
  #header .info-wrapper.phones {
    margin-right: 10px;
  }
  #header .info-name {
    font-size: 14px;
  }
  h1.page-title,
  .block-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  #archive-news,
  #single-news .desc {
    padding-bottom: 40px;
  }
  #archive-news .bottom {
    flex-direction: column;
    gap: 5px;
  }
  #archive-news .link {
    margin-left: auto;
  }
  #archive-news .category {
    font-size: 12px;
  }
  #single-news .single-top {
    height: 300px;
  }
  .text-holder p, .text-holder li {
    font-size: 14px;
  }
  #archive-works .cat {
    padding: 5px 10px;
    top: 10px;
    left: 10px;
    font-size: 12px;
  }
  #archive-works .icon {
    min-width: 40px;
    height: 40px;
  }
  #single-services .title {
    font-size: 24px;
  }
  #single-works .gallery-block {
    padding: 40px 0px;
  }
  #single-works .banner-info {
    width: calc(100% - 30px);
  }
  #single-works h1.page-title {
    margin-bottom: 10px;
  }
  #single-works .banner-subtitle {
    font-size: 12px;
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 40px !important;
    height: 40px !important;
  }
  #archive-news .bottom-left {
    width: 100%;
  }
  #archive-services .block-top {
    margin-bottom: 20px;
  }
  #single-services .banner-wrapper {
    height: auto;
    min-height: 300px;
    display: flex;
  }
  #single-services .gallery {
    height: auto;
  }
  #single-services .icon {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }
  #single-services .modal-btn {
    width: auto;
    max-width: calc(100% - 30px);
    align-items: flex-start;
  }
  #single-services .prices {
    display: flex;
    flex-direction: column;
  }
  #single-services .btn.second {
    margin-top: 20px;
  }
  #archive-works .tabs__btn {
    padding: 5px 10px;
    font-size: 14px;
  }
  #archive-works .tabs__btns {
    gap: 10px;
  }
}

@media (max-width: 498px) {
  #header .header-wrapper {
    flex-wrap: wrap;
    gap: 10px;
  }
  #header .logo-holder {
    width: 50%;
  }
  #header .info-wrapper.phones {
    width: 50%;
  }
  #header .burger.open_menu {
    margin-left: auto;
  }
  #main, #primary {
    margin-top: 100px;
  }
  #archive-works .info-wrapper {
    flex-direction: column;
  }
  #archive-works .icon {
    margin-left: auto;
  }
  #archive-works .info-wrapper .left-side {
    width: 100%;
  }
  #single-works .chars {
    display: flex;
    flex-direction: column;
  }
  #archive-services .services-wrapper {
    display: flex;
    flex-direction: column;
  }
  main {
    margin-top: 90px;
  }
  #single-services .price-name,
  #single-services .price-value { 
    font-size: 14px;
  }
}


.grampus-cookie-notice {
    display: none;
    position: sticky;
    bottom: 0;
    margin: 0 auto;
    width: 80%;
    height: fit-content;
    padding: 10px 0;
    z-index: 2000;
    background-color: var(--cookie-bg, #fff);
    padding: 30px;
    border-radius: 20px;
}

.cookie-notice-container{
    flex-direction: row;
}

.grampus-cookie-notice p{
    text-align: center;
}

.grampus-cookie-accept-button{
    background-color: black;
    border: 1px solid black;
    border-radius: 10px;
}

@media (max-width: 600px){
    .grampus-cookie-accept-button{
        width: 100%;
    }
    .cookie-notice-container{
    flex-direction: column;
    }
}


.policy-checkbox input[type="checkbox"] {
        appearance: none;
        -webkit-appearance: none;
    
        border: 1px solid #ccc;
        border-radius: 2px;
        outline: none;
        cursor: pointer;
        position: relative;
        vertical-align: middle;
        border: 1px solid #000000;
        padding: 0;
    }
    
    /* Стиль для отмеченного чекбокса */
    .policy-checkbox input[type="checkbox"]:checked {
        background-color: #007bff;
        border-color: #007bff;
    }
    
    /* Галочка внутри чекбокса */
    .policy-checkbox input[type="checkbox"]:checked::after {
        content: "✓";
        position: absolute;
        color: white;
        font-size: 12px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    /* Стиль для ошибки (только чекбокс) */
    .policy-checkbox input[type="checkbox"].error {
        border-color: red;
        box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
    }
    
    .policy-checkbox{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding-top: 20px;
    align-items: center;
    }
    
    #consent-checkbox{
        width: 20px !important;
        height: 20px !important;
        border: 1px solid #000000 !important;
    }

.policy-checkbox label{
        width: 90% !important;
    }

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