body {
    font-family: Poppins, system-ui;
    color: #000000;
    margin: 0;
}


html.has-scroll-smooth {
    overflow: hidden;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

html.has-scroll-smooth .smooth-scroll {
    perspective: 1px;
    will-change: transform;
    width: 100vw;
}

.smooth-scroll {
    overflow: hidden;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

.burger-menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 35px;
    margin-left: 75px;
}

.burger-menu span {
    background: #ffffff;
    border-radius: 1px;
    height: 2px;
    transition: .3s ease-in-out;
}

.burger-menu.opened span:nth-child(2) {
    opacity: 0;
}

.burger-menu.opened span {
    width: 30px !important;
    background-color: #000000;
}

.burger-menu.opened span:first-child {
    transform: rotate(45deg) translateY(7px) translateX(4px);
}

.burger-menu.opened span:last-child {
    transform: rotate(-45deg) translateY(-17px) translateX(8px);
}

.burger-menu span:not(:first-child) {
    margin-top: 5px;
    transform-origin: left top;
}

.burger-menu span:nth-child(1) {
    width: 35px;
}

.burger-menu span:nth-child(2) {
    width: 30px;
}

.burger-menu span:nth-child(3) {
    width: 25px;
    transform-origin: right bottom;
}

header>.container,
.overlay-menu>.container:first-child {
    display: flex;
    justify-content: space-between;
}

header .container .__right,
.overlay-menu>.container:first-child .__right {
    display: flex;
    align-items: center;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    border-radius: 16px;
    width: 178px;
    height: 49px;
}

.btn.__white {
    background-color: #FFFFFF;
}

.btn.__dark {
    background-color: #000000;
    color: #FFFFFF;
}

.btn path,
.btn svg {
    transition: .3s ease;
}

.btn svg {
    margin-left: 15px;
}

.btn.__dark:hover svg {
    transform: translateX(10px);
}


.btn.__white:hover {
    background-color: #E40000;
    color: #ffffff;
}

.btn.__white:hover path {
    fill: #ffffff;
}

.btn.__dark:hover path {
    fill: #E40000;
}

#swiper__main-slider {
    height: 100vh;
    min-height: 768px;
    position: relative;
}

.__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#main__top-slider {
    background-color: #010102;
}

.swiper-slide img {
    width: 100%;
    object-fit: cover;
}

#swiper__trust-us .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

#swiper__trust-us .swiper-slide noindex {
    max-width: 110px;
}

#swiper__trust-us .swiper-slide img {
    width: 100%;
}

#swiper__main-slider .btn {
    min-width: 150px;
    width: auto;
}

#swiper__main-slider .swiper-slide {
    overflow: hidden;
}

#swiper__main-slider .swiper-slide>.container {
    position: relative;
    z-index: 1;
}

#swiper__main-slider .swiper-slide:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: #282828;
    mix-blend-mode: multiply;
    opacity: 0.5;
}

#swiper__main-slider .swiper-slide .__bg {
    /*transform: translateX(100%);
    transition: transform 1s ease;*/
    position: absolute;
}

#swiper__main-slider .swiper-slide .__bg:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #010102;
    transform: scaleX(1);
    transition: transform .8s cubic-bezier(0.65, 0.05, 0.36, 1);
    transform-origin: left top;
    transition-delay: .1s;
}

#swiper__main-slider .swiper-slide.swiper-slide-active .__bg::after {
    transform: scaleX(0);
}

h1,
h2 {
    font-weight: 800;
    font-size: 70px;
    line-height: 104.2%;
}

#about-us h1,
h3 {
    font-weight: 800;
    font-size: 29px;
    line-height: 1.25;
    text-transform: uppercase;
    margin-bottom: 15px;
    margin-top: 60px;
}

h4 {
    font-weight: 800;
    font-size: 20px;
}

h5,
footer .__right a {
    font-weight: 800;
    font-size: 16px;
}

p {
    font-weight: 600;
    font-size: 14px;
    line-height: 157%;
    color: #565656;
    margin-bottom: 0;
}

#swiper__main-slider h2 {
    color: #FFFFFF;
    margin-top: 15px;
}

#swiper__main-slider p {
    font-weight: 700;
    font-size: 20px;
    line-height: 110%;
    color: #FFFFFF;
    margin-top: 25px;
}

#swiper__main-slider .buttons {
    display: flex;
    margin-top: 50px;
}

#swiper__main-slider .buttons .btn:not(:first-child) {
    margin-left: 20px;
}

.col__main-slide {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.__nav-info span {
    font-weight: 700;
    color: #FFFFFF;
}

.__nav-info span:nth-child(1) {
    font-size: 22px;
}

.__nav-info span:nth-child(2) {
    font-size: 10px;
    position: relative;
    top: -7px;
    margin-left: 2px;
}

.__navbar svg {
    cursor: pointer;
    transition: .3s ease;
}

.__prev.swiper-button-disabled,
.__next.swiper-button-disabled {
    opacity: .3;
}

#swiper__main-slider .__navbar {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

#swiper__main-slider .__navbar .__next {
    margin-left: 33px;
}

.slide-shots {
    margin-left: 36px;
}

header {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    padding-bottom: 40px;
}

header,
.overlay-menu {
    padding-top: 35px;
}

header nav a {
    font-weight: 700;
    font-size: 16px;
    line-height: 104.2%;
    color: #FFFFFF;
    transition: .3s ease;
}

.logo-outer img:nth-child(2) {
    display: none;
}

.logo-outer img {
    /* width: 165px; */
    width: 235px;
}

body.not__main-page header {
    position: static;
}

body.not__main-page .logo-outer img:nth-child(1) {
    display: none;
}

body.not__main-page .logo-outer img:nth-child(2) {
    display: block;
}

body.not__main-page header nav a,
body.not__main-page .lang-select.__outer span,
body.not__main-page .lang-select.__outer a {
    color: #312A2A;
}
#content > header > div > div > nav > ul > li:nth-child(5) > a {
    color: #e40000;
    padding: 2px;
}
#content > header > div > div > nav > ul > li:nth-child(5) {
    border: 3px solid #e40000;
    border-radius: 6px;
}

body.not__main-page .lang-select svg path {
    fill: #312A2A;
}

header nav a:hover,
body.not__main-page header nav a:hover {
    color: #E40000;
}

body.not__main-page .burger-menu span {
    background: #312A2A;
}

header ul {
	align-items: center;
    display: flex;
}

.lang-select.__outer {
    cursor: pointer;
}

