:root {
    --prime: #36CCDC;
    --sec: #FFE4E4;
    --silver: #EAEAEA;
    --black: #2e2e2e;
    --black2: #404040;
    --grad: linear-gradient(90deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.2) 100%),
        linear-gradient(to left, #36ccdc, #36ccdc);

}

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: 30px;
    background: var(--grad);
    color: white;
    text-transform: none;
    font-size: 16px;
    padding: 15px 43px 15px;
    line-height: 18px;
    display: inline-block;
}


.but img {
    margin-left: 0;
    width: auto !important;
    min-width: 12px;
    border-radius: 0 !important;
}

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

.but.border1 a {
    border: 1px solid var(--prime);
    background: none;
    color: 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 {
    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 {
    border-radius: 30px;
}

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 {
    background: var(--prime);
    color: white;
    border-radius: 30px;
}

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.active a, header nav > ul > li.current a {
    background: var(--prime);
    color: white;
    border-radius: 25px;
}

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

main {
    padding-top: 0px;
    /* background: #f6f6f6; */
}



/*PROMO4*/

.promo4 {
    background: url(../img/promo.jpg) no-repeat center center/cover;
    padding: 80px 0 30px;
    color: white;
    min-height: 600px;
}

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

.promo4 .but a {
    background:white;
    color:var(--black);
}
.promo4 .title {
    text-align: center;
    font-size: 40px;
    line-height: 48px;
    font-weight: 500;
    margin-bottom: 36px;
}

.promo4 .title span {
    display: block;
}

.promo4 .fl-column {
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 550px;
}

.promo4 ul {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
}

.promo4 ul li {
    font-size: 20px;
    display: flex;
    margin-right: 40px;
}

.promo4 ul li:before {
    content: url(../img/check3.svg);
    position: relative;
    margin-right: 10px;
}


/*PROMO-TOP*/


.promo2 {}

.promo2 .title {
    font-size: 35px;
    line-height: 48px;
    font-weight: 500;
    margin-bottom: 20px;
}

.promo2 p {
    font-size:20px;
}

.promo2 ul li {
    background: url(../img/check5.svg) no-repeat left 10px;
    padding-left: 24px;
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 400;
}

.promo2 .row {
    background: var(--silver);
    padding: 39px 50px 0 50px;
    border-radius: 30px;
    border-top: 0px solid white;
}

.promo2 ul {
    margin-bottom: 50px;
    margin-top: 20px;
}

.promo2 .col-lg-5 {
    margin-top: -90px;
}

.promo2 {
    padding-bottom: 0;
}

.promo2 {}


.pre-text {
    margin-top: 10px;
    padding-top: 0;
}

.pre-text .row {
    margin: 0 -15px;
}

.pre-text .col-md-4 {
    padding: 0 5px;
}

.pre-text .item {
    background: var(--silver);
    border-radius: 30px;
    padding: 17px 22px;
    height: 100%;
}

.pre-text .item .subtitle {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}




/*PROMO*/

.promo3 {
    background: #c0edf2 url(../img/doc.jpg) no-repeat left 0;
}

.promo3 form {
    background: var(--grad);
    padding: 30px;
    border-radius: 30px;
    margin-left: auto;
    display: block;
    max-width: 888px;
}
.promo3 form .fl {
    justify-content:flex-end
}
.promo3 h2 {
    text-align: right;
    font-weight: 500;
    font-size: 55px;
    margin-bottom: 25px;
    max-width: 650px;
    margin-left: auto;
}

.promo3 h2 span {
}


.promo3 .subtitle {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: white;
    margin-bottom: 5px;
}

.promo3 form p {
    color: white;
}

.promo3 p {
    font-size: 25px;
    text-align: right;
    margin-bottom: 20px;
    margin-left: auto;
    max-width: 888px;
}

.promo3 form p {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 14px;
}


.promo3 .form-group {
    margin-bottom: 11px;
    margin-right: 10px;
    flex-basis: 33.33%;
}
.promo3 .but {
    flex-basis:33.333%
}
.promo3 .counts {
    display: flex;
    align-items: center;
    color: var(--black);
    padding: 13px 36px;
    background: white;
    border-radius: 10px;
    justify-content: space-between;
}

.promo3 .counts input {
    color: var(--black);
    padding: 0 22px;
    border: none;
    text-align: center;
}

.promo3 input,
.promo3 select {
    padding: 18px 17px;
    background: white;
    border-radius: 30px;
    width: 100%;
    border: none;
}

.promo3 h3 {
    margin-bottom: 20px;
    margin-top: 30px;
}

.promo3 select {
    appearance: none;
    background: #fff url(../img/down.svg) no-repeat 95% 10px;
}

.promo3 form .total {
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
}

.promo3 .agree {
    text-align: right;
    color: white;
    margin-top: 0px;
    font-size: 15px;
}

.promo3 .but.white button {
    background: white;
    font-weight: 500;
    width: 100%;
    border-radius: 30px;
    padding: 18px 40px;
    color: initial;
    text-transform: none;
    font-size: 18px;
}

.promo3 .col-lg-8 img {
    border-radius: 16px;
    max-height: 400px;
    object-fit: cover;
    width: 100%;
    object-position: center;
}

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

.we {
    background: white;
    margin: 40px 0;
}

.we .fl {
    background: var(--silver);
    padding: 42px 48px;
    border-radius: 30px;
}

.we ul {
    list-style: none;
    padding: 20px 0
}

.we ul li {
    list-style: none;
    padding-left: 20px;
    background: url(../img/check2.svg) no-repeat left 5px;
    margin-bottom: 10px;
}

.we .text {
    padding-right: 110px;
}

.we .quo {
    background: var(--prime);
    color: white;
    text-align: center;
    border-radius: 30px;
    max-width: 400px;
    padding: 40px;
}

.we .quo img {
    margin-bottom: 30px;
}


/*WE*/

.we2 {}


.we2 .subtitle {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 15px;
    max-width: 800px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.we2 .img {
    flex-basis: 50%;
    padding-right: 60px;
}

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

.we2 img {
    border-radius: 13px 0px 0px 13px;
    display: block;
    /* width: 100%; */
    text-align: right;
    margin-left: auto;
}

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

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

.we2 ul {
    list-style: none;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.we2 ul li {
    list-style: none;
    padding: 20px 20px 20px 30px;
    border: 1px solid #eee;
    border-radius: 42px;
     text-align:center;
    margin-bottom: 0px;
    flex-basis: calc(33.333% - 10px);
}
.we2 ul li:before {
    content:url(../img/check5.svg);
    margin-right:10px;
}

/*PARTNERS*/

.partners {
    margin-top: 20px;
}

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

/*REV*/

.rev2 {
    background: #f8f8f8;
}

.rev2 .item {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px 20px;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 25px;
}

.rev2 img {
    border-radius: 50%;
    margin-bottom: 15px;
}

.rev2 .swiper-nav img {
    min-width: 42px;
}

.rev2 .name {
    color: var(--prime);
    font-weight: 500;
    margin-bottom: 5px;
}
.rev2 .but {
    margin-top:50px;
}
.rev2 .serv-name {
    font-size: 14px;
    margin-bottom: 20px;
}


.rev2 .more {
    margin-top: 20px;
    text-decoration: underline;
    text-decoration-color: var(--prime);
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;

}
.rev2 .item .text {
    height:60px;
    overflow:hidden;
    transition:0.5s;
}
.rev2 .item .text.active {
    height:auto;
    
}

.rev2 .item .more.active{

    text-decoration-color:var(--black)
 
}

.rev2 .item .more.active a {
        color:var(--black);
}

.rev2 .swiper-pad {
    position: relative;
    padding: 0 60px;
}

.rev2 .more a {
    color: var(--prime)
}

.rev2 .title {
    text-align: center;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 32px;
}

.rev2 .s-prev {
    position: absolute;
    top: 47%;
    left: 0;
}


.rev2 .s-next {
    position: absolute;
    top: 47%;
    right: 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;
}

.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: 77px;
}


.serv .item {
    height: 433px;
    padding: 33px 40px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    background-size: 100%;
    margin-bottom: 25px;
}

.serv .item:before {
    position: absolute;
    height: 279px;
    background: linear-gradient(180deg,
            rgba(233, 237, 240, 0) 2.326466143131256%,
            rgba(233, 237, 240, 1) 41.11190140247345%);
    content: '';
    z-index: 2;
    bottom: 0;
    width: 100%;
    left: 0;
    border-radius: 0px 0px 16px 16px;
}

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

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


/*FOOTER*/

footer {
    margin-top: 0;
    background: #fafafa;
    padding-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;
}

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


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

.serv-page h2 {
    font-size: 40px;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 20px;
    padding: 0 0px;
    font-weight: 500;
    text-transform: none;
}

.serv-page h2 b {
    color: var(--prime);
    font-weight: 500;
}

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

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: 0px;
}

.serv-page .img img {
    max-width: 100%;
}

.serv-page .fl + p {
    margin-top: 20px;
    font-size: 18px;
    margin-bottom: 40px;
}

.serv-page .item {
    border: 1px solid #eee;
    border-radius: 30px;
    background: white;
    margin-bottom: 25px;
}

.serv-page .but.border1 {
    margin-top: 50px;

}

.serv-page .but.border1 a {
    padding: 15px 70px;
}

.serv-page .but.border1 a:hover {
    background: var(--prime);
    color: white;
}

.serv-page .item img {
    width: 100%;
    border-radius: 30px 30px 0 0;
}

.serv-page .subtitle,
.serv-page .intro,
.serv-page .price {
    padding: 0px 20px;
    text-align: center;
}

.serv-page .subtitle a {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    display: block;
    text-align: left;
    margin-top: 20px;
}

.serv-page .intro {
    font-size: 14px;
    text-align: center;
}

.serv-page .fl {
    margin-bottom: 13px;
    padding: 0 15px;
}

.serv-page .price {
    font-size: 12px;
    text-align: left;
    margin: 10px 0 0px;
    padding: 0;
}

.serv-page .price b {
    font-size: 18px;
    font-weight: 700;
}

.serv-page .item .but a {
    display: inline-flex;
    width: 34px;
    height: 34px;
    background: var(--prime);
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 0;
}


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

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

}

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

.promo-info form {
    color:white;
}

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

.thank h4 {
    color:inherit
}

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


section.promo3 .thank {
    max-width: 888px;
    margin-left: auto;
    text-align:left;
}

section.promo3 .thank img {
    border:2px solid white;
    border-radius:50%;
    background:#fff;
}

section.promo3 .thank h4 {
    text-align:left;
}

section.promo3 .thank p {
    text-align:left;
    font-size:18px;
}