:root{
	--color-gray: #2e2e2e;
	--color-orange: #f1c40f;
	

}
@font-face {
    font-family: 'Impact';
    src: url('../fonts/Impact.eot');
    src: local('impact'),
        url('../fonts/Impact.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Impact.woff2') format('woff2'),
        url('../fonts/Impact.woff') format('woff'),
        url('../fonts/Impact.ttf') format('truetype'),
        url('../fonts/Impact.svg#Impact') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
html {
    position: relative;
	overflow-x: hidden;
	max-width: 100vw;
}
html.is-ios{
	overflow-x: hidden;
}
html.menu-opened {
    overflow-y: hidden;
}
body {
    color: var(--color-gray);
    overflow-x: hidden;
    max-width: 100vw;
    counter-reset: services;
    position: relative;
    line-height: 120%;
}
main>*:first-child {
    padding-top: 230px !important;
}
header {
    position: fixed;
    width: 100vw;
    padding: 12px 0;
    transition: .3s all cubic-bezier(.785, .135, .15, .86);
    z-index: 15;
    top: 0;
}

header.scrolled,
header.menu-opened{
	background-color: #fff;
}

header::after {
    content: '';
    width: var(--loader-width);
    min-width: 1%;
    height: 3px;
    background-color: var(--color-orange);
    position: absolute;
    left: 0px;
    bottom: 0;
	transition: .2s all cubic-bezier(.785, .135, .15, .86);
}
main{
	transition: .3s all cubic-bezier(.785, .135, .15, .86);
	
}
main.menu-opened,
footer.menu-opened {
    transform: translate(-510px, 0);
    filter: grayscale(1);
    position: relative;
}
main.menu-opened::after,
footer.menu-opened::after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
	z-index: 1;

}
section {
    position: relative;
    overflow-x: clip;
}
@media (max-width: 510px){
	main.menu-opened {
    transform: translate(-100%, 0);
}
	
}

h1, h2, h3, h4, h5, h6, .text-impact{
	font-family: impact, 'Impact';
	letter-spacing: 0.1rem;
	color: var(--color-gray);
}
img{
	max-width: 100%;
}
a,a:hover{
	color: inherit;
}
section.main {
    padding: 240px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #f1c40f1a;
    height: 100vh;
}
section.main h4 {
    min-height: 2.5em;
}

@media (max-width: 768px){
	section.main h4 {
		min-height: 5em;
	}

	section.main .f-socials {
		position: absolute;
		flex-direction: row;
	}
}
section.speedbar {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0px 40px 0;
    font-size: 18px;
    color: var(--color-gray);
	 margin-top: -84px;
}
section.speedbar .breadcumbs {
    display: flex;
    align-items: center;
}
section.speedbar .breadcumbs a {
    text-decoration: none;
    font-weight: 500;
}
section.speedbar .breadcumbs a:hover{
	color: var(--color-orange);
}
section.speedbar .breadcumbs .separator {
    margin: 0 7px;
    color: var(--color-orange);
    font-weight: bold;
}
.logo {
    max-width: 250px;
}
@media (max-width: 767px){
	.logo {
		max-width: 200px;
		margin-top: -10px;
	}

}
h1{
	text-transform: uppercase;
}

.typed-cursor {
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}
@keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}

.btn-orange {
    border: 4px solid var(--color-gray);
    color: var(--color-gray);
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    padding: 10px 30px;
    font-weight: 500;
    font-size: 18px;
    overflow: hidden;
    transition: .3s all cubic-bezier(.785, .135, .15, .86);
    background-color: rgba(255,255,255,0.4);
    height: max-content;
}
.btn-orange:hover{
	color: var(--color-orange);
	border-color: var(--color-orange);
	background-color: #fff;
}

header .phones a{
	color: var(--color-gray);
	font-weight: 500;
    font-size: 18px;
	text-decoration: none;
    text-transform: uppercase;
	transition: .3s all cubic-bezier(.785, .135, .15, .86);
}
header .phones a:hover{
	color: var(--color-orange);
}
header .phones span {
    font-size: 20px;
    line-height: 100%;
    margin: 0 3px 0 8px;
    display: inline-block;
}
header .menu {
    position: relative;
    width: 34px;
    height: 24px;
    margin-left: 25px;
    cursor: pointer;
	transition: .2s all cubic-bezier(.785, .135, .15, .86);
}