header ul li:not(:first-child),
.lang-select.__outer {
    margin-left: 20px;
}

.lang-select.__outer span {
    padding-bottom: 5px;
    border-bottom: 1px solid #E40000;
}

.lang-select.__outer span,
.lang-select.__outer a {
    font-weight: 700;
    font-size: 16px;
    line-height: 104.2%;
}

.lang-select.__outer span {
    color: #ffffff;
}

.lang-select.__outer a {
    color: #000000;
    transition: color .3s;
}

.lang-select.__outer a:hover,
body.not__main-page .lang-select.__outer a:hover {
    color: #E40000;
}

.drop-languages {
    display: none;
}

.overlay-menu ul.drop-languages li:not(:first-child),
header ul.drop-languages li:not(:first-child) {
    margin-left: 0;
    margin-top: 0;
}

.lang-select.__outer svg {
    margin-left: 5px;
}

#about-us {
    padding-top: 60px;
}

#about-us h3 {
    font-weight: 800;
}

.small-block-name {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    position: relative;
}

.small-block-name:before {
    content: '';
    width: 50px;
    height: 1px;
    background-color: #000000;
    margin-right: 20px;
}

.jc-end {
    display: flex;
    justify-content: flex-end;
}

#about-us p {
    width: 80%;
}

#about-us .btn {
    margin-top: 60px;
}

.parallax-outer {
    overflow: hidden;
}

#directions .row {
    margin-top: 30px;
    margin-left: -7.5px;
    margin-right: -7.5px;
}

#directions .row>div {
    padding-left: 7.5px;
    padding-right: 7.5px;
    position: relative;
}

.card-outer a {
    display: block;
    position: relative;
    height: 100%;
}

.card-outer a img {
    width: 100%;
}

.overlay-dark:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #686868;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.hidden {
    overflow: hidden;
}

.card-outer .__inner h4,
.card-outer .__inner p {
    color: #ffffff;
}

.card-outer .__inner p {
    margin-top: 15px;
}

.card-outer .__inner h4 span {
    display: block;
}

.card-outer {
    overflow: hidden;
}

.card-outer .__inner,
.card-outer .__inner-links {
    position: absolute;
    transition: .5s ease;
    transition-property: opacity, transform;
    padding-left: 25px;
    padding-right: 25px;
    width: 100%;
}

.card-outer .__inner {
    bottom: 35px;
    pointer-events: none;
}

.card-outer .__inner-links {
    bottom: 25px;
    opacity: 0;
    transform: translateY(40px);
}

.card-outer:hover .__inner-links {
    transform: translateY(0);
    opacity: 1;
}

.card-outer:hover .__inner {
    transform: translateY(-85px);
}

.__inner-links>a {
    display: flex;
    align-items: center;
    width: fit-content;
}

.__inner-links>a svg,
.__inner-links>a path,
.__more-info.__bottom svg,
.__more-info.__bottom path {
    transition: .3s ease;
}

.__inner-links>a:hover svg,
.__more-info.__bottom:hover svg {
    transform: translateX(10px);
}

.__inner-links>a:hover path,
.__more-info.__bottom:hover path {
    fill: #E40000;
}

.__inner-links>a:not(:first-child) {
    margin-top: 10px;
}

.__inner-links>a span {
    font-weight: 800;
    font-size: 16px;
    color: #FFFFFF;
}

.__inner-links>a svg {
    margin-left: 10px;
}

#trust-us {
    margin-top: 40px;
}

#swiper__trust-us {
    margin-top: 20px;
}

#swiper__trust-us .swiper-slide img {
    transition: filter .3s ease;
    filter: grayscale(100%);
}

#swiper__trust-us .swiper-slide:hover img {
    filter: initial;
}

#news {
    margin-top: 220px;
}

#swiper__news {
    margin-top: 20px;
}

#swiper__news .swiper-wrapper {
    display: flex;
    margin-left: -7.5px;
    margin-right: -7.5px;
    padding-bottom: 25px;
}

#swiper__news .swiper-slide {
    display: flex;
}

#swiper__news .swiper-slide>div {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

#swiper__news .swiper-slide>div img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

#swiper__news .swiper-slide>div h5 {
    margin-top: 20px;
    color: #000000;
}

#swiper__news .swiper-slide>div:nth-child(1) {
    width: 50%;
}

#swiper__news .swiper-slide>div:nth-child(2),
#swiper__news .swiper-slide>div:nth-child(3) {
    width: 25%;
}

#news>.container {
    position: relative;
}

#news .__navbar {
    position: absolute;
    right: 27px;
    top: 10px;
}

#news .__navbar svg:not(:first-child) {
    margin-left: 20px;
}

footer {
    margin-top: 100px;
    padding-top: 52px;
    background: #F6F6F7;
}

footer>.container,
.overlay-menu>.container:nth-child(2) {
    display: flex;
}

footer>.container>div {
    width: 20%;
    padding-right: 30px;
}

.overlay-menu>.container:nth-child(2)>div {
    width: 25%;
    padding-right: 30px;
}

.overlay-menu>.container:nth-child(2) {
    margin-top: 75px;
    flex: 1;
    overflow-y: auto;
}

.overlay-menu h5,
footer h5 {
    margin-top: 25px;
    margin-bottom: 10px;
}

.overlay-menu h4 a,
.overlay-menu h5 a,
footer h4 a,
footer h5 a,
footer h4 a:hover,
footer h5 a:hover {
    color: #000000;
}

.overlay-menu li a,
footer li a {
    font-weight: 600;
    font-size: 14px;
    color: #000000;
    transition: .3s ease;
}

.overlay-menu li a {
    color: #565656;
}

.overlay-menu li a:hover,
footer li a:hover {
    color: #E40000;
}

.overlay-menu ul li:not(:first-child),
footer ul li:not(:first-child) {
    margin-top: 10px;
}

.overlay-menu .title-company,
footer .title-company {
    margin-top: 50px;
}

footer .__right a {
    color: #000000;
    margin-bottom: 10px;
    margin-top: 10px;
    display: block;
}

