:root {
    --prime: #1C4BAC;
    --sec: #001937;

}

.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;
}

input[type="file"] {
  display: none;
}


body {
    font-family: 'Fira Sans';
    font-size: 16px;
    font-weight: 400;
    background: #fff;
    overflow-x: hidden;
    color: #000;
    line-height: 1.2
}



section {
    padding: 64px 0;
    position: relative
}

section.bg {
    margin: 60px 0
}

h1 {
    text-transform: uppercase;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 30px;
}

/*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;
}

.flc {
    flex-direction: column;
}

.container-fluid {
    padding: 0 30px;

}

main {
    position: relative;
    background: white;
    z-index: 9
}

.title {
    color: inherit;
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
}

.title span {
    color: var(--prime);
}


/*BUTTON*/


.but a,
.but button {
    background: var(--prime);
    color: var(--black);
    padding: 18px 24px;
    border-radius: 0;
    color: white;
    font-weight: 500;
    font-size: 16px;
    border: 1px solid transparent;
    transition: 0.5s;
    display: inline-block;

}

.but.arr a,
.but.arr button {
    padding: 18px 43px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.but.arr img {
    margin-left: 12px;
    width: auto;
    margin-bottom: 0;
}

.but a:hover,
.but button:hover {
    background: var(--sec);
    color: #fff;
    border: 1px solid var(--sec);
}

.more a {
    color: var(--prime);
    text-decoration: none;

}


/*HEADER*/

.top {
    background: var(--sec);
    padding: 8px 0;
    color: white;
    position: relative;
    z-index: 99;
}

.top .cont-item {
    padding-right: 40px;
}

.top .cont-item a {
    display: flex;
    font-size: 14px;
    align-items: center;
}

.top .cont-item img {
    margin-right: 16px;
}

header .bottom {
    position: relative;
}

.soc {
    font-size: 16px;
}

.soc a {
    padding: 0 12px;
}

.logo-container {
    position: relative;
    z-index: 2;
}

header .logo {
    position: relative;
    display: inline-block;
    z-index: 3;
    padding: 12px 48px 12px 0;
}

header .logo::before {
    content: '';
    position: absolute;
    top: -50%;
    bottom: -50%;
    left: -100vw;
    right: -40px;
    z-index: -1;
    background-color: var(--prime);
    clip-path: polygon(0 0, 100% 0%, 96% 100%, 0% 100%);
    z-index: -1;
    /* height: 128px; */
}


.topmenu {
    padding: 0px 16px;
    position: relative;
}


.search {
    position: relative;
    cursor: pointer;
}

.search:before {
    content: url(../img/line.svg);
    margin: 0 15px;
    position: absolute;
    left: -50px;
    top: -3px;
}

.cart sup {
    background:#d2100d;
    color:white;
    padding:1px 4px;
    border-radius:50%;
    margin-left:-14px;
}

.search-block {
    position: relative;
    z-index: 99;
    text-align: right;
    margin-top: 0px;
}

.search-block form {
    display: none;
    position: absolute;
    right: 10px;
    margin-top: 10px;
}

.search-block button {
    height: 46px;
    display: inline-flex;
    align-items: center;
}

.search-block .container {
    position: relative;
}


.search-block input {
    border: 1px solid #DEE7F9;
    padding: 12px;
    margin-right: 10px;
    width: 240px;
}


.topmenu ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
}

.topmenu ul li {
    position: relative;
    white-space: nowrap;
    padding: 0 19px;
}

@media (min-width:992px) and (max-width:1666px) {
    .topmenu ul li {
        position: relative;
        white-space: nowrap;
        padding: 0 8px;
    }

    .search:before {
        content: url(../img/line.svg);
        margin: 0 15px;
        position: absolute;
        left: -38px;
        top: -3px;
    }

}

.topmenu ul li a:hover {
    color: var(--prime)
}

.topmenu ul li a {
    font-size: 18px;
    padding-bottom: 4px;
    font-weight: 400;
}

.topmenu ul li.current > a {
    border-bottom: 2px solid #CF2722;
}

.topmenu ul ul li {
    margin-bottom: 15px;
}

.topmenu .but {
    margin-left: 40px;
}

.topmenu ul ul {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transition-property: opacity, visibility;
    transition-duration: 0.2s;
    transition-delay: 0.15s;
    background: white;
    padding: 15px;
    display: block;
    z-index: 999;
    margin-top: 10px;
    min-width: 300px;
    column-count: 2;
}