header .menu span {
    background-color: var(--color-gray);
    width: 100%;
    height: 3px;
    display: block;
    position: absolute;
	transition: .3s all cubic-bezier(.785, .135, .15, .86);
}

header .menu span:nth-child(1){
	top: 0px;
}
header .menu span:nth-child(2){
	top: calc(50% - 1.5px);
}
header .menu span:nth-child(3){
	bottom: 0px;
}
header .menu:hover span{
	/* background-color: var(--color-orange); */
}

header .menu:hover span:nth-child(1) {
	-webkit-transform: translateY(1.5px) rotate(-4.5deg);
    -ms-transform: translateY(1.5px) rotate(-4.5deg);
    transform: translateY(1.5px) rotate(-4.5deg);
}
header .menu:hover span:nth-child(2){
	opacity: 0.9;
}
header .menu:hover span:nth-child(3){
	-webkit-transform: translateY(-1.5px) rotate(4.5deg);
    -ms-transform: translateY(-1.5px) rotate(4.5deg);
    transform: translateY(-1.5px) rotate(4.5deg);
}
header .menu.active{
	transform: rotate(720deg);
}
header .menu.active span:nth-child(2){
	opacity: 0;
}
header .menu.active span:nth-child(1) {
    background-color: var(--color-orange);
    transform: rotate(45deg);
    top: 10.5px;
}
header .menu.active span:nth-child(3) {
    background-color: var(--color-orange);
    transform: rotate(-45deg);
    bottom: 10.5px;
}
section.padding-80 {
    padding: 80px 0;
}
@media (max-width: 991px){
	section.padding-80+section.padding-80{
		padding-top: 0px;
	}
	
}
section.padding-40 {
    padding: 40px 0;
}
@media (max-width: 991px){
	section.padding-40+section.padding-40{
		padding-top: 0px;
	}
	
}
section.prems .item {
    position: relative;
	
}
section.prems .item::before {
    content: '';
    position: absolute;
    background-color: var(--color-orange);
    width: calc(100% - 80px);
    height: 1px;
    top: 34px;
    right: 0;
}
section.prems .item svg {
    width: 56px;
    height: 56px;
    fill: var(--color-orange);
    margin-right: 10px;
    transform: translate(0px, 6px);
    margin-bottom: 12px;
}
section.prems .item .hd {
    font-weight: 500;
    text-transform: uppercase;
}
section.prems .item .tx {
    line-height: 100%;
    font-size: 14px;
}
section.about {
    padding: 80px 0;
	position: relative;
}
section.about::before {
    content: '';
    position: absolute;
    right: -100px;
    border: 10px solid var(--color-orange);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    z-index: -1;
    bottom: 0;
    opacity: 0.1;
}
section.about::after {
    content: '';
    position: absolute;
    left: -160px;
    border: 10px solid var(--color-orange);
    width: 400px;
    height: 370px;
    z-index: -1;
    bottom: 90px;
    opacity: 0.2;
    transform: rotate(25deg);
    -webkit-animation: 20s linear 0s infinite normal krutelka;
    -moz-animation: 20s linear 0s infinite normal krutelka;
    -o-animation: 20s linear 0s infinite normal krutelka;
    animation: 20s linear 0s infinite normal krutelka;
}

@-webkit-keyframes krutelka { from { transform: rotate(0deg) } to { transform: rotate(360deg) }  }
   @-moz-keyframes krutelka { from { transform: rotate(0deg) } to { transform: rotate(360deg) }  }
     @-o-keyframes krutelka { from { transform: rotate(0deg) } to { transform: rotate(360deg) }  }
        @keyframes krutelka { from { transform: rotate(0deg) } to { transform: rotate(360deg) }  }