.city-select>div:first-child,
.city-select__big>div:first-child {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.city-select>div:first-child svg {
    margin-left: 5px;
}

.city-select__big>div:first-child svg {
    margin-left: 10px;
}

.city-select__big h3 {
    margin-top: 0;
    margin-bottom: 0;
}

.city-select .city-address {
    font-weight: 600;
    font-size: 14px;
    color: #666666;
    margin-top: 5px;
}

footer .__bottom {
    padding-top: 13px;
    padding-bottom: 13px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 53px;
}

footer>.__bottom .container {
    display: flex;
    justify-content: space-between;
}

footer>.__bottom span {
    font-weight: 600;
    font-size: 12px;
}

footer>.__bottom span a {
    font-weight: 800;
    color: #000000;
}

.card-outer a:after {
    pointer-events: none;
}

canvas {
    width: 100%;
}

.image__flow-map {
    height: 35vw;
    width: 26vw;
    background-repeat: no-repeat;
    background-size: cover;
}

.breadcrumbs {
    margin-top: 70px;
}

.breadcrumbs,
.breadcrumbs ul {
    display: flex;
    align-items: flex-end;
}

.breadcrumbs h1 {
    margin-bottom: 0;
    /*max-width: 730px;*/
    overflow: hidden;
    /*white-space: nowrap;*/
    text-overflow: ellipsis;
}

.breadcrumbs ul {
    margin-left: 20px;
    position: relative;
    bottom: 8px;
}

.breadcrumbs a {
    font-weight: 500;
    font-size: 14px;
    color: #CDCDCD;
    white-space: nowrap;
    transition: .3s ease color;
}

.breadcrumbs a:hover {
    color: #E40000;
}

.breadcrumbs ul li:not(:first-child) {
    margin-left: 27px;
    display: flex;
    align-items: center;
    position: relative;
}

.breadcrumbs ul li:not(:first-child):before {
    content: '';
    position: absolute;
    width: 5px;
    height: 2px;
    background: #CDCDCD;
    left: -16px;
}

.breadcrumbs+*,
#news.__page {
    margin-top: 50px;
}

.service-sub {
    position: relative;
    display: block;
    overflow: hidden;
}

.service-sub .__outer-info {
    background: #000000a6 !important;
    position: absolute;
    bottom: 0;
    z-index: 1;
    padding-left: 30px;
    padding-right: 30px;
    transform: translateY(54px);
    transition: transform .5s ease;
    width: 100%;
}

.service-sub:hover .__outer-info {
    transform: translateY(0px);
    padding-bottom: 10px;   
}

.service-sub .__more-info {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-sub .__more-info p {
    color: #ffffff;
    padding-right: 20px;
}

.service-sub .__more-info .btn {
    width: 143px;
    flex-shrink: 0;
}

/*.service-sub .__more-info .btn:hover{
    color: #ffffff;
    background-color: #000000;
}*/

.service-sub img {
    width: 100%;
}

.service-sub h3 {
    color: #FFFFFF;
    width: 100%;
    z-index: 1;
    margin-top: 0;
}

.service-sub p {
    font-size: 12px;
}

.filter-outer {
    background: #F6F6F7;
    border-radius: 16px;
    overflow: hidden;
}

.filter-outer .__top {
    padding: 25px 25px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.filter-outer .__top h5 {
    margin-left: 10px;
    margin-bottom: 0;
}

fieldset.filter-list legend {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 20px;
    cursor: pointer;
}

.outer__checkbox-labels {
    padding-left: 25px;
    padding-top: 20px;
}

.checkbox-labels {
    direction: rtl;
    max-height: 150px;
    overflow-y: auto;
    padding-left: 25px;
    padding-right: 25px;
}

.checkbox-label {
    text-align: left;
    display: block;
}

.checkbox-label span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 5px;
    cursor: pointer;
}

.checkbox-label span {
    font-weight: 700;
    font-size: 14px;
}

fieldset {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.checkbox-label input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.checkbox-label input+span::before {
    content: '';
    display: flex;
    width: 15px;
    height: 15px;
    border: 1px solid #E6E6E6;
    margin-top: 2px;
    margin-left: 10px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
    flex-shrink: 0;
    transition: .3s ease background;
    background-color: #FFFFFF;
}

.checkbox-label input:checked+span::before {
    background-image: url(../img/bird-checkbox.svg);
    background-size: 80%;
}

fieldset.filter-list legend h5 {
    margin-bottom: 0;
}

fieldset.filter-list legend svg {
    transition: .3s ease;
}

fieldset.filter-list legend.opened svg {
    transform: rotate(180deg);
}

.hidden-tags {
    display: none;
}

.tags {
    display: flex;
    flex-wrap: wrap;
}

.tags .__outer {
    padding-right: 10px;
    padding-bottom: 10px;
}

.tags .__outer label {
    font-weight: 700;
    font-size: 14px;
    background: #F6F6F7;
    border-radius: 16px;
    padding: 13px 30px;
    cursor: pointer;
    transition: .3s ease;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    height: 180px;
    max-width: 250px;
    text-align: center;
}

.tags .__outer label img {
    border-radius: 16px;
    width: 120px;
}

.tags .__outer label p {
    font-weight: inherit;
    font-size: inherit;
}

.tags .__outer label.active {
    color: #ffffff;
    background-color: #3d3d3d;
}

.tags .__outer label.active p {
    color: #ffffff;
}



.product-items>div {
    padding-bottom: 50px;
}

/*.product-items a>div {
    background: #FFFFFF;
    mix-blend-mode: normal;
    box-shadow: 5px 4px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    min-height: 300px;
}*/
.product-items a>div {
   background: #FFFFFF;
    mix-blend-mode: normal;
    box-shadow: 5px 4px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    /* width: 220px; */
    height: 300px;
    height: 300px;
}

/*.product-items a>div img {
    max-width: 100%;
}*/
.product-items a>div img {
    max-width: 100%;
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.product-items h5 {
    margin-top: 20px;
    color: #000000;
}

/*.__outer.img-product {
    display: flex;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 5px 4px 30px rgba(0, 0, 0, 0.05);
    padding-top: 100%;
    position: relative;
}*/
.__outer.img-product {
    display: flex;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 5px 4px 30px rgba(0, 0, 0, 0.05);
    padding-top: 100%;
    position: relative;
    width: auto;
    max-height: 500px;
}

/*.__outer.img-product img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 100%;
}*/
.__outer.img-product img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 100%;
    width: 80%;
    height: 80%;
    object-fit: contain;
}

#product .__right-info {
    padding-left: 7%;
}

.manufacturer.__outer {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    ;
}

.manufacturer.__outer>h3 {
    margin-top: 0;
}

.manufacturer-link {
    display: block;
    margin-top: 70px;
}

.manufacturer.__outer p {
    margin-top: 50px;
}

.description-outer span {
    font-weight: 600;
    font-size: 14px;
    color: #9C9C9C;
    margin-top: 20px;
    display: block;
}

.description-outer .__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    cursor: pointer;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    ;
}

