:root {
	
	--max-w4k 			: 3840px;
	--max-wHD 			: 1920px;
	--max-w 			: 1280px;
	 
    --primary-color 	: #082340;
	--secondary-color	: #0090F3;
	
	--gray-color		: #635F5C;
	--gray-color1		: #FAFAFA;
	--gray-color2		: #6D6D6D;
	--gray-color3		: #F9F9F9;
	--gray-color4		: #DDDDDD;
	--white-color		: #FFFFFF;	
	--black-color		: #000000;
	--red-color			: rgb(245, 0, 0);
	
	
	--text-color		: #082340;
	--text-black 		: #343434;
	--text-gray			: #9E9E9E;
	

	--h1-size			: 24px;
	--h2-size			: 20px;
	--h3-size			: 18px;
	--h4-size			: 18px;
	--h5-size			: 16px;
	--h6-size			: 16px;
	
	--text-size 		: 16px;
	--text-size2 		: 18px;
	--text-size3 		: 20px;
	
	--text-lh			: normal;
}

.primary-color { color		: #082340; }
.secondary-color { color	: #0090F3; }
.gray-color { color			: #635F5C; }
.gray-color2 { color		: #6D6D6D; }
.gray-color3 { color		: #F9F9F9; }
.white-color { color		: #FFFFFF;	}
.black-color { color		: #000000; }
.red-color	 { color		: rgb(245, 0, 0); }

html,
body,
div,
p,
span,
applet,
object,
iframe,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin        : 0;
    padding       : 0;
    border        : 0;
    outline       : 0;
    vertical-align: baseline;
    font-family: "geometria";
	font-weight: 400;
	line-height: var(--text-lh);
    font-size: var(--text-size);
    color: var(--text-color);
}

html {
    font-size               : 100%;
    overflow-y              : scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust    : 100%;
}

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

body {
    background 	: var(--gray-color1);
	font-size   : var(--text-size);
	line-height : var(--text-lh); 
	font-weight: 400;
	max-width: 100%;
	min-height: 50vh;
	position: relative;
	overflow: hidden;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
main,
div,
section  {
    display	: block;
	position: relative;
}

header {
	z-index: 999;
}

h1 {
	color: var(--text-black);
	font-family: "geometria";
	font-size: var(--h1-size);
	font-style: normal;
	font-weight: 600;
	line-height: var(--text-lh); 	
}

h2 {
	color: var(--primary-color);
	font-family: "geometria";
	font-size: var(--h2-size);
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

h2.white-color {
	color: var(--white-color);
}

h3 {
	color: var(--secondary-color);
	font-family: "geometria";
	font-size: var(--h3-size);
	font-style: normal;
	font-weight: 600;
	text-align: center;
	line-height: normal;
}

h4 {
    font-family: "geometria";
    font-size: var(--h4-size);
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--secondary-color);
    text-align: center;
    width: 100%;
    margin: 0;
}

h5 {
	color: var(--primary-color);
	font-family: "geometria";
	font-size: var(--h5-size);
	font-style: normal;
	font-weight: 500;
	text-transform: uppercase;
}

h6 {
	color: var(--primary-color);
	font-family: "geometria";
	font-size: var(--h6-size);
	font-style: normal;
	font-weight: 500;
	text-transform: uppercase;
}

a {
	color: var(--text-color);
	text-decoration: none;
	transition: 0.5s linear;
	text-underline-offset: 3px;
}

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

ul, ol {
	list-style-position: inside;
	list-style-type: none;
}

.flex-row {
	display: flex;
    flex-direction: row;
	flex-wrap: wrap;
}

.flex-column {
	display: flex;
    flex-direction: column;
	flex-wrap: wrap;
}

.space-between {
	justify-content: space-between;
}

.justify-center {
	justify-content: center;
}


.align-center {
    align-items: center;
}

.align-start {
	align-items: start;
}

.align-content-center{
	align-content: center;
}

.space-evenly {
	justify-content: space-evenly;
}

.row-25-50-100 {
	width: 25%;
}

.pmb-0 {
	margin-bottom: 0;
	padding-bottom: 0;
}

.desktop {
	display: none;
}

.hideonload {
	display: none;
}

*::-webkit-scrollbar {
	width: 10px;  
	border-radius: 25px;  
}

*::-webkit-scrollbar-track {
	background-color: var(--primary-color); 
}

*::-webkit-scrollbar-thumb { 
	background:  var(--secondary-color);  
}

* {
  scrollbar-width: 16px;
  scrollbar-color: var(--primary-color); 
}

.container {
    margin: 0 auto;
    max-width: var(--max-w); 
	padding: 20px 10px;
	position: relative;
}

.button, button {
	background-color: var(--secondary-color);
	border-radius: 5px;
	width: 290px;
	color: var(--white-color);
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	padding: 0px 20px;
	text-align: center;
	transition: 0.5s linear;
	cursor: pointer;
}

button:hover,
button:focus,
.button:hover,
.button:focus {
	color: var(--secondary-color);
	background-color: var(--white-color);
}

.button-white {
	color: var(--secondary-color);
	border-radius: 5px;
	width: 290px;
	background-color: var(--white-color);
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	padding: 0px 20px;
	text-align: center;
	transition: 0.5s linear;
	cursor: pointer;
}

.button-white:hover,
.button-white:focus {
	background-color: var(--secondary-color);
	color: var(--white-color);
}

.button.calcprice {
	width: 195px;
	padding: 15px;
	font-size: 12px;
	font-weight: 300;
	margin: 0px auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: url('/wp-content/uploads/2025/03/group-3188.svg');
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: url('/wp-content/uploads/2025/03/group-3189.svg');
}

.scroll-up {
    position: fixed;
    background-color: var(--primary-color);
    right: 20px;
    bottom: 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 50px;
    z-index: 10000;
    transition: 1s;
}

.scroll-up:hover {
	background-color: var(--primary-color);
	transform: scale(1.1);
}

.scroll-up::before {
    content: "";
    width: 40px;
    height: 40px;
    background: transparent no-repeat center center;
    background-size: 100% 100%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/%3E%3C/svg%3E");
}

/*******************************************
***   HEADER   *****************************
*******************************************/

.mobile-header {
    background-color: var(--primary-color);
    position: fixed;
    z-index: 10;
    width: 100%;
    top: 0;
}

.desktop-header {
	display: none;
}

.mobile-header nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

.mobile-header-bottom,
.mobile-header-top {
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 20px 15px 5px 15px;
}

.mobile-header-bottom {
	align-items: center;
	padding: 5px 15px 20px 15px;
}

.mobile-header .mobile-header-bottom a,
.mobile-header .mobile-header-top a{
	text-decoration: none;
}

.mobile-header .mobile-header-top .calcprice {
    margin: 0;
    height: 33px;
}

.mobile-header .mobile-header-bottom .top-header-social {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}

.mobile-header .mobile-header-bottom .mobilecallback {
    color: var(--secondary-color);
    font-size: 14px;
    margin-left: 25px;
	cursor: pointer;
	font-weight: 400;
}

.mobile-header .mobile-header-bottom  .header-phone a {
	font-weight: 400;
	font-size: 16px;
	
}

.mobile-header .mobile-header-bottom  .header-phone .callback-button {
	color: var(--secondary-color);
}

.mobile-header .mobile-header-bottom  .header-phone a img{
	margin-right: 5px;
}

.mobile-header .top-header-social {
	display: flex;
	flex-direction: column;
}

.mobile-header a {
    color: var(--white-color);
    text-decoration: underline;
    font-size: 16px;
    display: flex;
    align-items: center;
    text-underline-offset: 3px;
    font-weight: 300;
}

.mobile-header .top-header-social  a img{
	height: 30px;
    width: auto;
    margin-right: 7.21px;
}

.mobile-header a:hover,
.mobile-header a:focus {
	color: var(--second-color);
}

#menuToggle {
	display: flex;
	flex-direction: column;
	z-index: 10;
	-webkit-user-select: none;
	user-select: none;
	position: unset;
}

#menuToggle input {
	display: flex;
	width: 40px;
	height: 32px;
	position: absolute;
	cursor: pointer;
	opacity: 0;
	z-index: 11;
}

#menuToggle span {
	display: flex;
	width: 29px;
	height: 2px;
	margin-bottom: 5px;
	position: relative;
	background: var(--white-color);
	border-radius: 3px;
	z-index: 1;
	transform-origin: 5px 0px;
	transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
			  background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
			  opacity 0.55s ease;
}

#menuToggle span:first-child{
	transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2){
	transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span{
	opacity: 1;
	transform: rotate(45deg) translate(-3px, -1px);
	background: var(--white-color);
}

#menuToggle input:checked ~ span:nth-last-child(3){
	opacity: 0;
	transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2){
	transform: rotate(-45deg) translate(0, -1px);
}

#menu{
    position: absolute;
    width: 100%;
    height: 100vh;
    min-height: 100%;
    text-align: center;
    left: 0;
    top: 0%;
    padding: 50px;
    background: var(--primary-color);
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(100vw, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    list-style-type: none;
    overflow: auto;
}

#menu img.custom-logo {
	margin: 0 auto;
}

#menu-verhnee-menyu {
	list-style-type: none;
}

#menu li{
	padding: 10px 0;
	transition-delay: 2s;
}

