:root {
    --prime: #00A0E3;
    --sec: #3CBEFF;
    --gray: #D3E0E8;
    --darkgray: #9496A5;
    --silver: #E8F3F9;
    --black: #222222;
    --darkblue: #0b2742;
    --grad: url(../img/grad.png) no-repeat center center/cover;
    --grad2: url(../img/grad2.png) no-repeat center center/cover;

}

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

.burger-menu {
    display: none;
}

.burger-overlay {
    display: none;
}

/*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: 'Manrope';
    font-size: 16px;
    font-weight: 400;
    background: #e8f3f9;
    overflow-x: hidden;
    color: var(--black);
    line-height: 1.3;
}


section {
    padding: 100px 0;
    position: relative
}

section.bg {
    margin: 60px 0
}

h1 {
    text-transform: none;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 32px;
}

.title {
    text-align: center;
    font-size: 40px;
    line-height: 120%;
    margin-bottom: 25px;
}

.title span {
    color: var(--prime);
    display: block;
}

.title + p {
    font-size: 20px;
    text-align: center;
    color: var(--darkgray);
    margin-bottom: 55px;
}


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

.ae {
    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 {
    background: var(--grad);
    box-shadow: 0px 14px 15px -10px rgba(0, 104, 179, 0.5);
    color: white;
    font-weight: bold;
    font-size: 16px;
    height: 80px;
    padding: 0;
    min-width: 210px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    border: none;
    transition: 0.5s;
}


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

.but a:hover,
.but button:hover {
    background: var(--grad2);
}

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

.more a:hover {
    color: #FF02C8
}


/*HEADER*/

.bg-one {
    background: url(../img/fon1.png) no-repeat left 0, url(../img/fon2.png) no-repeat right bottom;
}


header {
    padding: 20px 0 0;
}

.header-bottom {
    margin-top: 33px;
}

.header-bottom nav ul {
    display: flex;
    margin: 0 -20px;
}

.header-bottom nav ul li {
    padding: 0 20px;
}

.header-bottom nav ul li a {
    font-weight: 800;
}

.header-bottom nav ul li a:hover {
    opacity: 0.7;
}

.header-bottom nav ul li a:active {
    color: var(--prime);
    opacity: 1;
}

.address {}

footer .address {
    color: white
}

.address img {
    margin-right: 14px;
}


.address .item1 {
    line-height: 1.2;
    color: inherit;
    font-weight: bold;
}

.address .item2 {
    color: var(--darkgray);
}

footer .address .item2 {
    color: white;
}

.soc {}

.soc .text {
    color: var(--darkgray);
    padding-right: 16px;
    max-width: 110px;
}

.soc .links {
    display: flex;
    align-items: center;
}

.soc .links a {
    transition: 0.5s;
}

.soc .links a.wh {
    margin-right: 5px;
    background: #01c358;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.soc .links a:hover {
    opacity: 0.7;
}

.soc .links a.tg {
    margin-right: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00b4f8;
}

.soc .links a.ma {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #7a6aed;
}

.phone {}

.phone a {
    font-size: 18px;
    font-weight: 700;
}

.gr {
    color: var(--darkgray)
}

.gr:before {
    content: url(../img/online.svg);
    margin-right: 3px;
    top: -2px;
    position: relative;
}


/*PROMO*/

.promo {
    padding: 50px 0;
}

.promo-title {
    font-size: 48px;
    line-height: 110%;
    margin-bottom: 20px;
    padding-top: 20px;
}

.promo-title span {
    color: var(--prime);
    display: block;
}

.promo p {
    font-size: 24px;
    line-height: 130%;
    font-weight: 300;
    margin-bottom: 37px;
}

.promo .but {
    margin-right: 20px;
}

.video-but {
    display: flex;
}

.video-but a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 30px;
    box-shadow: 0px 8px 64px 0px rgba(0, 0, 0, 0.05);
    background: #fff;
    position: relative
}

.video-but a:hover svg path {
    fill: #01a0e3
}

.video-info {
    border: 2px solid #dde4e9;
    border-radius: 30px;
    padding: 14px 25px 14px 60px;
    margin-left: -50px
}

.video-info .min {
    font-size: 14px;
    line-height: 120%;
    font-weight: 700;
}

.video-info .video-text {
    font-size: 14px;
    line-height: 110%;
    color: var(--darkgray);
}

.promo .img {
    position: relative;
}

.promo .rate2 {
    background: white;
    border-radius: 30px;
    width: 120px;
    height: 144px;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    text-align: center;
    position: absolute;
    top: 30px;
    left: -30px;
    z-index: 99;
    flex-wrap: wrap;
    overflow: hidden;
    padding-top: 6px;
}

.rate-numb {
    color: #d5e4ee;
    text-align: center;
    font-size: 50px;
    font-weight: 800;
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    /* height: 50px; */
    line-height: 1.2;
    text-align: center;
    align-items: center;
}