.description-outer .__top h3 {
    margin: 0;
    font-weight: 800;
    width: 80%;
}

.answer {
    display: none;
    margin-top: 20px;
}

.close-svg {
    transition: .3s ease;
    transform: rotate(-45deg);
}

.description-outer .__top.opened .close-svg {
    transform: rotate(0);
}

.__body-text {
    margin-top: 30px;
}

.__body-text .__coaches>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*width: 33.333333%;*/
    width: 25%;
    margin-bottom: 30px;
}

.__body-text .__coaches h4 {
    margin-top: 40px !important;
}

.__body-text .__coaches img {
    border-radius: 100%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.__body-text h4 {
    font-weight: 800;
    margin-bottom: 10px;
}

.__body-text ul,
.__body-text p,
ul.type_1 {
    margin-bottom: 30px;
}

.__body-text ul,
ul.type_1 {
    padding-left: 20px;
}

.__body-text ul li,
ul.type_1 li {
    font-weight: 600;
    font-size: 14px;
    line-height: 157%;
    color: #565656;
    list-style-type: initial;
}

#service .__items>div {
    flex: 1;
}

#service-item__groups h3 {
    color: #000000;
    margin-top: 30px;
    margin-bottom: 10px;
}

#service-item__groups .__items>div {
    padding-bottom: 50px;
}

#service-item__groups .__items>div>a {
    display: block;
}

#service-item__groups .__items>div>a img {
    width: 100%;
}

#service-item__groups .btn {
    margin-top: 20px;
    transform: translateY(100%);
    opacity: 0;
    transition: .3s ease;
}

#service-item__groups .__items>div>a:hover .btn {
    transform: translateY(0);
    opacity: 1;
}

#service-item__group__inner-text h4 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 700;
}

#service-item__group__inner-text .__top-1 {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#service-item__group__inner-text .__top-1>*:first-child {
    margin-top: 0;
}

#service-item__group__inner-text .__top-1>*:last-child {
    margin-bottom: 0;
}

#service-item__group__inner-text .__bottom .description-outer {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#service-item__group__inner-text .description-outer .__top {
    padding-bottom: 30px;
}

#service-item__group__inner-text .__bottom .description-outer:not(:first-child) {
    margin-top: 20px;
}

#service-pack .__top>*:first-child {
    margin-top: 0;
}

#service-pack .__top h3 {
    margin-bottom: 50px;
}

#service-pack .__top h4 {
    margin-top: 50px;
    margin-bottom: 20px;
}

#service-pack .__bottom {
    margin-top: 50px;
}

#swiper__licences .swiper-slide>a {
    outline: none;
}

#swiper__licences .swiper-slide img {
    width: 100%;
}

.swiper-scrollbar {
    background-color: #FBFBFC;
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
    position: static;
    margin-top: 30px;
    border-radius: 10px;
    width: 100%;
}

.swiper-scrollbar-drag {
    background-color: #E40000;
    border-radius: 10px;
}

#swiper__licences .swiper-wrapper {
    display: flex;
    transition: transform .8s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

#swiper__licences .swiper-scrollbar-drag {
    transition: transform .8s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.row.mission {
    margin-top: 145px;
}

.row.mission>div:nth-child(1) {
    width: 32%;
}

.row.mission>div:nth-child(2) {
    width: 68%;
}

.row.mission>div>div:nth-child(2) {
    /*margin-left: 20%;*/
    margin-top: 70px;
}

#our-values {
    text-align: center;
    margin-top: 150px;
}

.__outer-rotation {
    overflow: hidden;
    will-change: transform;
}

.__outer-rotation img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

#swiper__values .swiper-wrapper {
    display: flex;
    align-items: center;
}

#swiper__values .swiper-wrapper>.swiper-slide {
    padding-top: 150px;
    padding-bottom: 250px;
    padding-right: 230px;
    box-sizing: initial;
}

#swiper__values .swiper-wrapper>.swiper-slide:nth-child(odd) {
    width: 18vw;
}

#swiper__values .swiper-wrapper>.swiper-slide:nth-child(odd) .__outer-rotation {
    width: 100%;
    height: 18vw;
}

#swiper__values .swiper-wrapper>.swiper-slide:nth-child(odd) .__outer-rotation img {
    transform: scale(1.4);
}

#swiper__values .swiper-wrapper>.swiper-slide:nth-child(even) {
    width: 12vw;
}

#swiper__values .swiper-wrapper>.swiper-slide:nth-child(even) .__outer-rotation {
    width: 100%;
    height: 20vw;
}

#swiper__values .swiper-wrapper>.swiper-slide:nth-child(even) .__outer-rotation img {
    transform: scale(1.7);
}


#swiper__values .swiper-wrapper>.swiper-slide:nth-child(even) {
    display: flex;
    flex-direction: column-reverse;
}

#swiper__values h4 {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: -20%;
    position: relative;
    z-index: 1;
}

#about-us.__page .description-outer .__body-text {
    display: none;
}

.history .__items {
    margin-top: 70px;
}

#about-us.__page .description-outer .__top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    ;
}

.big-arrow {
    transition: .3s ease;
}

#about-us.__page .description-outer .__top.opened .big-arrow {
    transform: rotate(45deg);
}

#about-us.__page .description-outer .__body-text p strong,
#contact .__info-group a,
#contact .phone-list a {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

#contact .phone-list {
	min-height: 48px;
    margin-top: 17px;
}

#contact .phone-list a {
	padding-right: 20px;
    font-size: 20px;
    /* color: #e40000; */
    width: 100%;
    display: block;
    width: fit-content;
}

#contact .phone-list a:not(:first-child) {
    margin-top: 10px;
}

#contact .city-address {
    margin-top: 20px;
    width: 50%;
}

#about-us.__page .description-outer .__body-text p {
    margin-bottom: 0;
    padding-bottom: 30px;
}

.news-item {
    position: relative;
    padding-bottom: 35px;
    display: block;
    height: 100%;
}

.news-item .__bottom {
    transition: .3s ease;
    transition-property: opacity, transform;
    opacity: 0;
    transform: translateY(40px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    position: absolute;
    bottom: -10px;
}

.news-item:hover .__bottom {
    opacity: 1;
    transform: translateY(0);
}

.news-item img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.news-item h5 {
    margin-top: 20px;
    color: #000000;
    margin-bottom: 0;
}

.service-sub p,
.news-item h5,
.card-outer .__inner p,
#suppliers .row.__items>div>a p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    box-orient: vertical;
}