h1.heading {
    position: relative;
    margin-left: 50px;
    z-index: 0;
    height: max-content;
    margin-top: 30px;
}
h1.heading::before {
    position: absolute;
    content: '';
    width: 100px;
    height: 100px;
    border: 11px solid var(--color-orange);
    left: -40px;
    z-index: -1;
    bottom: 0;
}
h1.heading::after {
    position: absolute;
    content: '';
    width: 100%;
    height: calc(100% + 20px);
    background-color: #fff;
    left: -20px;
    z-index: -1;
    top: -11px;
}


h2.heading {
    position: relative;
    margin-left: 50px;
    z-index: 0;
    margin-bottom: 25px;
    height: max-content;
    margin-top: 40px;
}
h2.heading::before {
    position: absolute;
    content: '';
    width: 80px;
    height: 80px;
    border: 6px solid var(--color-orange);
    left: -40px;
    z-index: -1;
    bottom: 0;
}
h2.heading::after {
    position: absolute;
    content: '';
    width: 100%;
    height: calc(100% + 20px);
    background-color: #fff;
    left: -20px;
    z-index: -1;
    top: -11px;
}


.l-img {
    position: relative;
    z-index: 0;
    padding: 10px;
	overflow: hidden;
}
.l-img img{
	box-shadow: 1px 1px 9px 0px rgb(0 0 0 / 53%);
}
.l-img::after {
    content: '';
    position: absolute;
    z-index: 1;
    width: 100px;
    height: 100px;
    left: -50px;
    background-color: #fff;
    transform: rotate(45deg);
    bottom: -50px;
    border-top: 1px solid #000;
}
.cat-item h5,
.cat-item h2 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cat-item .counter {
    color: var(--color-orange);
    opacity: 0.3;
    font-size: 66px;
    margin-right: 15px;
}
.cat-item .counter::before{
  counter-increment: services;
  content: "#" counter(services); 
	
}


/* ГЛАВНОЕ МЕНЮ */

#menu {
    position: fixed;
    height: 100vh;
    right: -510px;
    width: 510px;
    transition: .3s all cubic-bezier(.785, .135, .15, .86);
    padding: 100px 0px 100px 0;
    max-width: 100vw;
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
    overflow-x: hidden;
    justify-content: end;
    top: 0;
}
#menu.menu-opened {
    right: 0px;
}
.main-menu ul{
	padding: 0;
	margin: 0;
	list-style: none;
}
.main-menu {
    text-align: right;
    padding: 0 30px;
    width: 100%;
}
.main-menu>ul li{
	position: relative;
}

.main-menu>ul ul {
    position: relative;
    transform: scale(0);
    transition: .5s all cubic-bezier(.785, .135, .15, .86);
    border-right: 8px solid var(--color-orange);
    padding-right: 20px;
    margin: 0px 0;
    transform-origin: top right;
}
.main-menu>ul>li>ul ul{
	position: absolute;
}
.main-menu>ul>li.clicked ul{
	position: relative;
}
.main-menu>ul ul.hide{
	height: 0px;
}
.main-menu>ul ul.show {
    transform: scale(1);
	height: var(--data-height);
    
}
.main-menu a:hover {
    color: var(--color-orange);
    transform: translate(-15px, 0px);
}
.main-menu a {
    font-family: impact, 'Impact';
    letter-spacing: 0.1rem;
    text-decoration: none;
    transition-duration: 0.1s;
    display: block;
    line-height: 100%;
    padding: 10px 0;
}
.main-menu>ul>li>a {
	
    font-size: 46px;
	
}

.main-menu>ul>li>ul>li>a{
	font-size: 32px;
}
.main-menu>ul>li>ul>li>ul>li>a{
	font-size: 24px;
}
#menu .info {
    padding: 0 30px;
    text-align: right;
    align-self: flex-end;
}
#menu .info .phones {
    margin-top: 16px;
}
#menu .info .phones a {
    display: block;
    font-size: 26px;
    text-decoration: none;
}
/* ГЛАВНОЕ МЕНЮ */