#menu li a{
	color: var(--white-color);
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	text-align: center;
	justify-content: center;
}

#menu li.menu-item-has-children a:after{
	content: url('/wp-content/uploads/2025/03/material-symbols_arrow-back-ios-new-rounded.svg');
	position: absolute;
	right: 10%;
	width: 50px;
	height: 30px;
	z-index: 11;
	transform: rotate(270deg);
}

#menu li.activeli a:after {
	transform: unset;
}

#menu li.menu-item-has-children .sub-menu a {
	font-weight: 300;
}

#menu li.menu-item-has-children .sub-menu a:after{
	content: '';
}

#menu .sub-menu {
	display: none;
}

#menuToggle input:checked ~ ul{
	transform: none;
}

#menuToggle .mobile-header-contacts {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
}

#menuToggle .mobile-header-contacts a{
	padding: 10px;
}

.aioseo-breadcrumb {
	font-weight: 500;
	font-size: 14px;
	color: var(--text-gray);
}

.aioseo-breadcrumb-separator,
.aioseo-breadcrumb a {
	color: var(--text-gray);
	font-size: 14px;
	font-weight: 400;
	word-wrap: break-word;
}

.aioseo-breadcrumb a:hover {
	color: var(--secondary-color);
}

.cat-content ul {
list-style-type: disc;
margin: 20px 0;
}