.stars {
    position: absolute;
    z-index: 9;
    margin-bottom: 0px;
    height: auto;
    top: 17px;
}

.stars-info {
    font-size: 14px;
    line-height: 120%;
    font-weight: 700;
    top: auto;
    position: relative;
    margin-top: 12px;
}

.img-promo {
    border-radius: 80px;
}


/*ADVANTAGES*/

.pre {
    padding: 20px 0 80px 0;
}

.pre-item {
    display: flex;
    align-items: center;
    position: relative;
}

.pre-item img {
    border-radius: 50px;
    position: relative;
    width: 130px;
}

.pre-item:after {
    content: url(../img/check2.svg);
    position: absolute;
    left: 100px;
    bottom: -5px;
    z-index: 3;
}

.pre-item .pre-text {
    margin-left: 19px;
}

.pre-item .subtitle {
    font-size: 18px;
    line-height: 120%;
    font-weight: 800;
    margin-bottom: 12px;
}

.pre-item p {
    max-width: 210px;
}


/*SERVICES*/

.services {
    background: white;
    border-radius: 80px 80px 0 0;
    padding-bottom: 170px;
}

.services .title {
    margin-bottom: 50px;
}

.services .row {
    margin: 0 -7.5px;
}

.services .col-lg-3 {
    padding: 0 7.5px;
}

.serv-item {
    border: 1px solid var(--gray);
    border-radius: 30px;
    padding: 22px;
    margin-bottom: 15px;
    height: calc(100% - 15px);
}


.serv-item img {}

.serv-item .serv-top {}

.serv-item .price {
    background: var(--silver);
    font-size: 14px;
    color: var(--prime);
    padding: 11px 15px;
    border-radius: 20px;
}

.serv-title {
    font-size: 19px;
    line-height: 130%;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 30px;
}

.serv-item ul {}

.serv-item ul li {
    color: var(--darkgray);
    margin-bottom: 3px;
}

.all-serv {
    text-align: center;
    margin-top: 12px;
}

.all-serv a {
    font-size: 18px;
    line-height: 130%;
    font-weight: 700;
    border-bottom: 1px solid;
    color: var(--prime);
}

.all-serv a:hover {
    border-color: transparent
}

/*INNOVATION*/

.innov {
    border-radius: 80px 80px 0px 0px;
    background: #e8f3f9;
    margin-top: -70px;
}


.inn-item {
    background: #ffffff;
    border-radius: 100px;
    margin-bottom: 20px;
    width: 100%;
    padding: 20px;
    position: relative;
}

.inn-item .img {
    position: relative;
    flex-basis: 41%;
    z-index: 2;
}

.inn-item .img:after {
    content: url(../img/check.svg);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 9;
}

.inn-item .img img {
    border-radius: 80px;
}

.inn-item .num {
    color: var(--silver);
    margin-left: 0;
    font-weight: 300;
    font-size: 80px;
    z-index: 0;
    position: absolute;
    left: 39%;
    top: 7%;
}

.inn-item .subtitle {
    font-size: 22px;
    line-height: 130%;
    font-weight: 700;
    margin-bottom: 33px;
    max-width: 250px;
}

.inn-item .text {
    padding-bottom: 64px;
    margin-left: 45px;
}

.inn-item p {
    max-width: 250px
}

.inn-item .text-blue {
    color: var(--prime);
    font-weight: 700;
    padding-bottom: 64px;
    max-width: 282px;
    padding-right: 40px;
}


/*REVIEWS*/

.reviews {
    border-radius: 80px 80px 0px 0px;
    background: white;
    padding-bottom: 5px;
}

.rev-item {
    border: 1px solid var(--gray);
    border-radius: 30px;
    height: 150px;
    padding: 31px;
}

.rev-item:hover {
    border-color: var(--prime)
}

.rev-item .rate {
    background: var(--silver);
    font-size: 14px;
    font-weight: 700;
    width: 52px;
    height: 45px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    color: var(--prime);
}

.rev-item .more a {
    color: var(--darkgray);
    display: block;
    margin-top: 28px;
}

.rev-item:hover .more a {
    color: var(--prime)
}


/*CONSULTATION*/

.cons {
    background: white;
    margin-bottom: 0px;
    padding-bottom: 190px;
}

.cons-form {
    background: var(--silver);
    border-radius: 100px;
    padding: 22px 22px 22px 58px;
}

.cons-form .row {
    align-items: center;
}

.cons .title {
    text-align: left;
}

.cons .title + p {
    text-align: left;
    margin-bottom: 25px;
}


.cons ul li {
    list-style: none;
    font-size: 18px;
    padding-left: 24px;
    margin-bottom: 5px;
    position: relative;
}

.cons ul li:before {
    content: url(../img/check3.svg);
    margin-right: 0;
    position: absolute;
    left: 0;
    top: -4px;
}