img.lazy{
	transition-duration: 0.2s;
}
.particles-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.form-control {
    border-color: var(--color-orange);
    border-radius: 0;
    
    padding: 15px 15px;
}
.form-control::placeholder{
	text-transform: uppercase;
}
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: var(--color-orange);
    outline: 0;
    box-shadow: 0 0 0 .25rem var(--color-orange);
}
.form-check-input:checked {
    background-color: var(--color-orange);
    border-color: var(--color-orange);
}


.sales {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0;
}
.sales .row {
    border: 4px solid var(--color-orange);
    padding: 40px 30px;
}
.timer__items {
    display: inline-flex;
    font-size: 48px;
    border: 4px solid #000;
    padding: 17px 3px 17px 1px;
}
.timer__item {
    position: relative;
    margin-left: 10px;
    margin-right: 10px;
    padding-bottom: 15px;
    text-align: center;
    max-width: 100%;
}
.timer__item::before {
    content: attr(data-title);
    display: block;
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    font-size: 14px;
}
.timer__item:not(:last-child)::after {
  content: ':';
  position: absolute;
  right: -15px;
}

.inline-form {
    background-color: #fff;
    padding: 40px 40px;
    margin: -110px 0;
    border: 4px solid var(--color-orange);
}
@media (max-width:767px){
	.inline-form {
		margin: 30px 0;
		padding: 20px 20px;
	}
	.sales .row {
		border: none;
		padding: inherit;
	}
}

.sales.sales-white .content *{
	color: #fff;
	border-color: #fff;
}
.sales.sales-category {
    /* padding: 110px 0; */
    margin-bottom: 100px;
}


.swiper-reviews {
    position: relative;
    padding-bottom: 60px;
}

footer {
    background-color: #e9ecef;
    padding: 50px 0px 15px 0;
    border-top: 4px solid var(--color-orange);
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: .3s all cubic-bezier(.785, .135, .15, .86);
    width: 100%;
}


.f-logo {
    max-width: 230px;
}

.f-links ul,
.f-contacts ul {
    margin: 0;
    list-style: none;
    padding: 0;
}
.f-links ul a,
.f-contacts ul a{
	text-decoration: none;
	
}
.f-links ul li, .f-contacts ul li, .f-contacts ul li a {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    line-height: 110%;
}
.f-links ul a:hover,
.f-contacts ul a:hover{
	color: var(--color-orange);
}
.f-links ul li::before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-caret-right' viewBox='0 0 16 16'%3E%3Cpath d='M6 12.796V3.204L11.481 8 6 12.796zm.659.753 5.48-4.796a1 1 0 0 0 0-1.506L6.66 2.451C6.011 1.885 5 2.345 5 3.204v9.592a1 1 0 0 0 1.659.753z'/%3E%3C/svg%3E");
    position: relative;
    width: 16px;
    height: 16px;
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    left: -10px;
}
.f-contacts ul li svg {
    left: -10px;
    position: relative;
}
.f-links h5, .f-contacts h5 {
    margin-bottom: 30px;
}

.swiper-news {
    padding: 20px 0 50px 0 !important;
}
.navigation {
    display: flex;
    align-items: center;
}