.cat-content li {
	margin: 10px 0;
}

.cat-content td,
.cat-content th {
    border: 1px solid var(--secondary-color);
    padding: 5px;
}

.cat-content th {
	font-weight: 600;
}

/**********************
*****ФОРМА ЗАПИСИ******
*********************/

.modal-wrapper {
	background: rgba(0, 0, 0, 0.7);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	z-index: 1000;
}

.modal-wrapper .black-white {
	filter: grayscale(100%);
}

.modal-wrapper .pre-modal {
    width: 100%;
    display: flex;
    height: auto;
    overflow: hidden;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    align-items: center;
    justify-content: center;
}

.modal-wrapper .modal {
    margin: 20px auto;
    max-width: 350px;
    max-height: 550px;
    width: 90%;
    height: 100%;
    background-color: var(--white-color);
    position: relative;
    height: auto;
	border-radius: 20px;
}

.modal-wrapper .modal-content {
  text-align: center;
  border-radius: 20px;
}

.modal-wrapper .modal-close {
    position: absolute;
    top: -10px;
    right: 0px;
    cursor: pointer;
    color: var(--black-color);
    font-size: 40px;
    z-index: 100;
}

.modal-wrapper .modalform {
    height: 100%;
    max-height: 460px;
    overflow: hidden;
    margin: 20px;
}
.modal-wrapper .modalform .wpcf7,
.modal-wrapper .modalform .wpcf7-form{
	padding: 0;
}

