:root {
    --color-darkblue: #637e2a;
    --color-red: #e34026;
    --color-black-text: #383838;
    --box-shadow: 5px 5px 10px 0px #15094633;
    --box-shadow2: 0px 0px 10px 0px #15094633;
	--box-shadow3: 0px 0px 10px 0px #15094633;
	--box-shadow4: 0px 0px 15px 0px #383838;
}

@keyframes swing {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.swinging-image {
  display: inline-block; /* Для правильного применения transform */
  /*animation: swing 2s ease-in-out infinite;*/
}

/* Helpers */
.text-center { text-align: center; }
.text-right { text-align: right; }
.df { display: flex; }
.display-none { display: none; }
.aic { align-items: center; }
.jcc { justify-content: center; }
.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}
*, *::after, *::before { box-sizing: border-box; }
/* 1rem = 10px*/
html { font-size: 62.5%; }  
body {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
	font-size: 1.4em;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    position: relative;
    visibility: visible;
    color: var(--color-black-text);
}
a { text-decoration: none; }
h2 {
    margin: 0 0 5rem;
    position: relative;
    font-size: 2rem;
}
   h1{ position: relative;}
h2:after,h1:after {
    content: "";
    position: absolute;
    width: 7rem;
    bottom: -0.8rem;
    left: 0%;
    height: 0.4rem;
    background: var(--color-red);
    border-radius: 5px;
}
p { font-size: 1.4rem; }

table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
}
table th {
    background: #3112a154;
    font-weight: 900;
}
table td, table th {
    border: 1px solid #dddddd85;
    text-align: center;
    padding: 1rem;
}


tr:first-child th:first-child { border-top-left-radius: 1rem; }
tr:first-child th:last-child { border-top-right-radius: 1rem; }
tr:last-child td:first-child { border-bottom-left-radius: 1rem; }
tr:last-child td:last-child { border-bottom-right-radius: 1rem; }



.container {
    margin: 0 auto;
    max-width: 140rem;
    padding: 0 2rem;
    position: relative;
    width: 100%;
}

/* Mobile First Media Queries */
/* Base style */
/* red - #C3272B      blue - #06038d    */

.btn {
    padding: 1.5rem 2.4rem;
    border-radius: 5px;
    background: var(--color-red);
    color: #fff;
    font-weight: 700;
    margin: 0;
    transition: .3s all ease;
    display: inline-block;
}
.btn:hover { background: var(--color-darkblue); } 
.start {
    padding: 0;
    position: relative;
/*    display: flex;
    flex-direction: column;*/
    background: #fff;
}
.start .info-line {
    display: none;
}
.start .top-block { display: none; }

.start .top-block {
	background: #f7f7f7;
	padding: 2rem 0;
}
.start .top-block .logo { font-size:2rem }
.start .top-block .logo span {
	font-weight: bold;
	color: blue;
}

