* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
body.locked {
    overflow: hidden;
}
html {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
}
p {
    margin: 0;
}
a {
    text-decoration: none;
    display: inline-block;
}
li {
    list-style: none;
}
.container {
    max-width: 1300px;
    margin: 0 auto;
}
/* header */
.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 35px;
    background-color: #fff;
    padding: 28px 0;
    color: #000;
}
.header__logo {
    max-width: 105px;
}
.header__transparency {
    padding-bottom: 5px;
    color: #8A8A8A;
}
.header__location-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header__location-spb{
    margin-right: 8px;
    font-size: 18px;
}
.header__arrow {
    width: 24px;
    height: 24px;
    background: #003663;
    border-radius: 40px;
    margin-right: 25px;
    position: relative;
}
.header__arrow::after {
    position: absolute;
    content: url('../img/Path.svg');
    right: 6px;
    top: 1px;
}
.header__time {
    max-width: 156px;
}
.header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.header_phone {
    font-size: 18px;
    line-height: 22px;
    color: #000;
    margin-right: 30px;
}
.btn {
    max-width: 167px;
    height: 45px;
    padding: 12.5px 20px;
    background-color: #FFCD00;
    text-align: center;
    color: #000;
    cursor: pointer;
}
.btn a{
    color: #000;
}
/* мобильное меню */
.btn-mobile {
    display: none;
}
.menu__mobile {
    display: none;
}
.menu__mobile {
	width: 32px;
	height: 32px;
    background: #003663;
}
.menu__mobile-inner {
    padding: 12px 9px;
}
.menu__mobile-line {
    width: 14px;
    height: 1px;
    margin-bottom: 3px;
    background: #fff;
    border-radius: 20px;
}
.menu__mobile-line:last-child {
    margin-bottom: 0;
}
.list_mobile {
    display: none;
	position: absolute;
	top: 49px;
	left: 0;
	width: 100%;
	height: auto;
	padding-top: 35px;
    text-align: center;
    background: #00569D;
	-webkit-transform: translateX(-100%);
	    -ms-transform: translateX(-100%);
	        transform: translateX(-100%);
	-webkit-transition: -webkit-transform 0.5s;
	transition: -webkit-transform 0.5s;
	-o-transition: transform 0.5s;
	transition: transform 0.5s;
	transition: transform 0.5s, -webkit-transform 0.5s; 
    z-index: 14;
}
.list_mobile a{
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 15px;
}
.list_mobile.active_m {
	-webkit-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
}
.menu__close {
        position: absolute;
        top: 25px;
        right: 25px;
        cursor: pointer;
}
/* nav */

.menu {
    background-color: #003663;
    height: 60px;
    border-bottom: 1.5px solid #EFEFEF;
}
.menu__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.menu__wrapper-inner {
    padding: 20px 0;
    color: #fff;
    width: 183px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    border-left: 1.5px solid #EFEFEF;
    position: relative;
}
.menu__wrapper-inner:last-child {
    border-right: 1.5px solid #EFEFEF;
}
.dropdown-content {
    padding: 35px;
    display: none;
    position: absolute;
    top: 62px;
    left: -3px;
    min-width: 188px;
    background-color: #00569D;
    text-align: left;
    z-index: 10; 
}
.drop-size {
    width: 341px;
}
.dropdown-content a {
    color: #fff;
    padding-bottom: 15px;
    text-decoration: none;
    display: block;
    text-transform: none;

}
.dropdown-content a:last-child {
    padding-bottom: 0;
}
.menu__wrapper-inner:hover {
    background-color: #00569D;
}
.menu__wrapper-inner:hover .dropdown-content {
    display: block;
}
.drop__line {
    position: relative;
}
.size {
    width: 201px;
}
.our__product{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.our__product-line {
    border: 1.5px solid #FFFFFF;
    border-radius: 20px;
    width: 15px;
    margin-bottom: 3px;
    margin-right: 10px;
}
.our__product-line:last-child {
    margin-bottom: 0;
}

/* slider */
.slider {
    background-color: #003663; 
    padding: 35px 0;
 }
 .dots {
    position: relative;
    bottom: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 12px;
 }
 .content__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;  
    position: relative; 
    -webkit-box-align: center; 
        -ms-flex-align: center; 
            align-items: center
 }