.news-item h5 {
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

#news.__page .row {
    margin-bottom: 65px;
}

.items__can-familiarize {
    margin-top: 150px;
}

.items__can-familiarize .row {
    margin-top: 30px;
}

#swiper__news-inner__big .swiper-slide>img {
    height: 352px;
}


.swiper-slide-artem>img {
    height: 352px;
    object-fit: contain;
}


.__outer-swiper {
    position: relative;
}

#swiper__news-inner__small {
    width: calc(100% - 80px);
}

#swiper__news-inner__small .swiper-slide>img {
    height: 65px;
    object-fit: contain;
}

#swiper__news-inner__small {
    margin-top: 20px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    content: '';
}

.outer__swiper__news-inner__small .swiper-button-prev {
    left: 0;
}

.outer__swiper__news-inner__small .swiper-button-next {
    right: 0;
}

.__news-text-col {
    padding-left: 7%;
}

.__news-text-col .__body-text p {
    margin-bottom: 20px;
}

.__news-text-col>h3:first-child {
    margin-top: 0;
}

.date {
    font-weight: 700;
    font-size: 14px;
    color: #000000;
}

.__news-text-col .date {
    margin-top: 30px;
    margin-bottom: 30px;
}

.tags.__not-catalog {
    margin-top: 30px;
}

#licenses .row.__items,
#suppliers .row.__items {
    margin-left: -7.5px;
    margin-right: -7.5px;
    margin-top: 32.5px;
}

#licenses .row.__items>div,
#suppliers .row.__items>div {
    padding: 7.5px;
}

#licenses .row.__items>div {
    text-align: center;
}

#suppliers .row.__items>div {
    padding-bottom: 85px;
}

#licenses .row.__items>div {
    width: 20%;
}

#suppliers .row.__items>div {
    width: 25%;
}

#licenses .row.__items>div>a {
    padding: 50px;
    display: flex;
    align-items: center;
    height: 100%;
}

#suppliers .row.__items>div>a {
    display: block;
    position: relative;
    height: 100%;
}

.__more-info.__bottom {
    left: 0;
    display: flex;
    align-items: center;
    transition: .3s ease;
    transition-property: opacity, transform;
    transform: translateY(40px);
    opacity: 0;
    margin-top: 20px;
    position: absolute;
    bottom: -45px;
}

#suppliers .row.__items>div>a:hover .__more-info.__bottom {
    transform: translateY(0);
    opacity: 1;
}

.__more-info.__bottom span {
    font-weight: 700;
    font-size: 14px;
    color: #000000;
}

.__more-info.__bottom svg {
    margin-left: 10px;
}

#suppliers .row.__items>div>a>div:first-child {
    padding: 50px;
    display: flex;
    justify-content: center;
    height: 200px;
}

#licenses .row.__items>div>a,
#suppliers .row.__items>div>a>div:first-child {
    background: #FFFFFF;
    box-shadow: 5px 4px 30px rgba(0, 0, 0, 0.05);
}

#licenses .row.__items>div>a img,
#suppliers .row.__items>div>a>div img {
    max-width: 100%;
}

#suppliers .row.__items>div h5 {
    margin-top: 20px;
    color: #000000;
}

.__body-text>*:last-child {
    margin-bottom: 0;
}

.__hide__dropdown-info .__body-text {
    display: none;
}

.dont-found-answer {
    display: flex;
    margin-top: 100px;
    align-items: center;
}

.dont-found-answer .btn {
    margin-left: 65px;
}

#contact .__info-group p {
    margin-top: 20px;
}

#contact .__info-group .btn {
    width: 215px;
    margin-top: 20px;
}

#contact .__col-right {
    padding-left: 7%;
}

.mt-0 {
    margin-top: 0 !important;
}

.modal-dialog {
    max-width: 400px;
}

.modal-content {
    background: #F6F6F7;
    border-radius: 16px;
}

.modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 35px;
    border-bottom: none;
}

.modal-body {
    padding: 10px 35px 35px;
}

.modal-body .checkbox-label {
    margin-top: 30px;
}

.modal-body .checkbox-label span {
    font-weight: 600;
    color: #312A2A;
}

.modal-body .checkbox-label>span {
    align-items: center;
    position: relative;
    padding-left: 35px;
    display: block;
}

.modal-body .checkbox-label>span:before {
    position: absolute;
    margin: 0;
    left: 0;
    top: 8px;
    width: 25px;
    height: 25px;
    border-radius: 8px;
}

.modal-body .checkbox-label>span>span {
    color: #E40000;
    display: initial;
}

.modal-body .btn {
    width: 100%;
    margin-top: 30px;
}

.close-modal {
    width: 42px;
    height: 42px;
    background: #000000;
    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.modal-header h3 {
    margin-top: 30px;
    margin-bottom: 0;
}

.modal-header p {
    color: #000000;
}

input.form-control,
textarea.form-control {
    background: #FFFFFF;
    border-radius: 16px;
    height: 49px;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    color: #CDCDCD;
    border: none;
    outline: none;
}

textarea.form-control {
    height: auto;
}

input.form-control::placeholder {
    color: rgba(0, 0, 0, 0.2);
}

.col-form-label {
    font-weight: 600;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 5px;
}

.overlay-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background-color: #ffffff;
    transform: translateX(100%);
    display: flex;
    flex-direction: column;
    will-change: transform;
}

html.loaded .overlay-menu {
    transition: transform .8s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.overlay-menu.opened {
    transform: translateX(0);
}

.overlay-menu:before {
    content: '';
    position: absolute;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    left: 0;
    top: 130px;
}

.overlay-menu .lang-select.__outer span {
    color: #000000;
}

.overlay-menu .burger-menu span {
    background-color: #000000;
}

.search-form {
    margin-right: 24px;
    margin-left: 14px;
    display: flex;
    align-items: center;
}

.search-form input {
    border: none;
    margin-right: 10px;
    border-bottom: 1px solid #000000;
    border-radius: 0;
    width: 368px;
    padding-left: 0;
    padding-bottom: 5px;
    height: 35px;
}

.search-form button {
    background: none;
    border: none;
}

.selected-city {
    font-weight: 800;
    font-size: 16px;
}

#swiper__values {
    padding-left: 15px;
}

#swiper__values h4 {
    white-space: nowrap;
}

.drop-cities-list {
    display: none;
    margin: 10px 0 0;
    background: #fff;
    box-shadow: 0 2px 10px 0 rgb(0 0 0 / 20%);
    max-height: 250px;
    width: 250px;
    overflow: auto;
    position: absolute;
    top: 100%;
}