.cons form {
    margin-top: 38px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

form input[type="text"] {
    background: #ffffff;
    border-radius: 30px;
    height: 70px;
    padding: 10px 30px;
    border: none;
    margin-right: 10px;
}

form input[type="text"]:focus {
    outline: 0
}

form .check {
    margin-top: 24px;
    color: var(--darkgray);
    display: flex;
}

form .but button {
    height: 70px;
    width: 230px;
}

form .check input {
    margin-right: 10px;
    border: none;
    display: none;
}

form .check em {
    width: 18px;
    height: 18px;
    background: #ffffff;
    border-radius: 5px;
    position: relative;
    margin-right: 10px;
    display: inline-flex;
}

form .check input:checked + em:after {
    content: url(../img/checkbox.svg);
    position: absolute;
    z-index: 99;
    top: -3px;
    left: 4px;


}

form .check a {
    text-decoration: underline;
}

.cons img {
    border-radius: 80px;
}


/*FOOTER*/

footer {
    background: var(--darkblue);
    padding-top: 77px;
    border-radius: 60px 60px 0px 0px;
    margin-top: -70px;
    position: relative;
}

footer .logo2 {
    margin-bottom: 39px;
}

footer .cont {
    margin-bottom: 22px;
    color: white;
}

footer .email {
    margin-bottom: 27px;
    margin-top: 20px;
}

footer .email a {
    color: var(--darkgray);
}

footer .menu-title {
    color: white;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 35px;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: var(--darkgray);
}

footer ul li a:hover {
    color: white;
}

footer .pro {
    background: white;
    border-radius: 20px;
    width: 100%;
    height: 73px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 11px;
    text-align: center;
    flex-wrap: wrap;
    padding: 16px;
}

footer .pro img {
    width: 152px
}

footer .pro p {
    text-align: center;
    color: var(--darkgray);
    margin-top: 6px;
    font-size: 14px;
}

footer .no a {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 16px 19px;
    height: 98px;
}

footer span {
    text-transform: uppercase;
    font-size: 10px;
    color: white;
    font-weight: bold;
    padding: 0px 13px 0px 23px;
    border-radius: 20px;
}

footer .bottom {
    margin-top: 70px;
    padding-top: 47px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

footer .bottom .bottom-info {
    color: var(--darkgray);
}

footer .white-pixel {
    text-align: right
}

footer .warn {
    margin-top: 50px;
    padding-bottom: 30px;
}


.thank,
.thank2 {
    margin-top: 30px;
}

.thank .subtitle,
.thank2 .subtitle {
    text-align: left;
    font-size: 20px;
    color: var(--prime);
    font-weight: bold;
    margin-bottom: 15px;

}

.thank .title,
.thank2 .title {
    text-align: left;
    font-size: 27px;
    font-weight: bold;
    margin-bottom: 10px;
}

.thank .title + p,
.thank2 .title + p {
    text-align: left;
}


.check.error em {
    border: 1px solid red;
    border-radius: 6px;
}

.modal .check.error:after {
    content: 'Вы должны дать согласие на обработку данных';
    display: block;
    color: red;
    position: absolute;
    bottom: 50px;
    width: 100%;
    font-size: 13px;
}

.cons .check.error:after {
    content: 'Вы должны дать согласие на обработку данных';
    display: block;
    color: red;
    position: absolute;
    bottom: -30px;
    width: 100%;
    font-size: 13px;
}

section.text-page {
    padding: 30px 0 190px;
}

section.text-page p {
    margin-bottom: 20px;
}

section.text-page ul {
    margin: 20px 25px;
}

section.text-page ul li {
    margin-bottom: 10px;
    list-style: disc;
}

section.text-page ol {
    margin: 20px 25px;
}

section.text-page ol li {
    margin-bottom: 10px;
    list-style: decimal;
}

section.text-page h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

section.text-page h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

section.text-page h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}


#cookie-notification {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    color: #333;
    padding: 16px 20px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    max-width: 80%;
    text-align: center;
    width: 100%;
}

#cookie-notification .container {
    display:flex;
    justify-content:space-between;
    align-items:center;
}

#cookie-notification p {
    margin: 0;
    display: inline-block;
}
#cookie-notification a {
	text-decoration:underline;
}
#cookie-accept {
    background-color: #e8f3f8;
    color: #00a0e2;
    border: none;
    padding: 8px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 14px;
}

#cookie-accept:hover {
    background-color: #023a8c;
}

@media (max-width:991px) {
	#cookie-notification {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 0;
    transform: none;
    background-color: #fff;
    color: #333;
    padding: 15px 10px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
    z-index: 9999;
    max-width: 96%;
    text-align: left;
    font-size: 14px;
    margin-left: 2%;
}
    	#cookie-notification .container {
            flex-wrap:wrap;
        }
#cookie-accept {
    margin-top:20px;
    margin-left:0;
}
	
}
