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;
}

main {
    background: var(--silver);
}



/*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: 24px 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;
    font-size: 16px;
    padding: 16px 33px 15px;
    line-height: 18px;
    font-weight: 500;
}


.but img {
    margin-left: 8px;
}

.but a:hover,
.but button:hover {
    background: #fff;
    color: var(--prime);
    border: 1px solid var(--prime);
}

.but.text-center {
    text-align: center;
}

.but.border a {
    border: 1px solid var(--prime);
    background: none;
    color: var(--black);

}

.more a {
    color: var(--prime);
    text-decoration: none;
    cursor: pointer;
}

.more a:hover {
    color: #FF02C8
}

.prime {
    background: var(--prime);
    color: white;
}


/*HEADER*/

header {
    padding: 25px 0;
}

header .fl {
    width: 100%;
}

header .phone {
    flex-basis: auto;
    font-size: 18px;
    font-weight: 500;
    padding-left: 18px;
    margin-right: 25px;
}

header .phone img {
    margin-right: 10px;
}

header .phone p {
    font-size: 13px;
    text-align: right;
}

header .header-bottom {
    margin-top: 14px;
    margin-bottom: 80px;
}

header nav {
    background: var(--menu);
    border-radius: 12px;
}

header nav > ul {
    display: flex;
    list-style: none;
    justify-content: space-between;
}

header nav > ul li a {
    padding: 15px 25px;
    display: inline-flex;
}

header nav > ul > li.parent:after {
    content: url(../img/down2.svg);
    position: absolute;
    margin-top: 13px
}

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;
}

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;
}




/*PROMO*/

.promo {
    padding-top: 0
}

.promo img {
    margin-left:auto;
    display:block;
    width: 100%;
}

.promo .row {
    align-items:center;
    justify-content: space-between;
    width: 100%;
}

.promo h1 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 32px;
    max-width: 80%;
}

.promo ul li {
    list-style: none;
    position: relative;
    padding-left: 37px;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 13px;
}

.promo ul li:before {
    content: url(../img/check.svg);
    position: absolute;
    left: 0;
}

.promo ul {
    margin-bottom: 52px;
}


/*PRE*/


.pre {}

.pre .title {
    font-size: 40px;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 20px;
    padding: 0 0px;
    font-weight: 500;
}

.pre .title b {
    display: block;
    color: var(--prime);
    font-weight: 500;
}

.pre .title + p {
    text-align: center;
    font-size: 20px;
    max-width: 990px;
    margin: 0 auto 40px;
}

.pre .item {
    background: #ffffff;
    border-radius: 13px;
    padding: 30px 60px;
    border: 1px solid #eaeaea;
    text-align: center;
}

.pre .item p {
    min-height:70px
}

.pre img {
    display: block;
    margin-bottom: 32px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    height: 60px;
    width: auto;
}

/*SERV-TABLE*/

.serv-table .item {
    background: #ffffff;
    border-radius: 13px;
    padding: 30px;
    border: 1px solid #eaeaea;
    text-align: center;
}

.serv-table .title {
    font-size: 35px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 24px;
}

.serv-table .title span {
    color: var(--prime);
}

.serv-table p {
    font-size: 18px;
    margin-bottom: 34px;
    text-align: left;
}

.serv-table ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.serv-table ul li {
    flex-basis: calc(50% - 20px);
    list-style: none;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
}

.serv-table ul li {
    margin-right: 20px;
}

.serv-table ul li:nth-child(2n) {
    margin-right: 0;
    margin-left: 20px;
}

.serv-table .but {
    margin-top: 64px;
    margin-bottom: 30px;
}

.serv-table ul li em {
    font-style:normal;
}

/*WE*/

.we {}

.we .fl {
    background: #ffffff;
    border-radius: 13px;
    border: 1px solid #eaeaea;

}

.we .text {
    padding: 30px;
    border-radius: 0px 13px 13px 0px;
}

.we .subtitle {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 15px;
    max-width: 60%;
}

.we .img {
    flex-basis:50%
}

.we .text {
    flex-basis:50%;
    padding-left:80px
}

.we img {
    border-radius: 13px 0px 0px 13px;
    display: block;
    width:100%;
}

.we .text p {
    max-width:80%;
}

.we .but {
    margin-top:50px;
}


/*WE-CHECK*/

.we-check .title {
    text-align: center;
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 24px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}
.we-check ul {
    display:flex;
    flex-wrap:wrap;
    margin:0 -8px;
}
.we-check ul li {
    border: 1px solid #eaeaea;
    background: #ffffff;
    list-style: none;
    padding: 12px 12px 12px 24px;
    display: flex;
    align-items: center;
    font-size: 18px;
    min-height: 71px;
    font-weight: 500;
    flex-basis: calc(25% - 16px);
    margin:8px;
    border-radius: 13px;
}

.we-check ul li:before {
    content: url(../img/cheeck2.svg);
    position: relative;
    margin-right:20px;

}

/*REV*/

.rev {
    /* background: white; */
    padding: 36px 0;
}

.rev .title {
    text-align: center;
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 30px;
}

.rev .item {
    padding: 24px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 337px;
    text-align: center;
    border-radius: 13px;
    background: white;
}

.rev .name {
    margin-bottom: 20px;
}

.rev .first-name {
    color: var(--prime);
}

.rev .dol {
    font-size: 14px;
    text-align: center;
}

.rev .but {
    margin-top: 50px;
    border: none !important;
    margin-bottom:20px;
}

.rev .but a {
    min-width: 274px;
}

/*PARTNERS*/

.partners {}

.partners .title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 35px;
    font-weight: 500;
}


/*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;
}


/*FOOTER*/

footer {
    margin-top: 40px;
    background: white;
    padding-top: 36px;
}

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;
}

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 {
    margin-bottom: 42px;
}

.bread ul {
    display: flex;
}

.bread ul + h1 {
    margin-top: 30px;
}

h1 + p {
    max-width: 70%
}


.bread ul li a:after {
    content: url(../img/next2.svg);
    padding: 0 7px;
}

.bread ul li span {
    color: var(--prime)
}

.bread ul li a span {
    color: var(--black)
}


/*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: 2px solid var(--prime);
    border-radius: 6px;
    background: white;
    margin-bottom: 25px;
}

.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;
}

.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: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}


.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: 33.333%;
}

.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 {
    padding: 14px;
}

.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 {
    background: var(--sec)
}

.promo-job form h4 {
    font-size: 18px;
    font-weight: 400;
}

.promo-job form h4 b {
    color: var(--prime);
    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;
}

.promo-job form .but + p {
    font-size: 14px;
}


.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;
}

input[name="phone"].error {
  border-color: #dc3545;
}

input[name="phone"].valid {
  border-color: #28a745;
}

.promo-info #ajaxForm {
    color:white !important;
}

.promo [name="phone"]+div, .promo-about [name="phone"]+div, .promo-info [name="phone"]+div {
    color:inherit !important
}

.promo .thank img, .promo-info .thank img {
    margin-bottom:15px;
}
.promo .thank, .promo-info .thank {
    text-align: left;
}

.promo .thank p,.promo-info .thank p {
    text-align: left;
}

.thank img {
    margin-bottom:20px
}