.topmenu ul li:hover ul {
    opacity: 1;
    visibility: visible;
}

.topmenu ul li.parent > a:after {
    content: url(../img/down.svg);
    position: relative;
    right: -12px;
}


/*PROMO*/

.promo {
    padding: 0;
    color: white;
    position: relative;
    z-index: 99
}

.promo .title {
    text-transform: none;
    font-size: 56px;
    position: relative;
    z-index: 9;
    font-weight: 400;
}

.promo p {
    font-size: 20px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.promo .swiper-pagination {
    top: -80px;
}

.promo .item {
    padding: 120px 0 180px;
    background-size: cover;
}

.promo .but {
    text-align: center;
    position: relative;
    z-index: 9;
}

.promo .item:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000000a3;

}

.promo .swiper-button-prev {
    background: url(../img/prev.svg) no-repeat center;
    width: 31px;
    height: 60px;
    position: absolute;
    left: 60px;
    top: 45%;
    z-index: 999;
}

.promo .swiper-button-next {
    background: url(../img/next.svg) no-repeat center;
    width: 31px;
    height: 60px;
    position: absolute;
    right: 60px;
    top: 45%;
    z-index: 999;
}


/*SERVICES*/

.services .title {
    max-width: 750px;
    margin: 0 auto 30px;
}

.services .item {
    box-shadow: 4px 4px 20px 0px rgba(12, 28, 75, 0.1);
    padding: 16px;
    text-align: center;
    height: 100%;
}

.services .item img {
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.services .subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--prime);
    margin-bottom: 8px;
}

.services p {
    font-size: 16px;
    font-family: 'Inter';
}


/*ABOUT*/

.about {
    font-size: 18px;
}

.about .img {
    flex-basis: 30%
}

.about .text {
    flex-basis: 70%;
    padding-left: 60px;
}

.about .text p {
    margin-bottom: 40px;
}

.about h2 {
    font-weight: 600;
    font-size: 36px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about .item {
    flex-basis: auto;
    margin-right: 100px;
    margin-bottom: 40px;
}

.about .item .numb {
    color: var(--prime);
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 500;
}

.about .item p {
    font-size: 20px;
    font-weight: 500;
}

.about .but {}



/*PRE*/

.pre {}

.pre .col-lg-4 {
    margin-bottom: 20px;
}

.pre .item img {
    width: auto;
    margin: 0 auto;
}

.pre .col-lg-8 img {
    width: 100%;
    height: 100%;
    max-height: 220px
}

.pre .item {
    box-shadow: 4px 4px 20px 0px rgba(12, 28, 75, 0.1);
    padding: 16px;
    text-align: center;
    height: 100%;
    margin-bottom: 0px;
}

.pre .item img {
    margin-bottom: 20px;
    display: block;
}

.pre .subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--prime);
    margin-bottom: 8px;
}

.pre p {
    font-size: 16px;
    font-family: 'Inter';
}


/*NEWS*/

.news {}

.news .item {
    box-shadow: 4px 4px 20px 0px rgba(12, 28, 75, 0.1);
}

.news .item img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
}

.news .news-info {
    padding: 16px;
}

.news .date {
    font-size: 14px;
    font-family: 'Inter';
    margin-bottom: 10px;
}

.news .subtitle {
    font-family: 'Inter';
    font-weight: 700;
    color: var(--prime);
    margin-bottom: 15px;
    min-height: 65px;
}

.news .but.arr {
    text-align: center;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

.news p {
    font-size: 14px;
    min-height: 51px;
}


/*FEEDBACK*/

.feed {
    background: url(../img/form.jpg) no-repeat center/cover;
}

.form {
    padding: 40px;
    background: white;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.form h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
}

.form h2 span {
    color: var(--prime)
}

.form label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.form select {
    border: 1px solid #DEE7F9;
    padding: 12px;
    width: 100%;
}

.form .form-group {
    padding-bottom: 25px;
}

.form input,
.form textarea {
    border: 1px solid #DEE7F9;
    padding: 12px;
    width: 100%;
}

.form textarea {
    height: 167px;
}

.form .but button {
    width: 100%;
    display: block;
}

.form .cons, .form .ob, .form .drugoe {
    display: none;
}

.form .all {
    display: block;
}

.success {
    transition: opacity 0.5s ease;
    opacity: 1;
}


.fl.fl-file button {
    background:none;
    border:1px solid var(--prime);
    color:var(--prime);
    padding:12px 24px;
    display:flex;
    align-items: center;
}

.fl.fl-file button img {
    width:auto;
    margin-bottom: 0;
    margin-right: 10px;
}

.fl.fl-file {
    margin-top:20px;
    align-items:center;
}

.fl.fl-file .filename {
    margin-left:20px;
}

.form .success {
    margin-top:15px;
    color:#3EC87E;
    font-size:16px;
    min-height: 20px;
}

/*CONTACTS*/


.contacts {
    color: white;
}


.contacts:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    background: var(--prime);
    height: 330px;
    z-index: -1;
}