.drop-cities-list>li,
.drop-cities-list>li a {
    margin: 0 !important;
}

.drop-cities-list>li a {
    font-size: 14px;
    color: #606060;
    border: none;
    padding: 12px 20px 12px;
    cursor: pointer;
    font-weight: 800;
    display: block;
    transition: color .3s ease;
}

.drop-cities-list>li a:hover {
    color: #E40000;
}

.drop-languages {
    width: 65px;
    background: #fff;
    box-shadow: 0 2px 10px 0 rgb(0 0 0 / 20%);
    position: absolute;
    left: 0;
    top: 35px;
}

.drop-languages a {
    font-size: 14px;
    padding: 10px;
    display: block;
    color: #000000;
}

.__outer-dropdown {
    position: relative;
}

#service-pack .__top .__hide__dropdown-info h3 {
    margin-bottom: 0;
}

#news>.container>.row:nth-child(even) {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.__no-bg {
    background: none;
}

.dont-found-answer h2 {
    max-width: 700px;
}

.breadcrumbs.big-title h1 {
    max-width: initial;
}

.breadcrumbs.big-title ul {
    display: none;
}

h3.result-counter {
    margin-bottom: 20px;
}

.search-tabs {
    display: flex;
    margin-bottom: 50px;
}

.search-tabs h4 {
    margin-right: 20px;
    cursor: pointer;
    color: #CDCDCD;
    font-weight: 700;
}

.search-tabs h4.active {
    color: #000000;
}

.search-result__site>a {
    margin-bottom: 30px;
    display: block;
}

.search-result__site h3 {
    margin-bottom: 10px;
    margin-top: 0;
    color: #000000;
}

.search-result__site span {
    font-weight: 600;
    font-size: 14px;
    color: #565656;
}

.search-groups>div.active {
    display: block;
}

.search-groups>div {
    display: none;
}

.mobile__to-modal {
    display: none;
}

#suppliers .row.__items>div>a>div:first-child img {
    width: 150px;
    align-self: center;
}

.custom-content {
    display:flex;
    gap: 50px;
    margin-top:30px;
    align-items:center;
}

.custom-content video {
    width: 350px;
    margin: 0 auto;
}

textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
    box-shadow: inset 0 -1px 0 #ddd;
}

* {
    -webkit-touch-callout: none;
    /* iOS Safari */
    /*-webkit-user-select: none;*/
    /* Chrome/Safari/Opera */
    -khtml-user-select: none;
    /* Konqueror */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    /*
    */
    /* Non-prefixed version, currently
                                  not supported by any browser */
}

::-webkit-scrollbar {
    /* 1 - скроллбар */
    width: 4px;
    height: 4px;
    background-color: #FFFFFF;
}

::-webkit-scrollbar-button {
    /* 2 - кнопка */

}

::-webkit-scrollbar-track {
    /* 3 - трек */

}

::-webkit-scrollbar-track-piece {
    /* 4 - видимая часть трека */

}

::-webkit-scrollbar-thumb {
    /* 5 - ползунок */
    border-radius: 5px;
    background-color: #CDCDCD;
}

::-webkit-scrollbar-corner {
    /* 6 - уголок */
}

::-webkit-resizer {
    /* 7 - изменение размеров */
}