.modal-wrapper .modalform {
	display: none;
}

.modal-wrapper .wpcf7 form .form-contacts-left {
	display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.modal-wrapper .wpcf7 h2 {
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	text-align: left;
	margin: 25px 0 0 0;
	max-width: 100%;
}

.modal-wrapper .wpcf7 h2 span {
	font-size: 20px;
	font-weight: 600;
}

.modal-wrapper .wpcf7 form p {
	font-size: 16px;
	color: var(--text-color);
	text-align: left;
	margin: 10px 0 0 0;
	max-width: 100%;
	width: 100%;
}

.modal-wrapper .wpcf7 form .inputbutton {
	margin: 5px 0 10px 0;
    max-width: 100%;
}

.modal-wrapper .modal .wpcf7 input {
    background: rgba(255, 255, 255, 0.50);
	border: 2px solid #0090f333;
    display: flex;
    padding: 10px;
	width: 100%;
	max-width: unset;
    align-items: center;
}

.modal-wrapper .modal .wpcf7 input:focus-visible,
.modal-wrapper .modal .wpcf7 input:focus,
.modal-wrapper .modal .wpcf7 input:active,
.modal-wrapper .modal .wpcf7 input::selection {
	border: 2px solid #0090f3;
	
}

.modal-wrapper .modal input.wpcf7-submit {
	display: flex;
	width: 100%;
	height: 44px;
	padding: 8px 24px;
	justify-content: center;
	color: var(--white-color);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	align-items: center;
	border: 2px solid #0090f333;
	background: var(--secondary-color);
	cursor: pointer;
}

.modal-wrapper .modal input.wpcf7-submit:hover,  
.modal-wrapper .modal input.wpcf7-submit:focus{
	background: var(--white-color);
	color: var(--secondary-color);
}	

.modal-wrapper .modal .wpcf7-list-item label{
	display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    margin: 10px 0 20px 0;
}

.modal-wrapper .modal .wpcf7-list-item label input{
	width: unset;
	margin: 5px 5px 0 0;
}
	
.modal-wrapper .success-wrapper {
  display: none;
  border-radius: 6px;
  max-width: 400px;
  margin: 45vh auto;
}

.modal-wrapper .modal .privacy-text{
	color: var(--primary-color);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px; 
	margin-top: 10px;
}

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

.modal-wrapper .modal .wpcf7 input.agreeform {
	display: none;
}
	
.modal-wrapper .wpcf7-not-valid {
    border: 1px solid red !important;
	position: relative;
}

.modal-wrapper span.wpcf7-not-valid-tip:after {
	content: url('/wp-content/uploads/2025/04/weui_error-outlined1.svg');
    position: absolute;
    visibility: visible;
    top: 10px;
    right: -450px;
}

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

.modal-wrapper .successform {
	display: flex;
	padding: 32px;
	flex-direction: column;
	align-items: center;
	background: var(--white-color);
	box-shadow: 10px 10px 30px 0px rgba(0, 0, 0, 0.25);
}

.modal-wrapper .successform p {
	color: var(--black-color);
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	width: 100%;
}

.modal-wrapper .successform .thanks {
	color: var(--secondary-color);
	text-align: center;
	width: 100%;
	font-size: 22px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px; 
	margin-top: 40px;
}

.modal-wrapper .wpcf7 form .formteltext {
	font-size: 14px; 
	font-weight: 400;
}

.modal-wrapper .formtelnum {
	font-size: 15px; 
	font-weight: 500;
}

@media (max-width: 359px) {
	.navigation {
		padding: 15px 10px;
	}
	
	.mobile-header a {
		font-size: 14px;
	}
	
	.mobile-header .top-header-social a img {
		height: 18px;
	}
	
	#menu li a {
		    font-size: 12px;
	}
}