.content__wrap-left,
.content__wrap-right {
    width: 50%;
}
.content__wrap-left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
}
.title {
    font-weight: 500;
    font-size: 38px;
    line-height: 48px;
    color: #FFF;
    min-width: 706px;
    width: 100%;
}
.hide {
    display: none;
}
.content__wrap-conteiner {
    margin-top: 45px;
    width: 677px;
    height: auto;
    background: #FFFFFF;
    padding: 40px 30px 30px;
    position: relative;
    /* z-index: 2; */
    margin-bottom: 30px;
}
.content__wrap-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
}
.content__wrap-right img {
    max-width: 100%;
}
.btn-blue {
    position: absolute;
    top: -24px;
    width: 223px;
    height: 48px;
    background-color: #00569D;
    text-align: center;
    padding-top: 12.5px;
    color: #fff;
}
.btn-yellow {
    width: 180px;
    height: 45px;
    padding: 12.5px 20px;
    background-color: #FFCD00;
    text-align: center;
    cursor: pointer;
    margin-left: 30px;
    color: #000;
}
.content__wrap-conteiner_text {
    font-size: 24px;
    line-height: 32px;
}
.content__wrap-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.content__wrap-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.content__wrap-inner-img img{
    width: 23px;
    height: 23px;
}
.content__wrap-inner_color {
    font-size: 18px;
    line-height: 22px;
    color: #8A8A8A;
    margin-left: 10px;
}
.prev,
.next {
    width: 22px;
    height: 22px;
    border: none;
    -webkit-transition: 0.6s ease;
    -o-transition: 0.6s ease;
    transition: 0.6s ease;
}

.circle{
    cursor: pointer;
    height: 12px;
    width: 12px;
    background-color: #fff;
    border-radius: 50%;
}
.deystvuyus {
    height:22px;
    width:22px;
    background-color: #fff;
    border: 5px solid #003663;
    -webkit-box-shadow: 0px 0px 0px 2px rgb(233, 233, 236);
            box-shadow: 0px 0px 0px 2px rgb(233, 233, 236);
    border-radius:50%;
}
.slider .content {
    -webkit-animation-name: fade;
            animation-name: fade;
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
}
@-webkit-keyframes fade {
    from {
    opacity: .4
    }
    to {
    opacity: 1
    }
}
@keyframes fade {
    from {
    opacity: .4
    }
    to {
    opacity: 1
    }
}
/* product */
.product {
    padding: 35px 0;
}
.title-fs32 {
    text-align: center;
    font-weight: 500;
    font-size: 32px;
    line-height: 50px;
}
.product__wrap {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 35px;
}
.product__wrap-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 297px;
    height: auto;
    background: #EFEFEF;
    padding-left: 20px;
}
.product__wrap-inner_text {
    font-size: 18px;
    line-height: 22px;
    max-width: 122px;
}
.product__wrap-inner_img {
    max-width: 152px;
    height: auto;
}
.product__wrap-inner_img img{
   width: 152px;
   height: 160px;
}
/* video */
.video {
    background: url('../img/video.png') center;
    background-size: cover;

}
.video__cotainer {
    min-height: 650px;
    cursor: pointer;
    display: block;
    position: relative;
    color: #fff;
}
.video-text {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    display: inline-block;
    width: 328px;
    font-weight: 500;
    font-size: 28px;
    line-height: 28px;
}
.video-play {
    position: absolute;
    width: 242px;
    height: 247px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%)
}
/* offers */
.offers {
    padding: 35px 0;
}
.offers__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
    padding-top: 35px;
}
.offers img {
    max-width:100%;
    height:auto;
}
.offers__left {
    margin-right: 35px;
}
/* news */
.news {
    background: #EFEFEF;
    padding: 35px 0 20px 0;
}
.news__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.news_title {
    text-align: left;
}
.news__head-btn a{
    color: #fff;
    background: #00569D;
    font-size: 18px;
    line-height: 22px;
    padding: 10px 15px;
}
.news__wrapper {
    padding-top: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 35px;
}
.news__wrapper-inner {
    width: 297px;
}
.news__wrapper-inner-positioning {
    position: relative;
}
.news__wrapper-inner_img {
    width: 297px;
    height: 220px;
}
.news__wrapper-inner_data {
    position: absolute;
    display: inline-block;
    color: #8A8A8A;
    background-color: #fff;
    font-size: 14px;
    padding: 5px 10px;
    z-index: 2;
    top: 15px;
    left: 15px;
}
.news__wrapper-inner_text {
    padding-top: 25px;
    color: #00569D;
    font-size: 18px;
    line-height: 22px;
}
/* tabs */
.customers {
    padding: 35px 0; 
}
.active-t {
    display: none;
}
.tabs__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
.tabs__item {
    padding-top: 20px;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    width: 226.67px;
    height: 60px;
    color: #000;
    border-left: 1.5px solid #EFEFEF;
    border-top: 1.5px solid #EFEFEF;
    border-bottom: 1.5px solid #EFEFEF;
    cursor: pointer;
    text-transform: uppercase;
}
.tabs__item:last-child {
    border-right: 1.5px solid #EFEFEF;
}