.navigation span,
.navigation a:hover {
    background-color: var(--color-orange);
    color: white;
    
}
.navigation>* {
    border: 2px solid var(--color-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    text-decoration: none;
    width: 32px;
    margin-right: 3px;
	font-weight: bold;
}
section.nav {
    padding: 30px 0;
    margin-top: -30px;
}

.l-img.float-left {
    float: left;
    max-width: 40%;
    margin: 0 10px 2px 0;
}
@media (max-width: 768px){
	
	.l-img.float-left {
		max-width: 100%;
	   margin: 0
	}
}
table[class^=fr] th, table[class^=fr] td {
    padding: 5px 10px;
}
table[class^=fr] thead {
    background-color: var(--color-orange);
    color: #fff;
}

.quote {
    position: relative;
    border-left: 13px solid var(--color-orange);
    padding: 10px 30px 10px 20px;
    background-color: #efefef;
    margin: 30px 0;
}
.quote p{
	margin: 0;
}
.quote p+p{
	margin-top: 15px;
}

/*---показ оригинальной картинки загруженной на сайт из уменьшенной копии---*/
.highslide-wrapper, .highslide-outline { background: #fff }
	.highslide-image { border: 2px solid #fff }
	.highslide-active-anchor { visibility: hidden } 
	.highslide-active-anchor img { visibility: hidden }
	.highslide-dimming { background-color: black }
	.highslide-html { background-color: white }
	.highslide-loading { display: block; color: white; font-size: 9px; font-weight: bold; text-decoration: none; padding: 3px; border: 1px solid white; background-color: black }
	a.highslide-full-expand { background: url(../dleimages/fullexpand.gif) no-repeat; display: block; margin: 0 10px 10px 0; width: 34px; height: 34px }
	.highslide-display-block { display: block }
	.highslide-display-none { display: none }
	.highslide-caption { display: none; padding: 5px; background: white }
	.highslide-controls { width: 195px; height: 40px; background: url(../../../engine/classes/highslide/graphics/controlbar-black-border.gif) no-repeat 0 -90px; margin-right: 15px; margin-bottom: 10px; margin-top: 10px }
	.highslide-controls ul { position: relative; left: 15px; height: 40px; list-style: none; margin: 0; padding: 0; background: url(../../../engine/classes/highslide/graphics/controlbar-black-border.gif) no-repeat 100% -90px }
	.highslide-controls li { float: left; padding: 5px 0; }
	.highslide-controls a { background: url(../../../engine/classes/highslide/graphics/controlbar-black-border.gif); display: block; float: left; height: 30px; width: 30px; outline: none }
	.highslide-controls a.disabled { cursor: default }
	.highslide-controls a span { display: none }
 
/*---Навигация по картинкам галереи---*/
.highslide-controls .highslide-previous a { background-position: 0 0 }
	.highslide-controls .highslide-previous a:hover { background-position: 0 -30px }
	.highslide-controls .highslide-previous a.disabled { background-position: 0 -60px !important }
	.highslide-controls .highslide-play a { background-position: -30px 0 }
	.highslide-controls .highslide-play a:hover { background-position: -30px -30px }
	.highslide-controls .highslide-play a.disabled { background-position: -30px -60px !important }
	.highslide-controls .highslide-pause a { background-position: -60px 0 }
	.highslide-controls .highslide-pause a:hover { background-position: -60px -30px }
	.highslide-controls .highslide-next a { background-position: -90px 0 }
	.highslide-controls .highslide-next a:hover { background-position: -90px -30px }
	.highslide-controls .highslide-next a.disabled { background-position: -90px -60px !important }
	.highslide-controls .highslide-move a { background-position: -120px 0 }
	.highslide-controls .highslide-move a:hover { background-position: -120px -30px }
	.highslide-controls .highslide-full-expand a { background-position: -150px 0 }
	.highslide-controls .highslide-full-expand a:hover { background-position: -150px -30px }
	.highslide-controls .highslide-full-expand a.disabled { background-position: -150px -60px !important }
	.highslide-controls .highslide-close a { background-position: -180px 0 }
	.highslide-controls .highslide-close a:hover { background-position: -180px -30px }


p.date.text-bold {
    font-weight: bold;
}
.service-prems-item {
    overflow: hidden;
    z-index: 0;
    position: relative;
    transition: .3s all cubic-bezier(.785, .135, .15, .86);
    box-shadow: 9px 9px 7px 0px rgb(0 0 0 / 20%);
}
.service-prems-item:hover{
	transform: translateY(20px);
}
.service-prems-item>div {
    border: 1px solid var(--color-orange);
    position: relative;
    background-color: #fff;
}
.service-prems-item::before {
    content: '';
    position: absolute;
    border: 1px solid var(--color-orange);
    background-color: white;
    width: 60px;
    height: 60px;
    transform: rotate(45deg);
    left: -30px;
    top: -30px;
    z-index: 1;
}
.service-prems-item .img {
    max-width: 80px;
    margin: 50px auto;
}
.service-prems-item .img svg{
	width: 80px;
	height: 80px;
	fill: var(--color-orange);
}
.service-prems-item .text {
    text-align: center;
    margin: 20px 20px;
    font-weight: bold;
}
.service-prems-item .text a{
	text-decoration: none;
}
.price-abs {
    position: absolute;
    right: 0px;
    background-color: var(--color-orange);
    color: white;
    font-weight: bold;
    padding: 10px 21px;
    bottom: 110px;
    box-shadow: 1px 1px 9px 0px rgb(0 0 0 / 53%);
}
.cat-item {
    position: relative;
}
.f-prems {
    background-image: radial-gradient(circle, var(--color-orange) 1px, rgba(0,0,0,0) 1px);
    background-size: 2rem 2rem;
}

label, small {
    display: block;
    line-height: 120%;
}


#res-avatar .file-footer {
    display: none;
}
#res-avatar .file-preview-image{
	 max-width: 100px;
    margin: 15px 0;
    box-shadow: 1px 1px 9px 0px rgb(0 0 0 / 53%);
}
#rating-input {
    display: flex;
    align-items: center;
}
#rating-input svg {
    cursor: pointer;
    padding: 0 3px;
    width: 34px;
    height: 28px;
	transition: .3s all cubic-bezier(.785, .135, .15, .86);
}
#rating-input svg.hover{
	fill: var(--color-orange);
}
#rating-input svg.active {
    fill: var(--color-orange);
}