@media (min-width: 640px) {
	.modal-wrapper .modal-close {
		right: -30px;
	}
	
	.modal-wrapper .modal .wpcf7 input {
		margin: 10px 0;
	}
	
	.modal-wrapper .modal {
	max-width: 400px;
	}
}

@media (min-width: 1280px) {
	.mobile-header {
		display: none;
	}

	.desktop {
		display: block;
	}

	.mobile {
		display: none;
	}
	
	.header-block {
		height: 190px;
	}
	
	.desktop-header {
		display: block;
		background-color: var(--primary-color);
		position: relative;
		z-index: 10;
		width: 100%;
		height: 180px;
		top: 0;
		padding: 0px 50px;
		color: var(--white-color);
	}
	
	section {
		padding: 0px 50px;
	}

	.aioseo-breadcrumb,
	.aioseo-breadcrumb-separator,
	.aioseo-breadcrumb a {
		font-size: 16px;
	}
	
	h1 {
		font-size: 40px;
	}
	
	.container {
		padding: 20px 0px;
	}
	
	.desktop-header-top {
		padding-top: 20px;
		height: 90px;
		display: flex;
		flex-direction: row;
		justify-content: center;
         align-items: flex-start;
		max-width: var(--max-w);
        margin: 0 auto 20px auto;
		color: var(--white-color);
		justify-content: space-between;
	}
	
	.desktop-header-bottom {
		height: 75px;
		display: flex;
		flex-direction: row;
		justify-content: center;
        align-items: center;
		max-width: var(--max-w);
        margin: 0 auto;
		color: var(--white-color);
		border-top: 1px solid rgba(235.44, 235.44, 235.44, 0.20);
	}
	
	.header-description p,
	.header-location,
	.header-mailblock,
	.header-phoneblock,
	.header-social {
		font-weight: 300;
		color: var(--white-color);
		font-size: 12px;
		word-wrap: break-word;
		padding: 0 10px;
	}
	
	.header-description p {
		margin-left: 30px;
	}
	
	.header-phoneblock span {
		font-weight: 300;
		color: var(--white-color);
		font-size: 12px;
		word-wrap: break-word;
	}
	
	.header-description {
	    max-width: 430px;	
		height: 100%;
		display: flex;
		align-items: flex-start;
		flex-direction: row;
	}
	
	.header-location {
		max-width: 320px;
		position: relative;
		border-left: 1px solid rgba(235.44, 235.44, 235.44, 0.20);
		height: 100%;
		padding-left: 40px;
	}
	
	.header-mailblock {
		max-width: 300px;
		border-left: 1px solid rgba(235.44, 235.44, 235.44, 0.20);
		height: 100%;
		padding-left: 20px;
	}
	
	.header-phoneblock {
		max-width: 220px;
		border-left: 1px solid rgba(235.44, 235.44, 235.44, 0.20);
		height: 100%;
		padding-left: 20px;
	}
	
	.header-social {
		max-width: 50px;
		height: 100%;
		padding: 0;
		flex-wrap: unset;
	}
	
	.header-social img{
		margin-bottom: 8px;
	}		
	
	.header-location span {
		color: var(--secondary-color);
		display: block;
		font-size: 12px;
	}
	
	.header-location:before {
		content: url('/wp-content/uploads/2025/03/bi_geo-alt.svg');
		position: absolute;
		left: 20px;
		top: 4px;
	}
	
	.header-description a,
	.header-location a,
	.header-mailblock a,
	.header-phoneblock a,
	.header-social a {
		color: var(--secondary-color);
		font-weight: 400;
		font-size: 12px;
		text-decoration: underline;
		display: flex;
		align-items: center;
	}
	
	.header-description a:hover,
	.header-location a:hover,
	.header-mailblock a:hover,
	.header-phoneblock a:hover,
	.header-social a:hover {
		color: var(--white-color);
	}
	
	.header-mailblock a img,
	.header-phoneblock a img {
		margin-right: 10px;
	}
	
	.header-phoneblock .callback-button {
		color: var(--white-color);
		margin-top: 4px;
	}
	
	.header-phoneblock .callback-button:hover {
		color: var(--secondary-color);
	}
	
	#desktop-menu {
		width: 100%;
	}
	
	#desktop-menu li a {
        color: var(--white-color);
        font-size: 14px;
        font-weight: 300;
        text-transform: uppercase;
	}
	
	#desktop-menu li.menu-item-has-children a:after{
		transition: 0.5s linear;
		content: url('/wp-content/uploads/2025/03/material-symbols_arrow-back-ios-new-rounded.svg');
		width: 10px;
		height: 10px;
		margin-left: 5px;
	}
	
	#desktop-menu li.menu-item-has-children {
		position: relative;
	}

	
	#desktop-menu li a:hover,
	#desktop-menu li a:focus {
		color: var(--secondary-color);
	}
	
	#desktop-menu li.menu-item-has-children .menu__subMenu li a {
		color: var(--text-black);
		font-family: "Montserrat", sans-serif;
		font-optical-sizing: auto;
		font-weight: 500;
		font-style: normal;
		font-size: 14px;
		text-transform: none;
		transition: 0.5s linear;
		height: 100%;
        width: 100%;
        display: block;
		padding: 10px;
	}
	
	/*#desktop-menu li.menu-item-has-children .menu__subMenu li a:after {
		content: url('/wp-content/uploads/2025/09/weui_arrow-filled.svg');
		position: absolute;
		right: 20px;
	}*/
	
	#desktop-menu li.menu-item-has-children .menu__subMenu li:hover a,
	#desktop-menu li.menu-item-has-children .menu__subMenu a:hover,
	#desktop-menu li.menu-item-has-children .menu__subMenu a:focus {
		color: var(--white-color);
	}
	
	#desktop-menu li.menu-item-has-children a:hover:after{
		content: url('/wp-content/uploads/2025/03/arrow2.svg');
	}
	
	#desktop-menu li.menu-item-has-children .menu__subMenu a:after{
		content: '';
	}
	
	#desktop-menu .menu__subMenu {
		display: none;
        background-color: var(--white-color);
        position: absolute;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
        border-radius: 10px;
        min-width: 330px;
        margin-top: 10px;
        left: 0%;
		font-family: "Montserrat", sans-serif;
	}
	
	#desktop-menu .menu__subMenu li{		
		font-size: 16px;
		transition: 0.3s linear;
		position: relative;
	}
	
	#desktop-menu .menu__subMenu li:not(:last-child) {
		border-bottom: 1px solid var(--gray-color4);
	}
	
	#desktop-menu .menu__subMenu li:hover{
		background-color: var(--secondary-color);
	}
	
	.desktop-header-bottom nav {
		flex: 1;
	}
	
	.button.calcprice {
		width: 195px;
		margin-left: 40px;
	}
	
	
	.fixedtop {   
		position: fixed;
		height: auto !important;
	}

	.fixedtop .desktop-header-top {
		display: none;
	}	
	
	.modal-wrapper .modal {
        max-width: 650px;
    }
	
	.modal-wrapper .wpcf7 h2 span,
	.modal-wrapper .wpcf7 h2 {
		font-size: 30px;
	}
	
	.modal-wrapper .modalform {
		margin: 50px;
	}
	
	.modal-wrapper .modal-close {
        right: -30px;
        top: -25px;
    }
	
	.modal-wrapper .modal .wpcf7-list-item label {
		margin: 0;
	}
	
	.modal-wrapper .wpcf7 form .formteltext {
		font-size: 22px; 
		font-weight: 400;
	}

	.modal-wrapper .formtelnum {
		font-size: 24px; 
		font-weight: 500;
	}
}