.contacts .cont-item {
    margin-right: 24px;
}

.contacts .cont-item a {
    display: flex;
    align-items: center;
}

.contacts .cont-item img {
    margin-right: 15px
}

.contacts .map {
    position: relative;
    margin-top: 40px;
    height: auto;
}

.contacts {}










/*FOOTER*/


footer {
    background: var(--sec);
    padding: 40px 0;
    color: white;
    margin-top: 0;
}

footer .logo {
    margin-bottom: 35px;
}

footer .col1 {
    flex-basis: 20%
}

footer .rate {
    margin-bottom: 15px;
}

footer .rate a {
    display: inline-block;
    background: #fff
}

footer .google {
    margin-bottom: 0px;
}

footer .but a {
    background: none;
    color: white;
    border: 1px solid var(--prime);
    width: 210px;
    text-align: center;
}

footer .col2 {
    flex-basis: 25%
}

footer .col3 {
    flex-basis: 30%
}

footer .col4 {
    flex-basis: 25%
}

footer .name {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

footer ul li {
    list-style: none;
    margin-bottom: 6px;
}

footer ul li a {
    font-weight: 400;
}


/*** ABOUT-PAGE ***/


.hero {
    padding: 120px 0;
    background-size: cover;
}

.hero h1 {
    color: white;
    text-align: center;
    font-size: 56px;
    font-weight: 400;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 645px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/*COUNTS*/

.counts {
    background: var(--prime);
    padding: 40px 0;
    color: white;
}

.counts .item {
    padding: 0 60px;
    text-align: center;
}

.counts .item .numb {
    font-size: 48px;
    font-weight: 500;
}

.counts .item p {
    font-size: 18px;
}

/*CHOOSE*/

.choose {
    background: var(--prime) url(../img/fon.png) no-repeat 91% center;
    color: white;
    padding: 0;
}

.choose .subtitle {
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
}

.choose ul {
    list-style: none;
}

.choose ul li {
    background: url(../img/li.svg) no-repeat left 0;
    padding-left: 40px;
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.choose .img {
    padding-left: 40px;
}

.choose {}


/*WHY*/

.why {}

.why .item {}

.why .item {
    box-shadow: 4px 4px 20px 0px rgba(12, 28, 75, 0.1);
}

.why .item img {
    width: 100%
}

.why .item .news-info img {
    width: auto
}

.why .item .news-info {
    padding: 16px;
}

.why .item .subtitle {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}

.why .item p {
    font-size: 18px;
    text-align: center;
}

.why .item .but.arr a {
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 20px;
}

/*PARTNERS*/

.partners p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.partners .swiper {
    position: relative;

}

.partners .swiper-slide {
    text-align: center;
}

.partners .slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.partners .slider img {
    filter: grayscale(1);
    transition: 0.5s;
}

.partners .slider img:hover {
    filter: none;

}

.partners .swiper-wrapper {}

.partners .swiper-button-prev {
    background: url(../img/prev2.svg) no-repeat center;
    width: 31px;
    height: 60px;
    position: absolute;
    left: -110px;
    top: 7%;
    z-index: 999;
}

.partners .swiper-button-next {
    background: url(../img/next2.svg) no-repeat center;
    width: 31px;
    height: 60px;
    position: absolute;
    right: -110px;
    top: 7%;
    z-index: 999;
}

.image-prod {
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-prod img {
    max-height: 100%;
    width: auto;
}




/*** OBUCHENIE PAGE ***/

.progs {}

.progs-page {}

.progs .item {
    box-shadow: 4px 4px 20px 0px rgba(12, 28, 75, 0.1);
    margin-bottom: 30px;
}


.progs .item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.progs .item .subtitle {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    padding: 20px;
    display: flex;
    min-height: 91px;
    justify-content: center;
    align-items: center;
}


.progs .but.arr {
    text-align: center;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

.progs-page .but {
    text-align: center;
}

.progs-page .but a {
    min-width: 260px;
    height: 60px;
    margin-top: 30px;
}


/*START*/

.start {
    text-align: center;
	background: var(--prime);
}

.start p {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.start .date {
    margin-top: 10px;
    color: #fff;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 500;
}


/*PRICE TABLE*/

.price-table {
    background: var(--prime);
}


.price-table .title {
    color: white;
}

.price-table table {
    border: none;
    background: white;
    width: 100%;
}

.price-table table tr:first-child td {
    font-weight: 500;
    font-size: 18px;
    padding: 19px 24px;
    border-bottom: 5px solid var(--prime);
}

.price-table table tr td {
    font-size: 18px;
    font-weight: 400;
    border-bottom: 1px solid #DEE7F9;
    padding: 16px 24px;
}

.price-table table tr td p b {
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.price-table table tr p {
    font-size: 16px;
    max-width: 350px;
}

.price-table .see-all {
    color: white;
    display: block;
    text-align: center;
    font-size: 18px;
    padding: 40px 0 20px;
}

.price-table .see-all img {
    margin-left: 15px;
}

.price-hid {
    margin-top:30px;
}

.see-all {
    cursor: pointer
}


/*OBR*/

.obr {}

.obr ul li {
    list-style: none;
    padding: 16px 0;
    border-bottom: 1px solid #DEE7F9;
    text-align: center;
}


.obr ul li a {
    text-decoration: underline
}

.obr ul li:last-child {
    border: none;
}


.info {}

.info .item {
    box-shadow: 4px 4px 20px 0px rgba(12, 28, 75, 0.1);
    padding: 16px;
    margin-bottom: 27px;
}

.info .item a {
    display: flex;
    align-items: center;
    justify-content: left;
}

.info .item img {
    margin-right: 25px;
}

.info .item .subtitle {
    font-weight: 600;
    font-size: 24px;
    color: var(--prime);
}



/*** TABS ***/

.napr {
    padding: 30px 0;
}

.napr .item {
    box-shadow: 4px 4px 20px 0px rgba(12, 28, 75, 0.1);
    padding: 24px 20px;
    text-align: center;
}

.napr .item img {
    display: block;
    margin: 0 auto;
}

.napr .item .subtitle {
    font-size: 20px;
    font-weight: 500;
    margin-top: 20px;
}

.tab-nav ul {
    display: inline-flex;
    margin-bottom: 30px;

}

.tab-nav .tab-item {
    font-size: 20px;
    padding: 13px 10px;
    cursor: pointer;
    margin: 0 36px 0 0;
    border-bottom: 1px solid #eee;
}



.tab-nav .active .tab-item,  .tab-nav .current .tab-item{
    font-size: 20px;
    border-bottom: 3px solid var(--prime);
    color: var(--prime);
    font-weight: 500;
}


/*** CATALOG PAGE ***/

.info.info-small .subtitle {
    font-size: 24px;
    font-weight: 600;
    min-height: auto;
    padding: 0;
}

.info.info-small {
    padding: 20px 0;
}

.info.info-small .item img {
    width: 50px;
	height: auto
}


.catalog-inner {
    padding: 30px 0 70px;
}

.catalog-inner .item {
    box-shadow: 4px 4px 20px 0px rgba(12, 28, 75, 0.1);
    padding: 16px 20px;
    text-align: center;
    margin-bottom: 30px;
}

.catalog-inner .item .subtitle {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 30px;
    min-height: 66px;
    max-height: 66px;
    overflow: hidden;
}

.catalog-inner .item .price {
    font-size: 18px;
    margin-bottom: 15px;
}

.catalog-inner .item .price span {
    font-weight: 500;
    margin-left: 10px;
    color: var(--prime);

}

.catalog-inner .item .but button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-inner .item .but button img {
    margin-left: 14px;
}

.catalog-inner .item .price span.noav {
    color: #CF2722;
}

.catalog-inner .but {
    text-align: center;
}

.catalog-inner .but a {
    min-width: 260px;
    height: 60px;
    text-align: center;
    margin-top: 50px;
    display: inline-block;
}


.modal .prod-text .price {
    font-size: 18px;
    margin-bottom: 15px;
}

.prod-page .price {
    font-size: 18px;
    margin-bottom: 15px;
}

.prod-page .price span {
    font-weight: 500;
    margin-left: 10px;
    color: var(--prime);
    font-size: 24px
}

.modal .prod-text p {
    font-size: 18px;
    margin-bottom: 15px;
}

.modal .prod-text p b,
.modal .prod-text p strong {
    font-weight: 500;
}

.modal .but button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.prod-page .but button {
    width: 100%;
    max-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}


.modal .but button img {
    margin-left: 14px;
}

.prod-page .but button img {
    margin-left: 14px;
    width:24px;
    margin-bottom: 0;
}

.noav {
    color:#CF2722;
    font-weight: 500;
    font-size: 18px;
}

.prod-page .price .noav {
    color:#CF2722;
    font-weight: 500;
    font-size: 18px;
}

button[disabled] {
    opacity: 0.6;
}


.modal .form {
    max-width: 850px;
}

.modal .gal img {
    padding: 0 15px;
    flex-basis: 33.333%;
}

.modal .gal {
    margin: 30px -15px;
}

.modal .subtitle {
    font-weight: 500;
    font-size: 32px;
}

.modal .gal img {
    max-width: 100%;
}

.news-page .but {
    text-align: center;
}

.news-page .but a {
    min-width: 260px;
    height: 60px;
    text-align: center;
    margin-top: 50px;
    display: inline-block;
}

.news-page .item {
    margin-bottom: 30px;
}


/*404*/

.nfound {
    text-align: center;
    padding: 100px 0;
    position: relative;
    z-index: 9;
    background: white;
}

.nfound img {
    margin-bottom: 30px;
}

.nfound p {
    margin-bottom: 10px;
}

.nfound .but {
    margin-top: 40px;
}


/*SERV-PAGE*/


.bread {
    padding: 40px 0 0px;
}

.bread ul {
    display: flex;
    list-style: none;
}

.bread ul li a {
    color: gray
}

.bread ul li a:after {
    content: url(../img/bread.svg);
    padding: 0 10px;
}



.intro table tr:last-child td {
    border-bottom: 0;
}

.text-page {
    padding: 40px 0;
    min-height: 700px;
}

.text-page.about {
    padding: 40px 0 80px;
}

.text-page h2 {
    display: block;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 32px;
}

.text-page h3 {
    display: block;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 32px;
}

.text-page h4 {
    display: block;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 32px;
}

.text-page h5 {
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 32px;
}


.text-page img {
    margin-bottom: 30px;
    width: 100%
}

.text-page ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.text-page ol {
    list-style: decimal;
    margin-left: 20px;
}

.text-page ul li {
    margin-bottom: 10px;
}

.text-page ol li {
    margin-bottom: 10px;
}

.text-page p {
    margin-bottom: 20px;
    width: 100%;
}

.text-page p + h2,
.text-page ul + h2 {
    margin-top: 32px;
}

.text-page table {
    border: none;
    width: 100%;
    margin: 30px 0;
}

.text-page table td:first-child {
    border-left: 0;
    max-width: 400px;

}

.text-page table td:last-child {
    border-right: 0
}

.text-page table tr:first-child td {
    border-top: 0;
    font-weight: 500;
    border-bottom: 3px solid var(--prime)
}

.text-page table tr:last-child td {
    border-bottom: 0
}

.text-page table td {
    border: 1px solid #eee;
    padding: 20px;
}


/*CONTACTS PAGE*/

.contact-page {}

.contact-page .subtitle {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-page .gr {
    margin-bottom: 30px;
}

.contact-page .gr p {
    margin-bottom: 5px;
    font-size: 18px;
}

.contact-page .cont-item {
    margin-bottom: 18px;
}

.contact-page .map-fon {
    position: relative;
}

.contact-page .map-fon:after {
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    top: -20px;
    right: -20px;
    background: var(--prime)
}

.contact-page .cont-item img {
    margin-right: 12px;
}

.contact-page .row {
    margin-top: 50px;
}

.contact-page .cont-item a {
    display: flex;
    align-items: flex-start;
    font-size: 18px;
}

.contact-page .cont-item a + a {
    margin-left: 35px;
}

.contact-page .sotrud {
    padding: 40px 0;
}

.contact-page .sotrud .item {
    margin-right: 40px;
}

.contact-page .sotrud .item:last-child {
    margin-right: 0
}

.contact-page .sotrud .name {
    font-size: 18px;
    font-weight: 500;
}

.contact-page .sotrud .dol {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 10px;
}

.contact-page .sotrud .cont-item {
    margin-bottom: 10px;
}


/*FAQ*/


.faq .hid {
    display: none;
    padding-top: 30px;
    font-size: 16px;
    color: #000;
}

.faq ul li {
    list-style: none;
    border-bottom: 1px solid #eee;
    padding: 24px 0;
    max-width: 870px;
}

.faq ul li .fl {
    justify-content: space-between;
}

.faq ul li:last-child {
    border-bottom: 0;
}

.faq ul li .subtitle {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0;
    cursor: pointer;
    line-height: 120%;
    text-align: left;
}

.faq ul li .arr {
    width: 14px;
    height: 14px;
    margin-right: 0;
    background: url(../img/down.svg) no-repeat center;
    transition: 0.5s;
}

.faq ul li.active .arr {
    transform: rotate(180deg);
}


/*** CART PAGE ***/

.cart-page {}

.cart-page h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
}

.cart-page label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.cart-page .form-group {
    margin-bottom: 20px;
}

.cart-page form input {
    border: 1px solid #DEE7F9;
    padding: 12px;
    width: 100%;
}

.cart-page .form-group + h3 {
    margin-top: 40px;
}

.cart-page .faq {
    margin-top: 50px;
}

.cart-page .form-radio {
    padding: 13px;
    border: 1px solid #DEE7F9;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    justify-content: space-between;
}

.cart-page .form-radio input {
    width: auto;
    margin-right: 10px
}

.cart-page table tr:first-child td {
    font-weight: 500;
    font-size: 18px;
}

.cart-page table {
    border: none;
    width: 100%;
}

.cart-page table td {
    padding: 20px;
    font-size: 18px;
    vertical-align: middle;
    border: none;
    border-bottom: 1px solid #DEE7F9;
}

.cart-page table td:first-child {
    width: 120px;
    padding-left: 0
}

.cart-page table .subtitle {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 24px;
}

.cart-page .del a {
    display: flex;
    align-items: center;
    color: #CF2722;
    cursor: pointer;
}

.cart-page .del a img {
    margin-right: 10px;
}

.cart-page table td:first-child img {
    margin-right: 10px;
}

.cart-page .counts {
    border: 1px solid #DEE7F9;
    padding: 6px 7px;
    text-align: center;
    align-items: center;
    background: none;
    color: black;
    /* width: 100px; */
    justify-content: space-between;
}

.cart-page .counts input {
    width: 50px;
    border: none;
    padding: 0;
    background: none;
    text-align: center;
}

.cart-page table td:last-child {
    font-weight: 500;
}

.cart-page .summa {
    margin-top: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-size: 18px;
}
.cart-page .summa.summa-dost {
    margin-top:20px
}
.cart-page .itog {
    text-transform: uppercase;
    font-size: 24px;
    display: flex;
    justify-content: space-between;
}

.cart-page .but {
    text-align: left;
}

.cart-page button {
    max-width: 355px;
    width: 100%;
    margin-top: 30px;
}


#cookie-notification {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f1f1f1;
    color: #333;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    max-width: 80%;
    text-align: center;
}

#cookie-notification p {
    margin: 0 0 10px 0;
    display: inline-block;
}

#cookie-accept {
    background-color: var(--prime);
    color: white;
    border: none;
    padding: 8px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 4px;
}

#cookie-accept:hover {
    background-color: #023a8c;
}
.agree {
    display: flex;
	margin-bottom:10px;
}

.agree input {
    width: 32px;
    height: 32px;
    margin-right: 19px;
    margin-top:-5px;
}

.agree label {
    font-weight: 400;
}

.agree a {
    color:var(--prime)
}
.thank {
    text-align: center;
}

.thank .title {
    font-size: 32px;
    font-weight:500;
    color:var(--prime);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.thank img {
    margin-bottom: 30px;
    width: auto;
}

.evoSearch_info {
    margin-bottom: 15px;
}

.search_title a {
    color: var(--prime);
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
}

.text-center.cart-empty p {
    color: #666666;
    font-size: 20px;
    margin-bottom: 30px;
}
a.img-cat {
    min-height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 280px;
}