@media screen and (max-width: 1366px) {

    h1,
    h2 {
        font-size: 65px;
    }
}
@media (min-width: 990px) {
    #contact .mobile_phone-list {
        display:none !important;
    }
}
@media (max-width: 990px) {
    #contact .pc_phone-list {
        display:none !important;
    }
}
@media screen and (max-width: 991px) {
    body.opened {
        overflow: hidden;
    }

    .smooth-scroll {
        width: 100%;
    }

    header nav {
        display: none;
    }

    header,
    .overlay-menu {
        padding-top: 20px;
    }

    .burger-menu {
        margin-left: 25px;
    }

    .header ul li:not(:first-child),
    .lang-select.__outer {
        margin-left: 0;
    }

    #swiper__main-slider h2 {
        margin-top: 27px;
    }

    h1,
    h2 {
        font-size: 40px;
    }

    #swiper__main-slider p {
        font-size: 14px;
    }

    #swiper__main-slider {
        min-height: initial;
    }

    #swiper__main-slider .__navbar {
        bottom: 35px;
    }

    .search-form {
        display: none;
    }

    .overlay-menu:before {
        top: 80px;
    }

    footer>.container,
    .overlay-menu>.container:nth-child(2) {
        flex-wrap: wrap;
    }

    .overlay-menu>.container:nth-child(2) {
        margin-top: 56px;
    }

    footer>.container,
    .overlay-menu>.container:nth-child(2) {
        display: flex;
        width: initial;
        margin-left: -10px;
        margin-right: -10px;
    }

    footer>.container>div,
    .overlay-menu>.container:nth-child(2)>div {
        width: 50%;
        padding-right: 10px;
        padding-left: 10px;
    }

    h4 {
        font-size: 16px;
    }

    h5,
    footer .__right a {
        font-weight: 800;
        font-size: 14px;
    }

    .overlay-menu h4,
    footer h4 {
        margin-bottom: 25px;
    }

    .overlay-menu h5,
    footer h5 {
        margin-top: 0;
        margin-bottom: 5px;
    }

    .overlay-menu li a,
    footer li a {
        font-size: 12px;
    }

    .overlay-menu ul li:not(:first-child),
    footer ul li:not(:first-child) {
        margin-top: 2px;
    }

    .overlay-menu .__group,
    footer .__group {
        padding-bottom: 25px;
    }

    .overlay-menu .__group.__no-sub,
    footer .__group.__no-sub {
        margin-top: -10px;
    }

    #about-us .btn {
        margin-top: 28px;
    }

    .btn {
        width: 100%;
    }

    p {
        font-weight: 600;
        font-size: 12px;
    }

    #about-us p {
        width: 100%;
    }

    #about-us h1,
    h3 {
        font-size: 18px;
        margin-top: 20px
    }

    #about-us {
        padding-top: 64px;
    }

    #about-us>.container>.row {
        flex-direction: column-reverse;
    }

    #about-us>.container>.row>div:last-child {
        margin-bottom: 30px;
    }

    .parallax-outer {
        width: 100%;
    }

    #about-us .parallax-outer img {
        height: 300px;
        width: 100%;
        object-fit: cover;
    }

    #directions {
        margin-top: 40px;
    }

    .image__flow-map {
        height: 60vw;
        width: 100%;
    }

    .__inner-links>a span {
        font-size: 14px;
    }

    .card-outer .__inner-links {
        transform: translateY(0);
        opacity: 1;
    }

    .card-outer .__inner {
        transform: translateY(-72px);
    }

    #trust-us {
        margin-top: 80px;
    }

    #swiper__trust-us {
        margin-top: 52px;
    }

    #news {
        margin-top: 80px;
    }

    #swiper__news .swiper-slide>div:nth-child(1) {
        width: 33.333333%;
    }

    #swiper__news .swiper-slide>div:nth-child(2),
    #swiper__news .swiper-slide>div:nth-child(3) {
        width: 33.333333%;
    }

    #swiper__news .swiper-wrapper {
        margin-left: -2.5px;
        margin-right: -2.5px;
    }

    #swiper__news .swiper-slide>div {
        padding-left: 2.5px;
        padding-right: 2.5px;
    }

    #swiper__news .swiper-slide>div img {
        height: 122px;
    }

    #swiper__news .swiper-slide>div h5 {
        font-size: 12px;
    }

    .service-sub p,
    .card-outer .__inner p,
    #suppliers .row.__items>div>a p {
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .news-item .__bottom {
        opacity: 1;
        transform: translateY(0);
        justify-content: flex-start;
        position: static;
        margin-top: 10px;
    }

    .news-item .__bottom svg {
        width: 25px;
        margin-left: 5px;
    }

    .date {
        font-size: 10px;
    }

    footer {
        margin-top: 66px;
    }

    footer>.__bottom .container {
        flex-direction: column;
    }

    .city-select .city-address {
        font-size: 12px;
    }

    .selected-city {
        font-size: 14px;
    }

    .breadcrumbs ul {
        margin-left: 0;
    }

    .tags .__outer {
        width: 100%;
        padding-right: 0;
    }

    .tags .__outer label {
        width: 100%;
        font-size: 12px;
    }

    #suppliers .row.__items>div,
    #licenses .row.__items>div {
        width: 100%;
    }

    .__more-info.__bottom {
        transform: translateY(0);
        opacity: 1;
    }

    #about-us.__page {
        padding-top: 0;
    }

    .breadcrumbs {
        flex-direction: column;
        align-items: flex-start;
    }

    .breadcrumbs h1 {
        font-size: 30px;
    }

    .breadcrumbs ul {
        margin-top: 15px;
    }

    .row.mission {
        margin-top: 92px;
    }

    .row.mission>div:nth-child(2) {
        width: 100%;
    }

    .row.mission>div:nth-child(1) {
        width: 60%;
        margin: 0 auto;
    }

    #about-us>.container>.row.mission {
        flex-direction: column;
    }

    .row.mission>div>div:nth-child(2) {
        margin-top: 50px;
    }

    #our-values {
        margin-top: 90px;
    }

    #swiper__values .swiper-wrapper>.swiper-slide:nth-child(odd) {
        width: 47vw;
    }

    #swiper__values .swiper-wrapper>.swiper-slide:nth-child(odd) .__outer-rotation {
        height: 47vw;
    }

    #swiper__values .swiper-wrapper>.swiper-slide:nth-child(even) {
        width: 30vw;
    }

    #swiper__values .swiper-wrapper>.swiper-slide:nth-child(even) .__outer-rotation {
        width: 100%;
        height: 50vw;
    }

    #swiper__values .swiper-wrapper>.swiper-slide {
        padding-top: 100px;
        padding-bottom: 125px;
    }

    .big-arrow {
        width: 40px;
    }

    .description-outer .__top {
        padding-bottom: 15px;
    }

    #swiper__values {
        padding-left: 30px;
    }

    #swiper__values .swiper-wrapper>.swiper-slide {
        padding-right: 140px;
    }

    #licenses .row.__items>div>a {
        padding: 50px;
    }

    .breadcrumbs a {
        font-size: 12px;
    }

    .dont-found-answer {
        flex-direction: column;
    }

    .dont-found-answer .btn {
        margin-left: 0;
        margin-top: 20px;
    }

    .news-item img {
        height: 190px;
    }

    #news.__page .row {
        margin-bottom: 0;
    }

    #service .__items>div {
        width: 100%;
        flex: initial;
    }

    #service .__items>div {
        margin-bottom: 30px;
    }

    .service-sub .__outer-info {
        padding-left: 15px;
        padding-right: 15px;
    }

    .service-sub .__outer-info {
        transform: translateY(-30px);
    }

    #service-item__group__inner-catalog .tags {
        margin-top: 20px;
    }

    .checkbox-label span {
        font-size: 12px;
    }

    .row.product-items {
        margin-left: -5px;
        margin-right: -5px;
    }

    .product-items>div {
        width: 50%;
        padding-left: 5px;
        padding-right: 5px;
        padding-bottom: 20px;
    }

    .__body-text ul li,
    ul.type_1 li {
        font-size: 12px;
    }

    #service-item__groups .__items>div>a .btn {
        transform: translateY(0);
        opacity: 1;
    }

    #service-item__groups .__items>div {
        padding-bottom: 60px;
    }

    #contact .__col-right {
        padding-left: 15px;
        margin-top: 50px;
    }

    #contact .phone-list {
        margin-top: 30px;
    }

    #contact .__info-group h3 {
        margin-bottom: 5px;
    }

    #contact .__info-group p {
        margin-top: 10px;
    }

    #contact .callback {
        margin-top: 50px;
    }

    #about-us.__page .description-outer .__body-text p span,
    #contact .__info-group a,
    #contact .phone-list a {
        font-size: 16px;
    }

    #contact .__info-group .btn {
        width: 100%;
    }

    .drop-cities-list {
        position: fixed;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        max-height: 350px;
    }

    #directions .row>div {
        padding-bottom: 10px;
    }

    .mobile__to-modal {
        display: block;
    }

    header .mobile__to-modal {
        color: #ffffff;
        font-size: 12px;
        font-weight: 700;
        margin-top: 3px;
    }

    body.not__main-page header .mobile__to-modal {
        color: #000000;
    }

    .logo-outer img {
        width: 95px;
    }

    header>.container,
    .overlay-menu>.container:first-child {
        align-items: center;
    }

    .lang-select.__outer span,
    .lang-select.__outer a {
        font-size: 14px;
    }

    .lang-select.__outer svg {
        margin-left: 3px;
        width: 10px;
    }

    .lang-select.__outer span {
        padding-bottom: 3px
    }

    .__body-text .__coaches>div {
        width: 100%;
    }

    .custom-content {
        flex-direction: column;
    }

    .custom-content video {
        width: 300px;
    }

}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1365px;
    }
}