@media (min-width: 1350px) {
	.header-description,
	.header-description p,
	.header-description a,
	.header-location,
	.header-location a,
	.header-location span,
	.header-mailblock,
	.header-mailblock a,
	.header-phoneblock,
	.header-phoneblock a,
	.header-phoneblock span,
	.header-social,
	.header-social a {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .4px;
	}
	
}

@media (min-width: 1440px) {
	
	.desktop-header {
        padding-top: 5px;
        height: 190px;
	}
}

@media (min-width: 1600px) {
	.header-description,
	.header-description p,
	.header-description a,
	.header-location,
	.header-location a,
	.header-location span,
	.header-mailblock,
	.header-mailblock a,
	.header-phoneblock,
	.header-phoneblock a,
	.header-phoneblock span,
	.header-social,
	.header-social a {
		font-size: 15px;
	}
	
	footer,
	section,
	.desktop-header {
		padding: 0px 80px;
	}
}

@media (min-width: 1740px) {
	
	footer,
	section,
	.desktop-header {
		padding: 0px 150px;
	}
}

/*******************************************
***   FOOTER   *****************************
*******************************************/

footer {
	background-color: var(--primary-color);
	padding: 0px 50px;
}

#footer-menu {
	width: 100%;
}

#footer-menu li a {
	color: var(--white-color);
	font-size: 14px;
	font-weight: 300;
	text-transform: uppercase;
}