.switches {
    padding-top: 30px;
}
.switches__wrapper-img img{
    text-align: center;
    max-width: 100%;
    height: auto;
}
.active_m {
    display: none;
}
.active-btn {
    background-color: #003663;
    color: #fff;
}
/* social */
.social {
    padding: 35px 0;
    background-color: #EFEFEF;
}
.social__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 35px;
}
.social__wrapper-text {
    max-width: 154px;
    font-size: 18px;
    line-height: 28px;
}
.social__wrapper-icon img{
    width: 42px;
    height: 42px;
}
.social__wrapper-icon:last-child {
    margin-right: 0;
}
/* footer */
.footer {
    padding: 60px 0;
    background-color: #003663;
    color: #fff;
}
.footer__wrapper a{
    color: #fff;
    display: block;
    margin-bottom: 10px;
}
.footer__wrapper a:last-child{
    margin-bottom: 0;
}
.footer__wrapper {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.footer__wrapper-one {
    max-width: 126px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
}
.footer__wrapper-two {
    max-width: 312px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
}
.footer__wrapper-three {
    max-width: 303px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
}
.footer__wrapper-for {
    max-width: 303px;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
}
.footer__wrapper-item_title {
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    max-width: 118px;
}
.footer__wrapper-item p{
    margin-bottom: 10px;
}
.footer__wrapper-item_sos {
    margin-top: 20px;
    color: #FFCD00;
    padding: 20px;
    border: 2px solid #FFCD00;
}
.footer__wrapper-item_tel {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 22px;
}
.footer .btn a{
    color: #000;
}
.footer__wrapper-item_fs {
    margin-top: 35px;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
}
.footer__wrapper-item_info {
    margin-top: 68px;
}
.footer__mobile {
    display: none;
    padding: 5px 0;
}
.footer__mobile-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.footer__mobile-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    
}
/* narmida */
.narmida {
    padding: 30px 0;
    background-color: #EFEFEF;
}
.narmida__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.narmida__wrapper-logo {
    width: 219px;
    height: 74px;
    margin-right: 35px;
}
.narmida__wrapper-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #8A8A8A;
}

/* pop_up */

.modal {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    pointer-events: none;
  }
    
  .modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
    
  .modal__bg {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
    
  .modal-body {
    padding: 25px 34px 40px;
    background-color: #fff;
    max-width: 470px;
    max-height: 100%;
    margin: auto;
    overflow: auto;
    position: relative;
  }
  .modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #888;
    width: 15px;
    height: 15px;
  }
  .modal__form-input {
    display: block;
    width: 100%;
    background: #efefef;
    height: 49px;
    -webkit-box-shadow: 1px 1px rgb(0 0 0 / 7%) inset;
            box-shadow: 1px 1px rgb(0 0 0 / 7%) inset;
    margin: 0 0 20px;
    padding: 10px 30px;
    border: none;
    border-radius: 50px;
  }
  .modal-callback__title {
    font-size: 34px;
    text-align: left;
    text-transform: uppercase;
    color: #313131;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 120%;
  }
  .modal-callback__text {
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
  }
  .modal__btn {
    background-color: #fc0;
    color: #000;
    border-radius: 50px;
    height: 48px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    -webkit-transition: all .5s;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    margin: 0;
    padding: 4px 27px;
    border: none;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .modal__checbox {
    min-width: 20px;
    height: 20px;
    background-color: #fff;
    margin-right: 20px;
  }
  .politic {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .politic_link {
    color: #000;
  }
  
  .checkbox.style {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    /* height: auto; */
  }
  .checkbox.style input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  .checkbox.style input:checked ~ .checkbox__checkmark:after {
    opacity: 1;
  }
  .checkbox.style .checkbox__checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 4px;
  }
  .checkbox__body {
    font-size: 14px;
  }
  .checkbox.style .checkbox__checkmark:after {
    content: "";
    position: absolute;
    left: 5.5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #333;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    opacity: 0;
    -webkit-transition: opacity 0.25s ease;
    -o-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
  }