/* слайдер на странице о нас */

#swiper-about .swiper-slide {
    height: 414px;
    width: 100%;
}

#swiper-about .swiper-slide>img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media (max-width:991px) {
    #swiper-about .swiper-slide {
        height: 400px;
        width: 100%;
    }

    .row.mission>div:nth-child(1) {
        width: 45%;
    }
}

.seo {
    padding-top: 20px;
}

.seo p {
    padding-bottom: 20px;
}


.seo h1 {
    font-size: 24px !important;
}

.map {
    height: 473px !important;
}

@media(max-width:992px) {
    .map {
        height: 370px !important;
    }
}

@media (max-width:520px) {
    .map {
        height: 300px !important;
    }

    .row.mission>div:nth-child(1) {
        width: 320px !important;
    }

    #swiper-about .swiper-slide {
        height: 500px;
    }


}



@media (max-width:375px) {
    .row.mission>div:nth-child(1) {
        width: 260px !important;
    }

    #swiper-about .swiper-slide {
        height: 265px !important;
    }

    .custom-content video {
        width: 230px;
    }
}

@media (max-width:340px) {
    #swiper-about .swiper-slide {
        height: 360px;
    }
}

@media (max-width: 769px) {
    .row.mission>div:nth-child(1) {
        width: 57%;
    }
}

@media (max-width:1400px) {
    #swiper-about .swiper-slide {
        height: 345px;
    }

    .custom-content p {
        font-size: 12px;
    }
}

@media (max-width:1200px) {
    #swiper-about .swiper-slide {
        height: 275px;
    }
}

@media (max-width:998px) {
    #swiper-about .swiper-slide {
        height: 295px;
    }
}
@media (width: 768px) {
    #swiper-about .swiper-slide {
        height: 375px;
    }
}

.links__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.links__items li a {
    font-weight: 700;
    font-size: 14px;
    background: #F6F6F7;
    border-radius: 16px;
    padding: 13px 30px;
    cursor: pointer;
    transition: .3s ease;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    height: 250px;
    width: 220px;
    text-align: center;
    color: #565656;
}

.links__items li span {
    padding-top: 10px;
}

.links__items li a img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
}

@media(max-width:600px) {
    .links__items {
        gap: 20px;
    }

    .links__items li a {
        max-width: 200px;
    }
}

#back_from_category {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #F6F6F7;
    color: #565656;
    border: none;
    border-radius: 10px;
    margin: 0px 0 20px 0;
}

@media (max-width:997px) {
    #back_from_category {
        margin: 20px 0 20px 0;
    }
}

@media (min-width: 992px) {
    #service-item__groups .col-lg-6 {
        width: 23% !important;
        margin: 13px !important;
    }

    #service-item__groups .row {
        justify-content: center !important;
    }
}

#service-pack .col-lg-12 {
    display: none;
}

/* #service-item__groups>div>div>div:nth-child(1) {
    display: none;
} */

body>div.overlay-menu.opened>div:nth-child(2)>div:nth-child(2)>div:nth-child(2)>ul>li:nth-child(1) {
   display: none;
}
#content>footer>div.container>div>div>ul {
	display: flex;
	flex-direction: column;
}
#content>footer>div.container>div:nth-child(2)>div:nth-child(2)>ul>li:nth-child(5) {
    order: 6;
}

body>div.overlay-menu.opened>div>div>div>ul {
	display: flex;
	flex-direction: column;
}

body>div.overlay-menu.opened>div:nth-child(2)>div:nth-child(2)>div:nth-child(2)>ul>li:nth-child(2) {
   order: 4;
}
body>div.overlay-menu.opened>div:nth-child(2)>div:nth-child(2)>div:nth-child(2)>ul>li:nth-child(3) {
   order: 3;
}
body>div.overlay-menu.opened>div:nth-child(2)>div:nth-child(2)>div:nth-child(2)>ul>li:nth-child(4) {
   order: 1;
}
body>div.overlay-menu.opened>div:nth-child(2)>div:nth-child(2)>div:nth-child(2)>ul>li:nth-child(5) {
   order: -1;
}



.header__form {
    position: relative;
    /*margin-right: 0 !important;*/
    display: flex;
    align-items: center;
    justify-content: center;

}

.header__form button {
    position: absolute;

    left: 90%;
    top: 50%;
    transform: translateY(-50%);
}

.header__form input {
    max-width: 300px;
    border: 1px solid black;
    height: 40px !important;
    margin-right: 0 !important;
    padding: 10px 20px !important;
    border-radius: 6px;
}
@media(max-width:1024px) {
.header__form {
    position: relative;
    margin-right: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    max-width: 245px !important;
}

.header__form button {
    position: absolute;

    left: 83%;
    top: 50%;
    transform: translateY(-50%);
}

.header__form input {
    max-width: 240px;
    border: 1px solid black;
    height: 40px !important;
    margin-right: 0 !important;
    padding: 10px 20px !important;
    border-radius: 6px;
}

}
@media(max-width:541px) {
.header__form {
    display:none;
}

}
#service-item__groups .__items>div>a img {
    width: 100%;
    height: 200px;
}
/*#service-pack > div > div > div.col-lg-9.__top > div.__bottom.__hide__dropdown-info > div:nth-child(5) > div.__body-text {
    display: block !important;
}*/
/*#service-pack > div > div > div.col-lg-9.__top > div.__bottom.__hide__dropdown-info > div:nth-child(5) > div.__top > img {
    display: none;
}*/
#service-pack > div > div > div.col-lg-9.__top > div.__bottom.__hide__dropdown-info > div:nth-child(5) > div.__body-text > table,tr,td {
    border: 2px solid black;
}
#content > header > div > div > nav > ul > li:nth-child(5) {
	text-align: center;	
}
#content > header > div > div > nav > ul > li:nth-child(1) {
	min-width: 49px;
}

.pdf-files img{
    width: 200px;
    object-fit: cover;
    height:280px;
}

@media (max-width:690px) {
    
.pdf-files iframe{
    width: 180px;
    object-fit: cover;
    height:280px;
}
}

.links__items li {
    transition: transform 1s;
}

.links__items li:hover {
    transform: scale(1.05);
}

.product-items div {
    transition: transform 1s;
}

.product-items div:hover {
    transform: scale(1.05);
}