#footer-menu li.menu-item-has-children a:after{
	transition: 0.5s linear;
	content: url('/wp-content/uploads/2025/03/material-symbols_arrow-back-ios-new-rounded.svg');
	width: 10px;
	height: 10px;
	margin-left: 5px;
}

#footer-menu li.menu-item-has-children {
	position: relative;
}


#footer-menu li a:hover,
#footer-menu li a:focus {
	color: var(--secondary-color);
}

#footer-menu li.menu-item-has-children .menu__subMenu li a {
	color: var(--secondary-color);
	font-weight: 300;
	text-transform: none;
	transition: 0.5s linear;
	height: 100%;
	width: 100%;
	display: block;
}

#footer-menu li.menu-item-has-children .menu__subMenu li:hover a,
#footer-menu li.menu-item-has-children .menu__subMenu a:hover,
#footer-menu li.menu-item-has-children .menu__subMenu a:focus {
	color: var(--white-color);
}

#footer-menu li.menu-item-has-children a:hover:after{
	content: url('/wp-content/uploads/2025/03/arrow2.svg');
}

#footer-menu li.menu-item-has-children .menu__subMenu a:after{
	content: '';
}

#footer-menu .menu__subMenu {
	display: none;
	background-color: var(--white-color);
	position: absolute;
	padding: 10px 0px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	border-radius: 5px;
	min-width: 300px;
	margin-top: 10px;
	left: 0%;
	bottom: 25px;
}

#footer-menu .menu__subMenu li {
	padding: 5px 20px;
	transition: 0.5s linear;
}

#footer-menu .menu__subMenu li:hover {
	background-color: var(--secondary-color);
}

.footer-bottom {
	display: flex;
	flex-direction: row;
	padding-bottom: 30px;
	text-align: center;
    max-width: var(--max-w);
    color: var(--white-color);
    justify-content: space-between;	
	margin: 0 auto;
}

.footer-bottom-left {
	text-align: left;
	color: var(--white-color);
	padding: 10px;
	font-weight: 300;
	width: 33%;
}
.footer-bottom-center {
	text-align: center;
	color: var(--white-color);
	padding: 10px;
	font-weight: 300;
	width: 33%;
}
.footer-bottom-right {
	text-align: right;
	color: var(--white-color);
	padding: 10px;
	font-weight: 300;
	width: 33%;
}

.footer-bottom-left a,
.footer-bottom-center a,
.footer-bottom-right a {
	color: var(--white-color);
	text-decoration: underline;
	font-weight: 300;
	letter-spacing: .5px;
}

.footer-bottom-left a:hover,
.footer-bottom-center a:hover,
.footer-bottom-right a:hover {
	background-color: var(--secondary-color);
}

