:root {
    --prime: #FF4000;
    --sec: #FFE4E4;
    --silver: #f4f4f4;
    --black: #2e2e2e;
    --black2: #404040;

}

b,
strong {
    font-weight: 700
}

.pad,
.mob {
    display: none;
}

img {
    max-width: 100%
}

a {
    text-decoration: none;
    transition: 0.5s;
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: inherit;

}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin-bottom: 0;
}




/*ANIMATE*/

[data-animate] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    will-change: opacity, transform;
}

/* Анимации появления */
[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Up */
[data-animate="fade-up"].animated {
    transform: translateY(0);
}

/* Fade Left */
[data-animate="fade-left"] {
    transform: translateX(100px);
}

[data-animate="fade-left"].animated {
    transform: translateX(0);
}

/* Fade Right */
[data-animate="fade-right"] {
    transform: translateX(-100px);
}

[data-animate="fade-right"].animated {
    transform: translateX(0);
}

/* Zoom In */
[data-animate="zoom-in"] {
    transform: scale(0.8);
}

[data-animate="zoom-in"].animated {
    transform: scale(1);
}

/* Flip */
[data-animate="flip"] {
    transform: perspective(1000px) rotateX(90deg);
}

[data-animate="flip"].animated {
    transform: perspective(1000px) rotateX(0);
}

/* Bounce */
[data-animate="bounce"] {
    transform: translateY(100px);
}

[data-animate="bounce"].animated {
    transform: translateY(0);
    animation: bounce 0.6s ease-out;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

/* Custom delay and duration */
[data-animate] {
    transition-duration: var(--duration, 800ms);
    transition-delay: var(--delay, 0ms);
}

body {
    font-family: 'Geometria';
    font-size: 16px;
    font-weight: 400;
    background: #fff;
    overflow-x: hidden;
    color: var(--black);
    line-height: 1.3;
}



section {
    padding: 36px 0;
    position: relative
}

section.bg {
    margin: 60px 0
}

h2 {
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 22px;
}

h2 + p {
    margin-bottom: 22px;
}


/*FLEX*/

.fl {
    display: flex;
}

.fw {
    flex-wrap: wrap;
}

.jsb {
    justify-content: space-between;
}

.jc {
    justify-content: center;
}

.jfe {
    justify-content: flex-end;
}

.jsa {
    justify-content: space-around;
}

.ac {
    align-items: center
}

.afe {
    align-items: flex-end
}

.tc {
    text-align: center;
}

.cw {
    color: white
}

.cb {
    color: black;
}

.fl-column {
    flex-direction: column;
}


.container-fluid {
    padding: 0 30px;

}


/*BUTTON*/


.but a,
.but button {
    border: 1px solid transparent;
    border-radius: 16px;
    background: var(--prime);
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    padding: 19px 33px 17px;
    line-height: 18px;
}


.but img {
    margin-left: 8px;
}

.but a:hover,
.but button:hover {
    background: #fff;
    color: var(--prime);
    border: 1px solid var(--prime);
}

.more a {
    color: var(--prime);
    text-decoration: none;
    cursor: pointer;
}

.more a:hover {
    color: #FF02C8
}

.prime {
    background: var(--prime);
    color: white;
}


/*HEADER*/

header {}

header .fl {
    width: 100%
}

header .header-top {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 17px;
}

header .header-top .fl div {
    padding: 11px 15px 9px;
    flex-basis: 33.333%;
}

header .header-top .slogan {
    background: white;
    color: var(--prime);
    text-align: center;
}

header i {
    margin-right: 10px
}

header .logo {
    flex-basis: 33.333%;
}

header .logo img {
    max-width: 230px;
}

header .sale {
    flex-basis: 33.333%;
}

header .sale .item {
    border-radius: 16px;
    background: var(--sec);
    padding: 19px 26px;
    font-size: 17px;
    display: flex;
    font-weight: 500;
    align-items: center;
    justify-content: space-between;
}

header .sale .item .but a {
    margin-left: 30px;
    padding: 9px 21px;
}

header .phone {
    flex-basis: 33.333%;
    font-size: 18px;
    font-weight: 500;
    padding-left: 18px;
}

header .header-bottom {
    margin-top: 14px;
    margin-bottom: 80px;
}

header nav {
    background: var(--sec);
    border-radius: 12px;
}

header nav > ul {
    display: flex;
    list-style: none;
    justify-content: space-between;
}

header nav > ul li a {
    padding: 15px 35px;
    display: inline-flex;
    position:relative;
}

header nav > ul > li.parent>a:after {
    content: url(../img/down2.svg);
    position: absolute;
    margin-top: 13px;
    right:10px;
    top:0;
}

header nav > ul > li.active a, header nav > ul > li.current a {
    background: var(--prime);
    color: white;
    border-radius: 11px;
}

header nav ul ul {
    opacity: 0;
    position: absolute;
    visibility: hidden;
    transition-property: opacity, visibility;
    transition-duration: 0.2s;
    transition-delay: 0.15s;
    background: var(--prime);
    border-radius: 16px;
    padding: 15px 0;
    z-index: 999;
    min-width: 220px;
}

header nav ul li:hover ul {
    opacity: 1;
    visibility: visible;
}

header nav ul ul li a {
    color: white;
    display: block;
    margin-bottom: 7px;
    padding: 5px 15px;
}

header nav ul ul li:last-child a {
    margin-bottom: 0px;
}

header nav ul ul li a:hover {
    background: white;
    color: black;
    border-radius: 0;
}


/*INFO*/

.info {
    margin-top: 80px;
    margin-bottom: 28px;
}

.info .row {
    align-items: center;
}


.info h2 {
    font-size: 48px;
    text-transform: none;
    font-weight: 500;
}

.info ul {
    list-style: none;
}

.info ul li {
    background: url(../img/check.svg) no-repeat left 0px;
    padding-left: 34px;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 500;
}

.info ul li:last-child {
    margin-bottom: 0px;
}


/*PROMO*/

.promo {
    padding-top: 0
}

.promo form {
    background: var(--prime);
    padding: 30px;
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-height: 380px;
}



.promo .form-group {
    margin-bottom: 11px;
}

.promo .counts {
    display: flex;
    align-items: center;
    color: var(--black);
    padding: 13px 36px;
    background: white;
    border-radius: 10px;
    justify-content: space-between;
}

.promo .counts input {
    color: var(--black);
    padding: 0 22px;
    border: none;
    text-align: center;
    cursor:default;
    outline:0
}



.promo input,
.promo select {
    padding: 13px;
    background: white;
    border-radius: 10px;
    width: 100%;
    border: none;
}

.promo h3 {
    margin-bottom:20px;
    margin-top: 30px;
}

.promo select {
    appearance: none;
    background: #fff url(../img/down.svg) no-repeat 95% 10px;
}

.promo form .total {
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
}

.promo .agree {
    text-align: center;
    color: white;
    margin-top: 20px
}

.promo .but.white button {
    background: white;
    font-weight: 500;
    width: 100%;
    border-radius: 10px;
    padding: 20px;
    color: initial;
    text-transform: none;
    font-size: 18px;
}

.promo .col-lg-8 img {
    border-radius: 16px;
    max-height: 380px;
    object-fit: cover;
    width: 100%;
    object-position: top;
}

/*PRE*/


.pre {}

.pre .title {
    font-size: 26px;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 37px;
    padding: 0 250px;
}

.pre .title b {
    font-weight: 700
}

.pre img {
    border-radius: 10px;
    width: 100%;
}

.pre .item {
    background: var(--sec);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 10px;
}

.pre .subtitle {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}

.pre p {
    font-weight: 300;
}

.pre .item:last-child {
    margin-bottom: 0;
}


/*SERV*/

.serv {}

.serv .tab-menu,
.serv-page .tab-menu {
    display: flex;
    width: 100%;
    margin-bottom: 22px;
}

.serv .tab-item,
.serv-page .tab-item {
    flex-basis: 50%;
    padding: 13px;
    background: var(--sec);
    text-align: center;
    font-weight: 500;
    cursor: pointer;
}

.serv .tab-item:first-child,
.serv-page .tab-item:first-child {
    border-radius: 16px 0px 0px 16px;
}

.serv .tab-item.active,
.serv-page .tab-item.active {
    color: white;
    background: var(--prime);
}

.serv .tab-item:last-child,
.serv-page .tab-item:last-child {
    border-radius: 0px 16px 16px 0px;
}

.serv .text {
    background: var(--sec);
    padding: 49px 39px;
    border-radius: 16px;
    height: 100%;
}

.serv .text .fl {
    margin-top: 50px;
}

.serv .text h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 30px;
}

.serv .text p {
    margin-bottom: 20px;
    max-width: 80%;
}

.serv .but {
    margin-top: 5px;
}

.serv .price {
    margin-left: 30px;
    font-size: 14px;
}

.serv .price b {
    font-size: 18px;
    font-weight: bold;
    margin-left: 7px;
}

.serv img {
    border-radius: 16px;
}

.serv .tab-content {
    margin-top: 27px;
    margin-bottom: 60px;
}

.serv .item.dop:before {
    display: none
}

.serv .col-lg-4 h3 {
    margin-top: 30px;
}

.serv .col-lg-4:last-child {
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.serv .item.dop {
    height: 154px;
    padding: 23px;
    border-radius: 20px;
    margin-bottom: 0;
    background-position: right 0;
    background-repeat: no-repeat;
    background-size: 100%;
}

.serv .item .subtitle {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.serv .item.dop .subtitle {
    max-width: 65%
}

.serv .item p {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.serv .item .price {
    font-size: 12px;
    line-height: 18px;
    position: relative;
    z-index: 2;
    margin-left: 0;
    margin-top: 10px;
}

.serv .item .price span {
    font-size: 22px;
    font-weight: 500;
    margin-left: 10px;
}

.serv .label {
    position: absolute;
    top: 25px;
    border-radius: 20px;
    padding: 6px 16px 6px 16px;
    left: 30px;
    font-size: 14px;
    text-transform: uppercase;
}

.serv .label.hit {
    background: var(--prime);
    color: white;

}

.serv .label.pop {
    background: #ffd24d;
}

.serv h3 {
    font-size: 22px;
    margin-bottom: 32px;
}

.serv h3 b {
    font-weight: bold;
}

.serv .dop .item {
    padding: 34px 30px;
    border-radius: 8px;

}

.serv .dop .item + .item {
    margin-top: 29px;
}

.serv .dop .item .subtitle {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
}



/*CALC*/

.calc {}

.calc h2 {
    font-size: 33px;
    font-weight: 700;
    text-align: center;
    text-transform: none;
    margin-bottom: 30px;
}

.calc .form-step {
    background: var(--silver);
    padding: 18px 27px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.calc .col-lg-4 {
    display: flex;
    flex-direction: column;
}

.calc .col-lg-4 .form-step {
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.calc .col-lg-4 .form-step + .form-step {
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calc .form-step:last-child {
    margin-bottom: 0
}

.calc .form-step.prime {
    background: var(--prime);
    padding: 18px 27px;
    border-radius: 10px;
}

.calc .form-step.prime .fl {
    justify-content: flex-end
}

.calc .form-step.prime .form-group {
    margin-right: 10px
}

.calc .form-step.prime .agree {
    text-align: right;
    margin-top: 10px
}

.calc .form-step h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
}

.calc .form-step label {
    background: white;
    border: 1px solid var(--prime);
    border-radius: 10px;
    padding: 10px 13px;
    margin-bottom: 12px;
    position: relative;
    margin-right: 5px;
}

.calc .form-step label:has(input[type="checkbox"]:checked) {
    background: var(--prime) !important;
    color: white !important;
}


.calc .form-step label:has(input[type="radio"]:checked) {
    background: var(--prime) !important;
    color: white !important;
}

.calc em {
    display: inline-flex;
    background: #dbdada;
    border-radius: 10px;
    width: 16px;
    height: 16px;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    position: absolute;
    top: 12px;
}

.calc p {
    padding-left: 25px
}

.calc input[type="radio"],
.calc input[type="checkbox"] {
    display: none !important
}

.calc input[type="radio"]:checked + em:before {
    content: '';
    border-radius: 10px;
    width: 8px;
    height: 8px;
    background: var(--prime);
}


.calc input[type="checkbox"]:checked + em:before {
    content: '';
    border-radius: 10px;
    width: 8px;
    height: 8px;
    background: var(--prime);
}

.calc .price-display {
    text-align: right;
    font-weight: 500;
    margin-bottom: 15px;
}

.calc .price-display span {
    font-size: 26px;
    font-weight: 700;
}

.calc .row .col-lg-4 .form-step + .form-step label {
    text-align: left;
    position: relative;
    background: none;
    border: none;
    font-size: 15px;
    margin-right: 0;
}

.calc .row input {
    border: 1px solid var(--prime);
    background: #ffffff;
    border-radius: 10px;
    text-align: center;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

.calc .row {
    margin-bottom: 10px;
}

.calc .prime input {
    background: white;
    padding: 13px 15px;
    margin-right: 0px;
}

.calc .prime button {
    background: white;
    text-align: center;
    padding: 8px 40px;
    border: none;
    color: initial;
    border-radius: 10px;
}

/*FORM2*/

.form2 {}

.form2 h3 {
    font-size: 26px;
    text-align: left;
    margin-bottom: 36px
}

.form2 h3 strong {
    display: block;
}

.form2 p {
    text-align: left;
    margin-bottom: 1px;
}

.form2 form {
    margin-top: 60px;
    max-width: 700px
}

.form2 input {
    border: none;
    border-bottom: 1px solid var(--prime);
    background: none;
    padding: 15px 20px;
}

.form2 form .but {
    margin-left: 30px;
}

.form2 .agree {
    font-size: 12px;
    margin-top: 20px;
    max-width: 270px;
    text-align: right;
    padding-right: 10px;
}

.form2 .ili {
    margin-top: 60px;
}

.form2 .ili i {
    color: var(--prime);
    margin-left: 20px;
}

.form2 .ili a {
    font-size: 18px;
    font-weight: 700;
}

.form2 .form-new {
    background: url(../img/form.jpg) no-repeat center 0/100%;
    padding: 60px 0;
    border-radius: 20px;
}

/*GAL*/


.gal h3 {
    text-align: center;
    font-size: 26px;
    text-align: center;
    margin-bottom: 16px;
}

.gal .bg-text {
    padding: 7px 26px;
    background: var(--sec);
    font-size: 26px;
    display: inline-flex;
    border-radius: 16px;
    margin-bottom: 30px;
    text-align: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 14px;
}

.gal img {
    border-radius: 16px;
    width: 100%;
}

.gal .container {
    position: relative;
}

.gal .swiper {
    text-align: center;

}

.gal .swiper-button-prev {
    background: var(--sec);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -60px;
    top: 60%;
}


.gal .swiper-button-next {
    background: var(--sec);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -60px;
    top: 60%;
}

.gal .swiper-button-prev img {
    max-width: 100%;
    width: auto !important
}


.gal .swiper-button-next img {
    max-width: 100%;
    width: auto !important
}


/*GARANT*/

.garant {}

.garant h3 {
    text-align: left;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
}

.garant .director {
    background: url(../img/glava.jpg) no-repeat center 0/101%;
    padding: 60px 80px;
    border-radius: 16px;
    border-style: solid;
    border-color: #ff4000;
    border-width: 1px 0px 1px 0px;
}

.garant p {
    font-size: 22px;
}

.garant blockquote {
    position: relative;
    font-size: 20px;
    line-height: 22px;
    font-weight: 300;
    font-style: italic;
    margin: 50px 0;
    max-width: 600px;
}

.garant blockquote:before {
    content: url(../img/quo.svg);
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-bottom: 11px;
}

.garant img {
    margin-right: 16px
}

.garant .text p {
    margin-bottom: 10px;
}

.garant .text p b {
    font-weight: 700;
}

.garant .info {
    max-width: 410px;
    line-height: 1.5;
}

.garant .more {
    margin-top: 10px;
}

.garant .more a {
    color: var(--prime);
    text-decoration: underline;
    font-weight: 500;
}


/*PRE*/


.pre2 .row .col-lg-4 {
    margin-bottom: 20px
}

.pre h3 {
    font-size: 26px;
    font-weight: 700;
}

.pre2 h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px
}

.pre .col-lg-6 + .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pre .item {
    background: var(--sec);
    border-radius: 10px;
    padding: 28px 16px;
    margin-bottom: 14px;
    height: 33.33%;
}

.pre2 .item .text {
    padding-left: 20px;
}

.pre .item .subtitle {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pre .item p {
    font-size: 16px;
    max-width: 90%;
}

.pre2 img {
    width: 83px;
}

.pre2 .item {
    background: var(--sec);
    border-radius: 10px;
    padding: 28px 16px;
    margin-bottom: 0px;
    display: flex;
    height: 100%;
}

.pre2 .item .subtitle {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

/*TEAM*/

.team {}

.bread+.team {
    padding-top:0
}

.team .pass {
    background: var(--sec);
    border-radius: 16px;
    padding: 22px;
    display: flex;
    align-items: center;
}

.team .pass img {
    margin-right: 20px
}

.team p {
    font-size: 14px;
    margin-top: 0px;
}

.team .item p {
    text-align: center;
}

.team .item p b {
    margin-left: 10px
}

.team .row + .row {
    margin-top: 60px;
}

.team .col-lg-3 {
    margin-bottom:50px
}

.team .item {
    text-align: center;
    margin-bottom: 0px;
    border-bottom: 1px solid var(--prime);
    padding: 0 0 20px 0;
}

.team .item img {
    border-radius: 50%;
    margin-bottom: 26px;
    max-width: 200px;
}

.team .item .name {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
}

.team .prig {
    border: 1px solid var(--prime);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
}

.team .prig img {
    margin-bottom: 15px;
}

.team .prig .subtitle {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
}

.team .prig .more a {
    display: block;
    color: var(--prime);
    font-weight: bold;
    margin-top: 20px;
    text-decoration: underline;
}


/*REV*/

.rev a {
    margin-bottom: 20px;
}

.rev a:last-child {
    margin-bottom: 0
}

.rev a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.rev .col-lg-4:first-child {
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.rev .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    border: 3px solid white;
}

.rev img {
    width: 100%;
    border-radius: 20px;
}

.rev .col-lg-4:last-child {
    position: relative;
    padding: 0 60px;
}

.rev .swiper-button-prev {
    background: var(--sec);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 20px;
    z-index: 999;
    top: 43%;
}


.rev .swiper-button-next {
    background: var(--sec);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    z-index: 999;
    top: 43%;
}

.rev .swiper-button-prev img {
    max-width: 100%;
    width: auto !important
}


.rev .swiper-button-next img {
    max-width: 100%;
    width: auto !important
}



.rev .pad60 .swiper-button-prev {
    background: var(--sec);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0px;
    z-index: 999;
    top: 43%;
}


.rev .pad60 .swiper-button-next {
    background: var(--sec);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0px;
    z-index: 999;
    top: 43%;
}

.swiperPhoto a {
    display:flex;
    border: 16px solid #eee;
    border-radius:22px;
}




/*CONTACTS*/

.contacts {
    padding: 110px 0 0px;
    overflow: hidden;
}

.contacts .row {
    margin-top: 30px;
    /* background: #F4F4F4; */
    padding: 40px 0 20px 20px;
    border-radius: 20px;
}

.contacts .item {
    margin-bottom: 44px;
    display: flex;
}

.contacts .item a {
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.contacts .subtitle {
    font-size: 14px;
    margin-bottom: 8px;
}
section.contacts .container {
    background: #eee;
    padding-right: 0;
    border-radius: 20px;
}
.contacts .item p {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}


.contacts .item p a {
    color: var(--prime);
    font-weight: 700;
    font-size: 14px;
    text-decoration: underline;
}

.contacts .icon {
    margin-right: 20px;
    border-radius: 8px;
    width: 46px;
    height: 46px;
    background: var(--sec);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--prime);
    font-size: 22px;
}

.contacts form {
    background: var(--prime);
    border-radius: 16px;
    padding: 22px 30px 22px 30px;
    max-width: 360px;
    margin-left: auto;
    position: relative;
    color: white;
    position: relative;
    z-index: 2;
}
.contacts #ajaxForm3 {
    position:relative;
    top: -39px;
}
.contacts #ajaxForm3:before {
    content: url(../img/zaumnaya-baba.png);
    position: absolute;
    left: 0px;
    top: -110px;
    z-index: 1;
}

.contacts form input {
    border: none;
    background: white;
    border-bottom: none;
    padding: 20px;
    width: 100%;
    border-radius: 12px;
}

.contacts form .form-group {
    margin-bottom: 20px;
}


.contacts form p {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
}

.contacts form h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
}

.contacts .but button {
    background: white;
    width: 100%;
    display: block;
    color: black;
    font-weight: bold;
    text-transform: none;
    font-size: 16px;
    border-radius: 12px;
}

/*FOOTER*/

footer {
    margin-top: 40px;
}

footer .col1 {
    flex-basis: 25%
}

footer .col2 {
    flex-basis: 50%
}

footer .col3 {
    flex-basis: 25%
}

footer .logo {
    margin-bottom: 30px;
}

footer .copy {
    margin-bottom: 30px;
    font-size: 14px;
}

footer .col1 p {
    font-size: 14px;
    margin-bottom: 5px;
}

footer .col1 p a {
    text-decoration:underline
}

footer .title {
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 500;
}

footer .title:after {
    display: block;
    width: 50px;
    height: 1px;
    background: var(--prime);
    content: '';
    margin-top: 10px;
}

footer .col2 {
    padding: 0 50px;
}

footer .col2 ul {
    column-count: 2;

}

footer .col2 ul li {
    margin-bottom: 10px;
}

footer .col3 .item {
    margin-bottom: 20px;
}

footer .col3 .subtitle {
    font-size: 12px;
}

footer .item p {
    font-weight: 700;
}

footer .bottom {
    text-align: center;
    padding: 10px 0;
    margin-top: 30px;
}

.bread {s
    margin-bottom: 42px;
}

.bread ul {
    display: flex;
}

.bread ul + h1 {
    margin-top: 30px;
}

h1 + p {
    max-width: 70%;
    margin-bottom: 35px;
}


.bread ul li a:after {
    content: url(../img/next2.svg);
    padding: 0 7px;
}

.bread ul li>span {
    color: var(--prime)
}


/*SERVICES PAGE*/

.serv {}

h1 {
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 12px;
}

.serv-page h1 + p {
    margin-bottom: 30px;
}

.serv-page .text {
    font-size: 20px;
}

.serv-page .img {
    margin-right: 40px;
}

.serv-page .img img {
    max-width: 110px;
}

.serv-page .fl + p {
    margin-top: 20px;
    font-size: 18px;
    margin-bottom: 40px;
}

.serv-page .item {
    border-top: 2px solid var(--prime);
    border-radius: 6px;
    background: white;
    margin-bottom: 25px;
    box-shadow: 0px 0px 10px #e7e7e7;
}

.serv-page .subtitle,
.serv-page .intro,
.serv-page .price,
.serv-page .but {
    padding: 0px 20px;
    text-align: center;
}

.serv-page .subtitle a {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    text-align: center;
    margin-top: 20px;
}

.serv-page .intro {
    font-size: 14px;
    text-align: center;
    min-height: 55px;
}

.serv-page .price {
    font-size: 12px;
    text-align: center;
    margin: 20px 0;
}

.serv-page .price b {
    font-size: 22px;
    font-weight: 500;
}

.serv-page .but a {
    text-transform: none;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 16px;
}


.gallery {
    margin-bottom: 20px;
}

.gallery h2 {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 36px;
    margin-bottom: 12px;
}

.gallery h2 + p {
    margin-bottom: 30px;
}


.gallery .item {
    flex-basis: 50%;
}

.gallery .item img {
    width: 100%
}


/*SERV ONE PAGE*/


.introtext {}

.introtext h3 {
    color: var(--prime);
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 20px;
}

.introtext p {
    margin-bottom: 20px;
}

.introtext img {
    border-radius: 12px;
    margin-bottom: 20px;
}

.introtext .but.w100 {
    width: 100%;
}

.introtext .but.w100 a {
    width: 100%;
    text-transform: none;
    font-weight: 500;
    display: block;
    text-align: center;
    font-size: 16px;
}


.introtext .col-lg-9 {
    padding-left: 40px
}

.main-serv-text {
    padding: 30px 0
}

.main-serv-text h2 {
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.main-serv-text ul {
    list-style: none;
    padding: 20px 0
}

.main-serv-text ul li {
    list-style: none;
    padding-left: 20px;
    background: url(../img/check2.svg) no-repeat left 5px;
    margin-bottom: 10px;
}

.main-serv-text .text {
    padding-right: 90px;
}

.main-serv-text .quo {
    padding-left: 40px;
    margin-left: 30px;
    color: var(--prime);
    font-style: italic;
    border-left: 1px solid var(--prime);
    max-width: 400px;
}


.serv-add {
    padding: 40px 0 0;
}

.serv-add .subtitle {
    font-size: 24px;
    margin-bottom: 20px;
}

.serv-add .item {
    background: var(--sec);
    padding: 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.serv-add .item .num {
    font-size: 48px;
    color: var(--prime);
    font-weight: 500;
    margin-right: 25px;
}

.serv-add .item .num-text {
    font-size: 16px;
}

.prices {
    padding: 40px 0;
}


.prices table {
    border: none;
    margin-bottom: 20px;
    width: 100%;
}

.prices table tr:first-child td {
    background: var(--prime);
    font-weight: 700;
    color: white;
    padding: 14px;
}

.prices table td, .prices table th {
    padding: 14px;
    font-weight:400;
}

.prices table tr:nth-child(odd) {
    background: var(--sec);
}

.prices table + p {
    color: var(--prime);
    font-weight: 700;
}



.works {}

.works .item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 320px;
}

.do,
.posle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.do {
    z-index: 1;
    overflow: hidden;
}

.posle {
    z-index: 2;
    width: 50%;
    /* Начальная позиция */
    overflow: hidden;
}

.do img,
.posle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.works .slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #fff;
    z-index: 3;
    cursor: ew-resize;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.works .slider-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    cursor: ew-resize;
}



/*CONTACTS*/

.contacts-page {
    padding: 10px 0 36px;
}

.cont-form {
    background: url(../img/cont-fon.jpg) no-repeat center center/cover;
    border-radius: 6px;
    padding: 53px;
    color: white;
    margin-bottom: 30px;
}

.cont-form .cont-item {
    font-size: 24px;
    max-width:600px;
}

.cont-form .cont-item + .cont-item {
    margin-top: 80px;
}

.cont-form .cont-item span {
    border-top: 1px solid var(--prime);
    display: inline-block;
    padding-top: 10px;
}

.cont-form .soc {
    display: flex;
    margin-top:30px;
}

.cont-form .soc a {
    margin-right: 20px;
}
.cont-form .soc img {
    width:48px;
}


.cont-form form {
    
}

.cont-form form h3 {
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align:center;
}


.cont-form form p {
    margin-bottom: 20px;
    text-align:center;
    max-width:400px;
    margin-left:auto;
    margin-right:auto;
}

.cont-form form .form-group {
    margin-bottom: 10px;
    text-align:center;
}

.cont-form form input {
    width: 300px;
    border-radius: 6px;
    background: white;
    height: 60px;
    padding: 20px;
    font-size: 18px;
    border: none;
    border-bottom: 1px solid var(--prime);
    margin: 0 auto
}

.cont-form form .but button {
    width: 300px;
    margin: 0 auto;
    display:block;
    border-radius:6px;
    margin-bottom:15px;
}

.cont-form form p {
    max-width:300px;
}
.contacts-page .item {
    background: #F7F7F7;
    padding: 16px;
    text-align: center;
    border-radius: 12px;
}


.contacts-page .item .subtitle {
    font-size: 22px;
    font-weight: 500;
    color: var(--prime);
    margin-bottom: 16px;
    margin-top:30px;
}

.contacts-page .item p {
    margin-bottom: 20px
}

.contacts-page .item .phones a {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contacts-page .item .more a {
    font-size: 16px;
    font-weight: 700;
    color: var(--prime);
    text-decoration: underline;
    display: inline-block;
    margin-top: 10px;
}

.contacts-page .item {}

.contacts-page .item {}

.contacts-page .item {
    height: 100%;
    margin-bottom: 0px;
}

.reviews {
    margin-top:20px;
}

.reviews a img {
    width:100%;
    margin-bottom:20px;
}

.pad60 {
    padding:30px 60px;
    position: relative;
}

.pad60 .swiper-pagination {
    position: relative;
    text-align: center;
    transition: 300ms opacity;
    transform: translate3d(0, 0, 0);
    z-index: 99;
    top: auto;
    bottom: -23px;
}

/*JOB PAGE*/

.promo-job {
    margin-top:30px;
}

.promo-job form {
}

.promo-job form h4 {
    font-size:18px;
    font-weight:400;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 10px 0 25px;
}

.promo-job form h4 b {
    display:block;
}

.promo-job form input {
    /* background:none; */
    /* border-radius:0; */
    /* border-bottom:1px solid var(--prime); */
    padding:20px 10px;
}

.promo-job form .but {
    margin-bottom:10px;
    width:100%;
}

.promo-job form .but button {
    width:100%;
    text-align: center;
    display: block;
    background: white;
    color: black;
    text-transform: none;
    font-weight: bold;
    font-size: 16px;
}

.promo-job form .but+p {
    font-size: 16px;
    color: white;
    text-align: center;
}


.pre-job .item h4 {
    color:var(--prime);
    font-weight:700;
    margin-bottom:20px;
}

.pre-job .item {
    padding:30px 30px;
}


.kak {
    
}

.kak .item {
    background: var(--sec);
    padding:25px;
    height: 100%;
    border-radius: 10px;
}

.kak .item .num {
    color:#C4C4C4;
    font-size: 66px;
    margin-bottom: 20px;
}

.kak .item .subtitle {
    font-size:22px;
    color:var(--prime);
    font-weight: 500;
    margin-bottom: 30px;
}

.kak .item p {
    font-size: 16px;
}


.kak .but {
    margin-top: 50px;
}

section.zak .row img {
    width:100%
}

section.zak .red-form {
    margin-top:20px;
    background:var(--prime);
    border-radius:20px;
    padding: 20px 22px;
}

section.zak h2 {
    font-weight:700;
    font-size:40px;
    text-transform:none;
    margin-bottom:30px;
}

section.zak {}




section.zak .counts {
    display: flex;
    align-items: center;
    color: var(--black);
    padding: 15px 36px;
    background: white;
    border-radius: 10px;
    justify-content: space-between;
}

section.zak .counts input {
    color: var(--black);
    padding: 0 22px;
    border: none;
    text-align: center;
}

section.zak input,
section.zak select {
    padding: 15px 13px;
    background: white;
    border-radius: 10px;
    width: 100%;
    border: none;
}

section.zak h3 {
    margin-bottom:20px;
    margin-top: 30px;
}

section.zak select {
    appearance: none;
    background: #fff url(../img/down.svg) no-repeat 95% 10px;
}


section.zak .agree {
    text-align: right;
    color: white;
    margin-top: 15px;
    font-size: 14px;
}

section.zak .but.white button {
    background: white;
    font-weight: 500;
    width: 100%;
    border-radius: 10px;
    padding: 15.5px;
    color: initial;
    text-transform: none;
    font-size: 18px;
}

.but.more-all.text-center a {
    color: black;
    text-transform: none;
    background: var(--sec);
    cursor: pointer;
    margin-top: 10px;
    display: inline-block;
}

section.arenda-page {}

.arenda-page .item {
 margin-bottom: 25px;
}

.row.arenda-page .item {
    margin-bottom: 0px;
}

.row.arenda-page .col-lg-4 {
    margin-bottom:20px;
}
.arenda-page .item .but {
        text-align:center;
        margin-top:20px;
}
.arenda-page .item .but a {
    text-transform:none;
    font-size:17px;
    display: inline-block;
}

.arenda-page .item img {
    width:100%;
    margin-bottom:-30px;
    border-radius:20px 20px 0 0
}

.arenda-page .item .content {
       background:#E9EDF0;
       padding:30px 40px;
       border-radius:30px;
       position:relative;
}

.arenda-page .item .subtitle {
    font-size: 17px;
    font-weight:bold;
    margin-bottom: 20px;
}
section.arenda-page .item .subtitle {
    min-height:66px;
}
.arenda-page .item p {
    margin-bottom:30px;
    line-height:1.5;
    min-height: 60px;
    max-width:80%;
}

.arenda-page .item .price span {
    font-size:22px;
    font-weight:500;
    margin-left:5px;
} 

.thank img {
    margin-bottom: 20px;
}