.start .top-menu { position: relative; height: 6rem; }
.start .top-menu .inner {
    background: var(--color-darkblue);
    height: 6rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 11;
    box-shadow: 4px 4px 8px 0px rgb(34 60 80 / 20%);
}
.start .top-menu .inner.sticky-top-menu {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1511;
}
.start .top-menu .prav-item {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 12;
    height: 6rem;
    display: none;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 0 2rem;
}
.start .top-menu .prav-item a { display: flex; }
.start .top-menu .prav-item a img { height: 20px; }
.start .top-menu .menu { display: none; }
.start .top-menu .container { position: relative; }
.start .top-menu .mob-menu-icon {
    height: 6rem;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    padding-right: 3rem;
}
.start .top-menu .mob-menu-icon i {
    font-size: 3.5rem;
    color: #f7f7f7;
    transition: .3s color ease;
    cursor: pointer;
}
.start .top-menu .mob-menu-icon i:hover { color: var(--color-red); }  
.start .top-menu .mob-menu-wrap {
    position: fixed;
    max-width: 320px;
    width: 90%;
    top: 0;
    right: 0;
    background: #f7f7f7;
    z-index: 1600;
    height: 100%;
    transition: .3s transform ease;
    transform: translateX(100%);
}
.start .top-menu .mob-menu-wrap.open { transform: translateX(0); }
.start .top-menu .mob-menu-wrap .close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 2.5rem;
    transition: .3s background ease;
    cursor: pointer; 
}
.start .top-menu .mob-menu-wrap .close i { transition: .3s transform ease; }
.start .top-menu .mob-menu-wrap .close:hover { background: var(--color-red); }
.start .top-menu .mob-menu-wrap .close:hover i { transform: rotate(90deg); color: #f7f7f7; }
.start .top-menu .mob-menu-wrap ul {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 7rem 1rem;
    list-style: none;
    text-align: center;
}
.start .top-menu .mob-menu-wrap ul li {
    width: 100%;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid #c5c5c573;
}
.start .top-menu .mob-menu-wrap ul li a { color: #383838; }
.start .top-menu .mob-menu-logo {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 3rem;
}
.start .top-menu .mob-menu-logo .logo { height: 6rem; }
.start .top-menu .mob-menu-logo .logo img { height: 4rem; }
.start .slider-wrap {
    display: flex;
    margin: 3rem 0 0;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    border-radius: 1rem;
    position: relative;
    height: 460px;
}
.start .swiper {
	width: 100%;
	height: 100%;
    position: relative;
}
.start .swiper .swiper-slide { position: relative; }
.start .swiper .swiper-slide video {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    z-index: 0;
}
.start .swiper .inner {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 2rem 1rem;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgb(25 9 86 / 38%) 0%, rgb(25 9 86 / 15%) 100%);
}
.start .swiper .inner .text {
    flex-direction: column;
    max-width: 90%;
    width: 100%;
    text-align: center;
    align-items: center;
    color: #fff;
}
.start .swiper .inner .text .big {
    font-size: 2rem;
    margin: 0 0 2rem;
    font-weight: 900;
    text-transform: uppercase;
}
.start .swiper .inner .text .small {
    font-size: 1.4rem;
    padding: 0 0 2rem;
}
.start .slider-wrap .swiper-arrow-right {
    transition: .3s all ease;
    background: #fff;
    width: 4rem;
    height: 4rem;
    border-radius: 5px;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    margin: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    cursor: pointer;
    display: none;
}
.start .slider-wrap .swiper-arrow-left {
    transition: .3s all ease;
    background: #fff;
    width: 4rem;
    height: 4rem;
    border-radius: 5px;
    position: absolute;
    bottom: 1rem;
    right: 6rem;
    margin: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    cursor: pointer;
    display: none;
}
.start .slider-wrap .swiper-arrow-right:hover,
.start .slider-wrap .swiper-arrow-left:hover { background: var(--color-red); color: #fff; }
.swiper-custom-pagination {
    position: absolute;
    bottom: 1.5rem !important;
    z-index: 3;
    left: 2rem !important;
    text-align: left;
}
.swiper-pagination-bullet {
    background: #ffffff00;
    opacity: 1;
    width: 12px;
    height: 12px;
    position: relative;
}
.swiper-pagination-bullet:after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}
.swiper-pagination-bullet-active { background: var(--color-red); position: relative; }
.swiper-pagination-bullet-active:after {
   content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: var(--color-red);
    border-radius: 50%; 
}
.arrow-up.show { display: flex; }
.arrow-up {
	position: fixed;
    bottom: 3rem;
    right: 3rem;
    background: var(--color-red);
    width: 50px;
    height: 50px;
    border-radius: 1rem;
    cursor: pointer;
    transition: .3s all ease;
    z-index: 22;
    display: none;
    align-items: center;
    justify-content: center;
}
.arrow-up i {
	font-size: 2.5rem;
    color: #f7f7f7;
    transition: .3s color ease;
}
.arrow-up:hover { background: #f7f7f7; box-shadow: 0px 0px 14px 0px #1909564f; }
.arrow-up:hover i { color: var(--color-red); }
.offer { padding: 4rem 0 6rem; background: #fff; }
.offer-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.offer-wrap .item {
    border-radius: 0.5rem;
    border: 1px solid #1215181a;
    transition: .3s box-shadow ease;
    max-width: 35rem;
    margin: 0 auto;
	box-shadow: var(--box-shadow3);
}
.offer-wrap .item .img { overflow: hidden; }
.offer-wrap .item .img img { transition: .3s transform ease; }
.offer-wrap .item:hover { box-shadow: var(--box-shadow4); }
.offer-wrap .item:hover .img img { transform: scale(1.04); }
.offer-wrap .item a { display: flex; flex-direction: column; }
.offer-wrap .item h4 { padding: 0 2rem; color: var(--color-black-text); text-align: center; }

.facts { padding: 3rem 0 6rem; background: #f7f7f7; }
.facts .wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0rem;
    background: #fff;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
    border: 1px solid #1215181a;
    max-width: 50rem;
    margin: 0 auto;
}
.facts .wrap .item { 
    text-align: center;
    padding: 2rem 1rem;
    border-bottom: 1px solid #1215181a;
}
.facts .wrap .item:last-child { border-right: none; border-bottom: none; }
.facts .wrap .item .i-wrap {
    width: 6rem;
    height: 6rem;
    background: var(--color-darkblue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border-radius: 50%;
    box-shadow: 3px 3px 3px 0px #0000001f;
    transition: .3s transform ease;
}
.facts .wrap .item:hover .i-wrap { transform: translateY(-0.7rem); }
.facts .wrap .item i {
    font-size: 2.5rem;
    color: #fff;
} 
.about {
	padding: 4rem 0 6rem;
	background: #f7f7f7;
}
.about .about-wrap { flex-direction: column-reverse; }
.about .left {
    width: 100%;
    height: 100%;
    padding: 4rem 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about .left img {
    -webkit-mask-image: url(../images/blob.svg);
    mask-image: url(../images/blob.svg);
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    height: auto;
    -webkit-mask-size: auto auto;
    width: 70%;
}
.about .iso-cert-wrap { flex-direction: column; padding: 2rem 0 5rem; justify-content: start; }
.about .iso-cert-wrap .cert {
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--box-shadow);
    background: #fff;
    border-radius: 1rem;
    margin: 0 0 2rem;
}
.about .iso-cert-wrap .cert i {
    margin: 0 0 1rem;
    color: var(--color-red);
    font-size: 3rem;
}
.about .iso-cert-wrap .text { padding-left: 2rem; }
.parts { padding: 4rem 0 6rem; background: #fff; }
.parts .parts-wrap {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
.parts .parts-wrap .item {
    border-radius: 1rem;
    overflow: hidden;
    transition: .3s all ease;
}
.parts .parts-wrap .item img { transition: .3s transform ease; }
.parts .parts-wrap .item a {
    display: flex;
    flex-direction: column;
    position: relative;
}
.parts .parts-wrap .item .inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1909565e;
    display: flex;
    align-items: end;
    padding: 1rem 1rem;
    transition: .3s background ease;
}
.parts .parts-wrap .item .inner .fa-arrow-right-long {
    position: absolute;
    top: 3rem;
    right: 3rem;
    opacity: 0;
    transform: translateX(4rem);
    transition: .3s oapcity, 0.3s transform;
    z-index: 11;
    font-size: 4rem;
    color: #fff;
}
.parts .parts-wrap .item h3 {
    text-transform: uppercase;
    font-size: 1.4rem;
    color: #fff;
    position: relative;
}
.parts .parts-wrap .item h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.8rem;
    width: 0;
    height: 4px;
    background: #fff;
    border-radius: 5px;
    transition: .3s width ease;
}
.parts .parts-wrap .item:hover { box-shadow: var(--box-shadow); }
.parts .parts-wrap .item:hover .inner { background: #e34026c2; }
.parts .parts-wrap .item:hover img { transform: scale(1.04); }
.parts .parts-wrap .item:hover .inner .fa-arrow-right-long { opacity: 1; transform: translateX(0); }
.parts .parts-wrap .item:hover h3:after { width: 7rem; }

.breadcrumbs { font-size: 1.4rem; padding: 0 0 2rem; }
.breadcrumbs a { color: var(--color-darkblue); transition: .3s all ease; font-weight: 700; position: relative; }
.breadcrumbs a:after {
    content: "";
    position: absolute;     
    bottom: -0.4rem;
    left: 50%;
    height: 2px;
    width: 0;
    background: var(--color-red);
    border-radius: 2px;
    transition: .3s all ease;
} 
.breadcrumbs a:hover:after {
    left: 0%;
    width: 100%;
} 
.content { padding: 4rem 0 6rem; }
.content .table-wrap { padding: 2rem 0 0; overflow-x: auto; }
.content .table-wrap table { border-collapse: collapse; width: 100%; margin: 0 auto; border-radius: 1rem; overflow: hidden; }
.content .table-wrap table td, .content .table-wrap table th { border: 1px solid #dddddd; text-align: center; padding: 1rem; }
.content .table-wrap table th { background: #3112a154; font-weight: 900; } 
.content .table-wrap table tr { transition: .3s background ease; }
.content .table-wrap table tr:not(.wide, .head):hover { background: #2d109712; }
.content .table-wrap .wide { background: #2d10971f; font-weight: 900; }
.content .balon-table { position: relative; }
.content .balon-table .b-left {
    width: 150px;
    position: absolute;
    top: 20rem;
    left: 0;
    display: none;
}
.content .balon-table .b-right {
    width: 150px;
    position: absolute;
    top: 20rem;
    right: 0;
    display: none;
}
.content .materials-ul { list-style: none; padding: 0; }
.content .materials-ul li { padding: 8px 0; }
.content .materials-ul a { color: var(--color-black-text); display: flex; }
.content .materials-ul a:hover { text-decoration: underline; }
.content .materials-ul .i-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 3.5rem;
    padding: 5px 0 0;
    flex-shrink: 0;
}
.content .materials-ul i { color: var(--color-darkblue); font-size: 2.2rem; }
.content .video-wrap {
    display: flex;
    margin: 0 auto 4rem;
    width: 280px;
    height: 157px;
    border-radius: 1rem;
    overflow: hidden;
}
.items-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.items-wrap .item {
    border-radius: 0.5rem;
    border: 1px solid #1215181a;
    transition: .3s box-shadow ease;
    max-width: 70rem;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
	box-shadow: var(--box-shadow3);
}
.items-wrap .item .img { overflow: hidden; }
.items-wrap .item .img img { transition: .3s transform ease; }
.items-wrap .item:hover { box-shadow: var(--box-shadow4); }
.items-wrap .item:hover .img img { transform: scale(1.04); }
.items-wrap .item a { display: flex; flex-direction: column; }
.items-wrap .item h4 { padding: 0 2rem; color: var(--color-black-text); text-align: center; }
.items-wrap .date {
    font-weight: 700;
    position: absolute;
    top: 1rem;
    right: 0;
    background: var(--color-darkblue);
    padding: 2px 6px;
    color: #ddd;
    font-size: 1.4rem;
    z-index: 10;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.items-wrap.videos-wrap h4 { text-align: left; }
.items-wrap.videos-wrap .item .img { position: relative; }
.items-wrap.videos-wrap .item .img img { transition: .3s all ease; }
.items-wrap.videos-wrap .item:hover .img img { transform: scale(1.04); opacity: 0.7; }
.items-wrap.videos-wrap .item .img .icon { 
    width: 6rem;
    height: 6rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    transition: .3s opacity ease;
}
.items-wrap.videos-wrap .item:hover .img .icon { opacity: 1; }
.items-wrap.videos-wrap .item .img .icon i { color: #fff; font-size: 2rem; }
.videos-wrap .text { padding: 0 2rem 2rem; color: var(--color-black-text); }
.card-wrap { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.card-wrap .left { padding: 0; }
.card-wrap .left .main-img { margin: 0 auto; border-radius: 1rem; border: 1px solid #2d109721; }
.card-wrap .left .preview { display: flex; align-items: center; padding: 2rem 0 0; }
.card-wrap .left .preview .item { display: flex; width: 15%; margin-right: 2rem; }
.card-wrap .left .preview .item img {
    max-width: 100%;
    border-radius: 1rem; 
    border: 1px solid #2d109721; 
    transition: .3s border ease;
    cursor: pointer;
}
.card-wrap .left .preview .item img:hover, .card-wrap .left .preview .item img.current { border: 1px solid var(--color-darkblue);  }
.card-wrap .right { padding: 0; }
.card-wrap .right h4 { border-bottom: 2px solid #2d109721; padding-bottom: 6px; } 
.card-wrap .right .btn { margin-top: 3rem; }
.contacts-wrap { flex-direction: column; position: relative; }
.contacts-wrap .contacts-img {
    position: absolute;
    bottom: -1rem;
    left: -9.3rem;
    display: none;
}
.contacts-wrap .left { margin: 0 0 2rem; }
.contacts-wrap .left .list { 
    border: 1px solid #1215181a;
    padding: 2rem;
    border-radius: 1rem;
}
.contacts-wrap .left .list .row { display: flex; margin: 0 0 3rem; }
.contacts-wrap .left .list .row:last-child { margin: 0; }
.contacts-wrap .left .list .row .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-darkblue);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}
.contacts-wrap .left .list .row .icon i { color: var(--color-darkblue); }
.contacts-wrap .left .list .row .name { text-transform: uppercase; letter-spacing: 2px; font-size: 1.4rem; }
.contacts-wrap .left .list .row .text { font-size: 1.4rem; }
.contacts-wrap .left .list .row .text a { transition: .3s color ease; color: var(--color-black-text); }
.contacts-wrap .left .list .row .text a:hover { color: var(--color-red); }
#map { box-shadow: 0px 5px 8px 4px rgb(34 60 80 / 20%); width: 100%; height: 30rem; border-radius: 1rem; overflow: hidden; }
#map .icon-marker { width: 3rem; transform: translate(-50%, -100%); }

.footer-form { background: #837c9b2b; }
.footer-form .form-wrap {
    display: grid;
    gap: 0rem;
    grid-template-columns: 1fr;
}
.footer-form .form-wrap .left { position: relative; display: none; }
.footer-form .form-wrap .left img {
    width: 22rem;
    position: absolute;
    bottom: 0;
    left: 44%;
    margin-left: -14rem;
}
.footer-form .form-wrap .right { padding: 4rem 0 6rem; }
.footer-form .form-wrap .right h2 { margin: 0 0 3rem; }
.footer-form .form-wrap .right form { display: flex; flex-direction: column; max-width: 35rem; margin: 0 auto; }
.footer-form .form-wrap .right form input {
    padding: 1.5rem 1.8rem;
    border: 1px solid #12151829;
    background-color: #fff;
    border-radius: 1rem;
    outline: none;
    transition: .3s border ease;
    margin: 0.7rem 0 0;
}
.footer-form .form-wrap .right form input:focus { border: 1px solid #5C8EE5; }
.footer-form .form-wrap .right .input-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 1rem 0 3rem;
}
.footer-form .form-wrap .right .input {
    display: flex;
    flex-direction: column;
}
.footer-form .form-wrap .right .input label { font-weight: bold; }
.footer-form .form-wrap .right form button {
    border: none;
    outline: none;
    padding: 1.5rem 2.5rem;
    width: max-content;
    border-radius: 1rem;
    transition: .3s background ease;
    background: var(--color-darkblue);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}
.footer-form .form-wrap .right form button:hover { background: var(--color-red); }
.overlay, .overlay-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1555;
    background: #1e2228b3;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.3s, opacity 0.3s ease-in-out;
}
.overlay-popup {
    display: flex;
    align-items: center;
    justify-content: center;
}
.overlay.open, .overlay-popup.open {
    visibility: visible;
    opacity: 1;
    transition: visible 0.3, opacity 0.3s ease-in;
}
.popup {
    background: #fff;
    z-index: 22;
    border-radius: 1rem;
    position: relative;
    display: flex;
    width: 95%;
    max-width: 36rem;
    overflow: hidden;
    transform: translateY(3rem);
    visibility: hidden;
    opacity: 0;
    transition: .3s all ease;
}
.popup.open { transform: translateY(0); opacity: 1; visibility: visible; }
.popup .close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    transition: .3s background ease;
    border-radius: 50%;
    cursor: pointer;
    z-index: 15;
}
.popup .close i { font-size: 2.5rem; transition: .3s transform ease; }
.popup .close:hover { background: var(--color-red); }
.popup .close:hover i { transform: rotate(90deg); color: #f7f7f7; }
.popup .left { display: none; width: 50%; }
.popup .right { width: 100%; padding: 1rem 2rem 4rem; z-index: 9; }
.popup .right .fail, .popup .right .ok {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 3rem;
    background: #fff;
    z-index: 10;
    text-align: center;
    flex-direction: column;
}
.popup .right .ok i {
    color: #25D366;
    font-size: 5rem;
    margin: 0 0 2rem;
}
.popup .right .fail  i {
    color: var(--color-red);
    font-size: 5rem;
    margin: 0 0 2rem;
}
.popup h3 { font-size: 2.5rem; font-weight: 900; text-align: center; }
.popup p { font-size: 1.4rem; }
.popup form { display: flex; flex-direction: column; padding: 1rem 0 0; }
.popup .input-wrap { flex-direction: column; position: relative; margin: 0 0 3rem; }
.popup .label { font-weight: 600; padding: 0 0 1rem; }
.popup form input, .popup-form form textarea {
    border: 1px solid #cccccc8c;
    outline: none;
    transition: .3s border ease;
    z-index: 5;
    background: transparent;
    height: 5rem;
    width: 100%;
    height: 5rem;
    border-radius: 1rem;
    padding: 0 2rem;
    margin: 0 0 3rem;
}
.popup form input:focus { border: 1px solid #5C8EE5; }
.popup form textarea {
    height: 8rem;
    resize: vertical;
    padding: 1rem 0.5rem;
}
.popup form button {
    border: none;
    cursor: pointer;
    font-weight: bold;
    width: 20rem;
    margin: 0 auto;
}
.ymaps3x0--controls { z-index: 10; }
footer {
    padding: 8rem 0 0;
    background: #1b1525;
    color: rgba(255, 255, 255, 0.6);
	position: absolute;
    width: 100%;
    bottom: -355px;
}
footer .footer-inner { 
    justify-content: flex-start;
    align-items: start;
    flex-direction: column;
}
footer .footer-inner .logo {
    flex-direction: column;
}
footer .footer-inner .logo .text {
    font-size: 1.4rem;
    padding: 2rem 0 0;
}
footer .footer-inner .block { margin: 0 0 3rem; }
footer .footer-inner .block:last-child { margin: 0; }
footer .footer-inner .block ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
footer .footer-inner .block ul li a { color: rgba(255, 255, 255, 0.6); transition: .3s color ease; }
footer .footer-inner .block ul li a:hover { color: #f7f7f7; }
footer .footer-inner .block ul li { padding: 0 0 0.5rem; font-size: 1.4rem; }
footer .footer-inner .block ul li.title {
    color: #f7f7f7;
    font-size: 1.6rem;
    margin: 0 0 2rem;
    position: relative;
}
footer .footer-inner .block ul li.title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--color-red);
} 
footer .footer-inner .block ul li i { margin-right: 0.5rem; }
footer .footer-bottom { 
    padding: 2rem 0;
    background-color: #100d17; 
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.4rem;
    text-align: center;
    margin: 6rem 0 0;
}
footer .footer-bottom .wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}
footer .footer-bottom .wrap .karta a { color: rgba(255, 255, 255, 0.6); transition: .3s color ease; }
footer .footer-bottom .wrap .karta a:hover { color: #fff; }
footer .footer-bottom .wrap .urls {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}
footer .footer-bottom .wrap .urls a { display: block; }
footer .footer-bottom .wrap .urls a img { max-height: 4rem; }
footer .footer-bottom .wrap .urls a:first-child img { padding-right: 2rem; }
footer .footer-bottom .wrap .copy {}

.bottom_description_cat{
	margin-top:30px;
}
.accordion-faq {
    width: 100%;
    margin-bottom: 30px;
}

.accordion-item p {
    margin-bottom: 10px;
}

.accordion-item {
    font-family: "Roboto", sans-serif;
    background: #fff;
    margin-bottom: 20px;
}

.accordion-toggle {
    height: 70px;
    display: flex;
    line-height: 1.3;
    align-items: center;
    padding: 20px 40px;
    font-weight: 600;
    border-top: 3px solid #d0dbfb;
    border-bottom: 1px solid #e2e2e2;
    line-height: 1.2;
    padding-right: 60px;
    cursor: pointer;
    background: #fbfbfb;
    position: relative;
   font-size: 17px;
    font-family: var(--theme-font-family), Arial, sans-serif;
}

.accordion-toggle:after {
    content: "";
    display: block;
    position: absolute;
    top: 26px;
    right: 23px;
    width: 10px;
    height: 17px;
    background-image: url('/wp-content/themes/aerowp/assets/images/arrow-left1.png');
    background-repeat: no-repeat;
}

.accordion-toggle.active:after {
    content: "";
    display: block;
    position: absolute;
    top: 29px;
    right: 23px;
    width: 17px;
    height: 10px;
    background-image: url('/wp-content/themes/aerowp/assets/images/arrow-bottom1.png');
    background-repeat: no-repeat;
}

.accordion-content {
    display: none;
    padding: 20px 30px;
}

body .accordion-faq .accordion-content p {
    color: #000000;
    line-height: 21px;
    padding: 5px 0px;
}

.accordion-content {
    font-size: 16px;
    line-height: 21px;
    font-family: "Roboto", Tahoma, sans-serif;
    color: #000;
    margin: 0;
    width: 100%;
}

.faq-1 h1 {
    color: #000;
    font-size: 44px;
    font-weight: 500;
}

.faq-page {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 900px) {
	.accordion-toggle {
		height: 83px;
   padding-left:21px;
    line-height: 1.2;
  
    font-size: 15px;
    
}
    .accordion-faq {
        width: 100%;
    }

    .faq-page {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .accordion-item {
        width: 100%;
    }
}

/* Larger than mobile screen ≥ 568px */
@media screen and (min-width: 35.5em) {
    .start .swiper .inner .img { margin: 2rem 0 0; }
    .start .swiper .inner .text .big { font-size: 2.5rem; }
    .start .top-menu .mob-menu-wrap { max-width: 400px; }
    .start .top-menu .mob-menu-wrap ul { padding: 7rem 3rem; }
    .start .swiper .inner { align-items: flex-start; padding: 2rem 2rem; }
    .start .swiper .inner .text { text-align: left; align-items: flex-start; }
    .start .swiper .inner .text .small { font-size: 1.6rem; padding: 0 0 3rem; }
    .swiper-custom-pagination { text-align: center; }
    .offer-wrap { grid-template-columns: 1fr 1fr; }
    .facts .wrap { grid-template-columns: 1fr 1fr; max-width: 100%; }
    .facts .wrap .item { border-right: 1px solid #1215181a; }
    .facts .wrap .item:nth-child(2), .facts .wrap .item:nth-child(4) { border-right: none; } 
    .facts .wrap .item { padding: 2rem 2rem; }
    .content .video-wrap { width: 500px; height: 280px; }
}

/* Larger than mobile screen ≥ 768px */
@media screen and (min-width: 48em) {
    .start .swiper .inner .text { max-width: 650px; }
    .parts .parts-wrap { grid-template-columns: 1fr 1fr; }
    .parts .parts-wrap .item .inner { padding: 1rem 2rem; }
    .offer-wrap { grid-template-columns: 1fr 1fr 1fr; }
    .about .left .line {
        display: flex;
        justify-content: center;
        flex-direction: row;
    }
    .about .left .square { margin: 1.5rem; }
    .about .left .square.square2 { transform: translateY(1.5rem); }
    .about .iso-cert-wrap { flex-direction: row; }
    .items-wrap { grid-template-columns: 1fr 1fr; }
    .content .balon-table .b-left, .content .balon-table .b-right { display: block; }
    .content .table-wrap table { width: calc(100% - 300px); }
    .content .video-wrap { width: 700px; height: 395px; }
    .content .materials-ul { padding: 0 0 0 4rem; }
    .card-wrap { grid-template-columns: 1fr 1fr; }
    .card-wrap .left { padding: 2rem 1rem 0 0; }
    .card-wrap .right { padding: 0 0 0 1rem; }
    .footer-form .form-wrap { grid-template-columns: 1fr 1fr; }
    .footer-form .form-wrap .left { display: flex; }
    .footer-form .form-wrap .right form { margin: 0; }
    .popup { max-width: 72rem; }
    .popup .left { display: flex; }
    .popup .right { width: 50%; padding: 2rem; }
    .popup .right .fail, .popup .right .ok { width: 50%; }
}

/* Larger than tablet screen ≥ 1024px */
@media screen and (min-width: 64em) {
    h2 { font-size: 3.5rem; }
    body, p { font-size: 1.6rem; }
    .start .top-block .logo { font-size:2rem }
    .start .top-block .logo span {
        font-weight: bold;
        color: blue;
    }
    .start .top-block .slogan {
        color: var(--color-darkblue);
        font-weight: bold;
        height: 100%;
        font-size: 4rem;
        text-align: center;
    }
    .start .top-block .tel {
        /*display: flex;*/
        align-items: center;
        justify-content: end;
		text-align: right;
        height: 100%;
    }
    .start .top-block .tel a {
        color: var(--color-red);
        font-size: 2.0rem;
        font-weight: 700;
        transition: .3s all ease;
    }
    .start .top-block .tel a:hover { 
		color: var(--color-red); 
		border-radius: 5px;
		box-shadow: 3px 3px 4px var(--color-red);
		padding: 3px
	}
    .start .top-menu .inner {
        position: absolute;
        top: 0; left: 0;
        height: 6rem;
        width: 100%;
    }
    .start .info-line .pure-u-1-2 i { 
        margin-right: 0.5rem;
        color: var(--color-red);
    }
    .start .info-line .pure-u-1-2.with-border { border-right: 1px solid #cbcbcb; }
    .start .info-line a {
        transition: .3s color ease;
        color: inherit;
    }
    .start .info-line a:hover { color: var(--color-red); }
    .start .top-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
     }
    .start .top-menu ul li {
        display: inline-block;
        transition: .3s background ease;
        margin: 0;
        padding: 0 1rem;
        position: relative;
    } 
    .start .top-menu ul li:hover { background: var(--color-red); }
    .start .top-menu ul li a {
        color: #f7f7f7;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 6rem;
        font-weight: 600;
        font-size: 1.4rem;
        text-transform: uppercase;
    }
    .start .top-menu ul li a i { margin: 0.3rem 0 0 0.6rem; }
    .start .top-menu ul li.sub ul {
        position: absolute;
        top: 6rem;
        left: 0;
        background: #fff;
        z-index: 4;
        flex-direction: column;
        width: max-content;
        display: flex;
        transform: translateY(1.5rem);
        transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
        visibility: hidden;
        opacity: 0;
        /*box-shadow: 4px 4px 8px 0px rgb(34 60 80 / 20%);*/
		box-shadow: 0px 0px 10px 0px var(--color-darkblue);
    }
    .start .top-menu ul li.sub.last ul { right: 0; left:auto; }
    .start .top-menu ul li.sub ul li {}
    .start .top-menu ul li.sub ul li a { 
        color: #383838;
        justify-content: start;
        transition: 0.3s color ease;
        height: auto;
        padding: 1rem 0;
    }
    .start .top-menu ul li.sub ul li:hover a { color: #f7f7f7; }
    .start .top-menu ul li.sub:hover ul { 
        display: flex;
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }
    .start .swiper .inner { padding: 4rem; }
    .start .swiper .inner .text { align-items: flex-start; text-align: left; }
    .start .swiper .inner .text .big { font-size: 3rem; }
    .start .slider-wrap .swiper-arrow-right { bottom: 3rem; right: 3rem; }
    .start .slider-wrap .swiper-arrow-left { bottom: 3rem; right: 8rem; }
    .offer-wrap { grid-template-columns: 1fr 1fr 1fr 1fr; }
    .facts .wrap { grid-template-columns: 1fr 1fr 1fr 1fr; }
    .facts .wrap .item { padding: 4rem 2rem 3rem; border-bottom: none; }
    .facts .wrap .item:nth-child(2) { border-right: 1px solid #1215181a; }
    .parts .parts-wrap { gap: 4rem; }
    .parts .parts-wrap .item .inner { padding: 2rem 2rem; }
    .parts .parts-wrap .item h3 { font-size: 1.6rem; }
    .about { padding: 6rem 0 8rem; }
    .about .about-wrap { flex-direction: row; }
    .about .left { padding: 1.5rem 0 0; }
    .about .left .line { justify-content: flex-start; }
    .content { padding: 6rem 0 10rem; }
    .items-wrap { grid-template-columns: 1fr 1fr 1fr; }
    .contacts-wrap { flex-direction: row; }
    .contacts-wrap .left { width: 40%; padding: 2rem 0 2rem 2rem; margin: 0; }
    .contacts-wrap .right { width: 60%; }
    .contacts-wrap .left .list { 
        border-top-left-radius: 1rem; 
        border-bottom-left-radius: 1rem; 
        border-top-right-radius: 0; 
        border-bottom-right-radius: 0; 
        border-right: none;
    }
    #map { height: 100%; }

    .footer-form .form-wrap .right .input-wrap { grid-template-columns: 1fr 1fr; }
    .footer-form .form-wrap .right { padding: 6rem 3rem 8rem 0; max-width: 50rem; }
    .footer-form .form-wrap .right form { max-width: 100%; }

    footer .footer-inner { 
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: row;
    }
    footer .footer-inner .block { margin: 0; }
    footer .footer-bottom .wrap {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    footer .footer-bottom .wrap .urls a img { max-height: 5rem; padding: 0 2rem; }
}

/* Larger than 1280px */
@media screen and (min-width: 80em) {
    .offer-wrap { grid-template-columns: 1fr 1fr 1fr 1fr 1fr; }
    .items-wrap { grid-template-columns: 1fr 1fr 1fr 1fr; }
    .contacts-wrap .contacts-img { display: block; }
}

/* Larger than 1312px */
@media screen and (min-width: 82em) {
    .start .info-line {
        background: #efefef;
        padding: 0.9rem 0;
        font-size: 1.4rem;
        display: block;
    }
    .start .top-block {
        background: #f7f7f7;
        padding: 3rem 0;
        display: block;
    }
    .start .top-menu .mob-menu-wrap { display: none; }
    .start .top-menu .mob-menu-icon { display: none; }
    .start .top-menu .mob-menu-logo { display: none; }
    .start .top-menu .menu { display: flex; }
    .start .top-menu .prav-item { display: flex;  }
}

/* Larger than 1400px */
@media screen and (min-width: 87.5em) {
    .start .top-menu ul li.sub ul li a { 
        color: #383838;
        justify-content: start;
        transition: 0.3s color ease;
        height: auto;
        padding: 1rem 0;
    }
    .start .top-menu ul li.sub ul li:hover a { color: #f7f7f7; }
    .start .top-menu ul li.sub:hover ul { 
        display: flex;
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }
    .footer-form .form-wrap .right { padding: 6rem 2rem 8rem 0; }
}

/* Larger than desktop screen 1920px */
@media (min-width: 120.0em) {}
.footer-form .form-wrap .form__agree input[name="agree"]{
	margin-right:5px;    margin-top: 0;
}
.form__agree{
    font-size: 13px;
    line-height: 16px;
    color: #8A8C8F;
    display: flex;
    align-items: center;
	margin-left:10px;
}
.submit-block-a{
	display:flex;
}
.ym-advanced-informer{display:none;}
	#zvonok-form [name="agree"]{
		height: 15px;
    margin-right: 3px;
    width: auto;
    margin-bottom: 0;
	}
	
	#zvonok-form .form__agree {
    font-size: 13px;
    line-height: 16px;
    color: #8A8C8F;
    display: flex;
    align-items: center;
    margin-left: 0;
    margin-top: -10px;
    margin-bottom: 10px;
}
	@media screen and (max-width: 500px) {
		.submit-block-a{
	flex-wrap:wrap;
}
	
	.submit-block-a	button{
		order:2;
	}
	.submit-block-a	.form__agree{
		order:1;	
	}
	}