@media (max-width: 1279px) {
	
	main {
	    margin-top: 120px;
	}
	
	footer {
		padding: 0px;
	}

	footer .footer-top {
		max-width: 80%;
        margin: 30px auto 0px auto;
		padding: 30px 0 0 0;
	}
	
	footer .desktop-header-top {
	    display: flex;
		justify-content: center;
		flex-direction: column;
		text-align: center;
		align-items: center;
	}
	
	#footer-menu {
		padding: 20px 0;
		border-bottom: 1px solid rgba(235.44, 235.44, 235.44, 0.20);
		width: 100%;
	}
	
	#footer-menu li {
	    text-align: center;
		padding: 10px;
	}
	
	#footer-menu li.menu-item-has-children a:after {
		content: '';
		display: none;
	}
	
	footer .button.calcprice {
        width: 290px;
        margin: 30px auto;
	}
	
	footer .header-description,
	footer .header-location,
	footer .header-mailblock,
	footer .header-phoneblock,
	footer .header-social {
		padding: 20px 0;
		border-bottom: 1px solid rgba(235.44, 235.44, 235.44, 0.20);
		width: 100%;
	}
	
	footer .header-phoneblock {
		padding: 20px 0;
	}
	
	footer .header-description p {
		margin-top: 30px
	}
	
	footer .header-mailblock a img,
	footer .header-phoneblock a img {
		margin-right: 10px;
	}
	
	footer .header-description,
	footer .header-description p,
	footer .header-description a,
	footer .header-location,
	footer .header-location a,
	footer .header-location span,
	footer .header-mailblock,
	footer .header-mailblock a,
	footer .header-phoneblock,
	footer .header-phoneblock a,
	footer .header-phoneblock span,
	footer .header-social,
	footer .header-social a {
        font-size: 16px;
        line-height: 22px;
        letter-spacing: .4px;
		color: var(--white-color);
		font-weight: 300;
	}
	
	footer .header-location span {
		color: var(--secondary-color);
        font-weight: 400;
        width: 100%;
        display: block;
        position: relative;
        width: 320px;
        margin: 0 auto;
	}
	
	footer .header-location span:before {
        content: url('/wp-content/uploads/2025/03/bi_geo-alt.svg');
        position: absolute;
        left: 0px;
        top: -22px;
	}
	
		
	footer .header-mailblock a,
	footer .header-phoneblock a {
		color: var(--secondary-color);
		font-weight: 400;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	footer .header-phoneblock a.callback-button {
		color: var(--white-color);
		font-weight: 400;
		text-decoration: underline;
	}
	
	footer .header-social {
		flex-direction: row;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
		display: none;
	}
	
	.desktop-header-bottom,
	#footer-menu {
	    flex-direction: column;
	}
	
	.footer-bottom {
		display: flex;
		flex-direction: column-reverse;
		padding-bottom: 30px;
		text-align: center;	
	}

	.footer-bottom-left,
	.footer-bottom-center,
	.footer-bottom-right {
		width: 100%;
		text-align: center;	
	}
	
	.footer-bottom-right {
		display: none;
	}
}

@media (max-width: 500px) {
	footer .footer-top {
        max-width: 360px;
        margin: 0px auto 0px auto;
        padding: 30px 0 0 0;
	}
}


@media (max-width: 400px) {
    footer .header-location span {
        width: 290px;
	}
	
	footer .header-location span:before {
		left: -10px;
        top: -20px;
	}
}

@media (max-width: 350px) {
	footer .header-location span {
        width: 220px;
    }
	
	footer .header-description,
	footer .header-description p,
	footer .header-description a,
	footer .header-location,
	footer .header-location a,
	footer .header-location span,
	footer .header-mailblock,
	footer .header-mailblock a,
	footer .header-phoneblock,
	footer .header-phoneblock a,
	footer .header-phoneblock span,
	footer .header-social,
	footer .header-social a {
        font-size: 12px;
	}
}