.comment-item {
    border: 1px solid var(--color-orange);
    position: relative;
    z-index: 0;
    margin: 20px 0;
    padding: 20px 15px 20px 15px;
}
.comment-item .avatarka {
    position: absolute;
    right: -10px;
    top: -10px;
    max-width: 100px;
	box-shadow: 1px 1px 9px 0px rgb(0 0 0 / 53%);
}
.comment-item .rating {
    margin-bottom: 20px;
}
.comment-item .rating svg {
    fill: lightgrey;
}
.comment-item .rating.rating-1 svg:nth-child(1),
.comment-item .rating.rating-2 svg:nth-child(1),
.comment-item .rating.rating-2 svg:nth-child(2),
.comment-item .rating.rating-3 svg:nth-child(1),
.comment-item .rating.rating-3 svg:nth-child(2),
.comment-item .rating.rating-3 svg:nth-child(3),
.comment-item .rating.rating-4 svg:nth-child(1),
.comment-item .rating.rating-4 svg:nth-child(2),
.comment-item .rating.rating-4 svg:nth-child(3),
.comment-item .rating.rating-4 svg:nth-child(4),
.comment-item .rating.rating-5 svg{

	fill: var(--color-orange);
}


.static-reviews .comment-item{
	position: sticky;
	top: 115px;
}


.f-socials {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.f-socials svg {
    width: 36px;
    height: 36px;
	margin-right: 6px;
}
.f-socials a{
	transition: .3s all cubic-bezier(.785, .135, .15, .86);
}
.f-socials a:hover{
	transform: scale(1.2);
}

.mobile-phones {
    display: flex;
    align-items: center;
    line-height: 100%;
    border: 1px solid var(--color-orange);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
    /* background-color: #fff; */
}
.mobile-phones svg {
    fill: var(--color-orange);
    width: 23px;
    height: 23px;
	animation: 3s ease-in-out 10s normal none infinite running trambling-animation;
}
@keyframes trambling-animation {
    0%, 50%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
}

.main .f-socials {
    flex-direction: column;
}
.main .f-socials svg {
    width: 48px;
    height: 48px;
    margin-bottom: 6px;
}
.calc-insert{
	display: none;
	position: relative;
	padding: 0px !important;
	background-color: transparent !important;
	color: inherit !important;
}
.calc-insert+button{
	display: none;
}


.calc-form {
    padding: 50px 0;
}
.showfull .calc-form::before {
    content: '';
    position: absolute;
    width: 300vw;
    left: -100vw;
    height: 100%;
    background-color: #f1c40f1f;
    z-index: -1;
    top: 0;
}
.calc-form .calc-prems ul {
    padding: 0;
    margin: 40px 0;
    list-style: none;
}
.calc-form .calc-prems li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}
.calc-form .calc-prems li::before {
    content: '';
    position: absolute;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg fill='%23000' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M444.96 159l-12.16-11c-2.03-2.67-4.72-4-8.11-4s-6.08 1.33-8.11 4L131.77 428 31.42 329c-2.03-2.67-4.72-4-8.11-4s-6.08 1.33-8.11 4L3.04 340C1.01 342.67 0 345.67 0 349s1.01 6 3.04 8l120.62 119c2.69 2.67 5.57 4 8.62 4s5.92-1.33 8.62-4l304.07-300c2.03-2 3.04-4.67 3.04-8s-1.02-6.33-3.05-9zM127.17 284.03c2.65 2.65 5.48 3.97 8.47 3.97s5.82-1.32 8.47-3.97L365.01 63.8c1.99-2 2.99-4.65 2.99-7.96s-1-6.29-2.99-8.94l-11.96-10.93c-1.99-2.65-4.64-3.97-7.97-3.97s-5.98 1.32-7.97 3.97L135.14 236.34l-72.25-72.03c-1.99-2.65-4.64-3.97-7.97-3.97s-5.98 1.32-7.97 3.97l-11.96 10.93C33 177.89 32 180.87 32 184.18s1 5.96 2.99 7.95l92.18 91.9z'/%3E%3C/svg%3E");
    width: 15px;
    height: 15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: 3px;
}

.nice-select {
    width: 100%;
    border-color: var(--color-orange);
    border-radius: 0;
    padding: 15px 15px;
    height: auto;
    line-height: 120%;
    text-transform: uppercase;
}
.nice-select:hover{
	border-color: var(--color-orange);
}
.nice-select.open{
	color: #212529;
    background-color: #fff;
    border-color: var(--color-orange);
    outline: 0;
    box-shadow: 0 0 0 .25rem var(--color-orange);
}
.nice-select .list {
    width: 100%;
}

.switch-wrap {
    width: 100%;
    position: relative;
    margin-bottom: 12px;
}
.switch-wrap input {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: -1;
}

.switch-wrap label {
    font-size: 1rem;
    font-weight: 400;
    display: block;
    text-transform: uppercase;
	cursor: pointer;
}
.switch-wrap label:hover{
	color: var(--color-orange);
}
.switch-wrap label::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 1px solid var(--color-orange);
    right: 0;
    bottom: 0;
}
.switch-wrap label::before {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    background-image: url("data:image/svg+xml,%3Csvg fill='%23000' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M444.96 159l-12.16-11c-2.03-2.67-4.72-4-8.11-4s-6.08 1.33-8.11 4L131.77 428 31.42 329c-2.03-2.67-4.72-4-8.11-4s-6.08 1.33-8.11 4L3.04 340C1.01 342.67 0 345.67 0 349s1.01 6 3.04 8l120.62 119c2.69 2.67 5.57 4 8.62 4s5.92-1.33 8.62-4l304.07-300c2.03-2 3.04-4.67 3.04-8s-1.02-6.33-3.05-9zM127.17 284.03c2.65 2.65 5.48 3.97 8.47 3.97s5.82-1.32 8.47-3.97L365.01 63.8c1.99-2 2.99-4.65 2.99-7.96s-1-6.29-2.99-8.94l-11.96-10.93c-1.99-2.65-4.64-3.97-7.97-3.97s-5.98 1.32-7.97 3.97L135.14 236.34l-72.25-72.03c-1.99-2.65-4.64-3.97-7.97-3.97s-5.98 1.32-7.97 3.97l-11.96 10.93C33 177.89 32 180.87 32 184.18s1 5.96 2.99 7.95l92.18 91.9z'/%3E%3C/svg%3E");
    right: -8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(0);
    bottom: -4px;
    transition-duration: 0.2s;
    z-index: 1;
}
.switch-wrap input:checked+label::before{
	transform: scale(1);
}
.link-normal{
	text-decoration: none;
}
@media (max-width: 768px){
	section.main {
		padding: 130px 0 !important;
	}
}



.date svg {
    width: 14px;
    height: 14px;
    margin-right: 5px;
    fill: var(--color-orange);
    position: relative;
    top: -1px;
}