
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none !important;
}


a{
    text-decoration: none;
    color: #000;
    font-family: inherit;
}

.bread_crumbs{
    margin-top: 90px;
    color: #878787;
    font-family: museosanscyrl-300;
    margin-bottom: 50px;
}

.bread_crumbs .bc_block, .bread_crumbs .bc_blocks{
    color: #878787;
    background: #eee;
    margin: 0px;
    padding: 5px 10px;
    margin: 1px;
    transition: 0.3s;
}

.bread_crumbs .bc_block:hover{
    color: #fff;
    background: #aaa;
}



/* ===== Всплываающее меню ===== */
.header .menu-icon.active:before {
    top: 50%;
    -webkit-transform: rotate(-45deg) translate(0, -50%);
    -ms-transform: rotate(-45deg) translate(0, -50%);
    transform: rotate(-45deg) translate(0, -50%);
}
.header .menu-icon.active span {
    -webkit-transform: scale(0) translate(0, -50%);
    -ms-transform: scale(0) translate(0, -50%);
    transform: scale(0) translate(0, -50%);
}
.header .menu-icon.active:after {
    bottom: 49%;
    -webkit-transform: rotate(45deg) translate(0, 50%);
    -ms-transform: rotate(45deg) translate(0, 50%);
    transform: rotate(45deg) translate(0, 50%);
}




.header .menu-body {
    position: fixed;
    top: 0px;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: transparent;
    text-align: center;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.header .burgerBlock1 {
    position: relative;
    background: #fff;
    padding: 50px 50px 50px 60px;
    -ms-flex-preferred-size: 33.33%;
    flex-basis: 33.33%;
    border-left: 1px solid rgba(0, 0, 0, .2);
}

.header .burgerBlock2__close {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 20px;
    cursor: pointer;
    width: 20px;
}
.header .burgerBlock2__close img {
    width: 100%;
}

.header .burgerBlock1 .burgerBlock__item {
    text-align: left;
    margin-bottom: 30px;
}
.header .burgerBlock1 .burgerBlock__item p:nth-child(1) {
    font-size: 36px;
    font-weight: 600;
    color: #104f95;
}
.header .burgerBlock1 .burgerBlock__item p:nth-child(2) {
    color: #7f8389;
    margin-bottom: 15px;
    font-size: 12px;
}
.header .burgerBlock1 .burgerBlock__item .tabs__nav-btn.active {
    color: #104f95;
    font-weight: 600;
    text-decoration: underline;
}
.header .burgerBlock1 .burgerBlock__item .tabs__nav-btn {
    cursor: pointer;
    color: #000;
    margin-bottom: 10px;
}
.header .menu-body.active {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    background: #003e83bf;
}


.header .burgerBlock2 {
    background: #fff;
    padding: 50px;
    -ms-flex-preferred-size: 33.33%;
    flex-basis: 33.33%;
    border-left: 1px solid rgba(0, 0, 0, .2);
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    opacity: 0;
    position: relative;
}


.header .tabs__item {
    position: absolute;
    top: 50px;
    z-index: 1;
    opacity: 0;
    transform: scale(0);
    background: #fff;
    transition: 0.3s;
}

.header .tabs__item.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}
.header .burgerBlock2__title {
    color: #104f95;
    font-size: 36px;
    text-align: center;
    margin-bottom: 90px;
}
.header .burgerBlock2__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}
.header .burgerBlock2__element {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -ms-flex-preferred-size: 34%;
    flex-basis: 34%;
    margin-bottom: 100px;
    cursor: pointer;
    position: relative;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.header .burgerBlock2__name {
    font-size: 16px;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header .burgerBlock2__logo {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
}

.header .burgerBlock2__element:before {
    position: absolute;
    bottom: 30px;
    width: 100%;
    content: "";
    height: 5px;
}


.header .burgerBlock2__element--firstsite:before {
    background: #f4c312;
}
.header .burgerBlock2__element--mysite:before {
    background: #109c83;
}
.header .burgerBlock2__element--shopsite:before {
    background: #08b1f4;
}

.header .burgerBlock2__element--firstsite .burgerBlock2__name {
    color: #f4c312;
}
.header .burgerBlock2__element--promosite:before {
    background: #020202;
}
.header .burgerBlock2__element--gosweb:before {
    background: #8b97ff;
}
.header .burgerBlock2__element--1cbitrix:before {
    background: #c92433;
}

.header .burgerBlock2__desc {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    text-align: center;
    font-weight: 600;
    color: #104f95;
    margin-top: 30px;
}



.header .burgerBlock3 {
    background: #fff;
    padding: 50px;
    -ms-flex-preferred-size: 33.33%;
    flex-basis: 33.33%;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    opacity: 0;
}


.slinky-theme-default {
    background: #fff;
}
.slinky-menu {
    text-align: left;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.js-menu {
    display: none;
    width: 100%;
    min-height: 100% !important;
}

.header .burgerBlock1 .burgerBlock4__item .link__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.header .burgerBlock1 .burgerBlock__item .tabs__nav-btn {
    cursor: pointer;
    color: #000;
    margin-bottom: 10px;
}

.header .burgerBlock1 .burgerBlock__item .tabs__nav-btn:hover {
    color: #104f95;
}
img {
    border-style: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.header .burgerBlock2__wrapper--promotion .burgerBlock2__logo {
    max-width: 70px;
    margin-bottom: 30px;
    -o-object-fit: contain;
    object-fit: contain;
}

.header .burgerBlock2__wrapper--promotion .burgerBlock2__logo, .header .burgerBlock2__wrapper--promotion .burgerBlock2__name {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.header .burgerBlock2__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

.header .burgerBlock2__wrapper--promotion .burgerBlock2__element:before {
    bottom: 46px;
}





.header .burgerBlock3 {
    background: #fff;
    padding: 50px;
    -ms-flex-preferred-size: 33.33%;
    flex-basis: 33.33%;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    opacity: 0;
}

.header .burgerBlock2.show, .header .burgerBlock3.show {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.header .burgerBlock2__close {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 20px;
    cursor: pointer;
    width: 20px;
}
.header .burgerBlock2__close img {
    width: 100%;
}
.tabs__item__F {
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    left: 0;
    transition: 0.5s;
    position: absolute;
    top: 50px;
    z-index: 1;
    transform: scale(0);
    width: 100%;
}
.tabs__item__F.active {
    opacity: 2;
    z-index: 1;
    transform: scale(1);
}

.header .burger3Card__head {
    font-size: 36px;
    color: #104f95;
    text-align: center;
}



.header .contentText {
    display: flex;
    justify-content: space-between;
    text-align: left;
    align-items: center;
    width: auto;
    margin: 20px auto;
    width: 100%;
}
.header .contentText img.burgerBlock2__logo {
    width: 70px;
    flex-basis: 70px;
}
.header .contentText .burger3Card__subhead {
    font-size: 18px;
    color: #104f95;
    text-align: left;
    margin: 20px;
}

a.tabs__nav-btn__S {
    display: block;
    margin-bottom: 10px;
}


.header .burger3Card__subhead {
    font-size: 24px;
    color: #104f95;
    text-align: center;
    margin-bottom: 25px;
}
.header .burger3Card__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.header .burger3Card {
    -ms-flex-preferred-size: 45%;
    flex-basis: 40%;
    border: 1px solid transparent;
    border-radius: 20px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    padding: 10px;
    min-width: 248px;
    cursor: pointer;
    margin: 5px;
    border: 3px solid #eee;
}
.header .burder3Card__img {
    max-width: 120px;
    left: -20px;
    position: relative;
}
.header .burger3Card__title {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #000;
}
.header .burger3Card--green .burger3Card__title:before {
    position: absolute;
    content: '';
    height: 5px;
    width: 90%;
    background: #109c83;
    bottom: -8px;
    left: 5%;
}
.header .burger3Card__subtitle {
    font-size: 16px;
    margin-bottom: 2px;
    color: #000;
}
.header .burger3Card__hidden {
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.header .burger3Card__buttons {
    display: flex;
    justify-content: center;
    width: 100%;
}
.header .burger3Card__price2 {
    font-size: 12px;
    text-align: left;
    color: #104f95;
    margin-bottom: 15px;
    text-align: center;
}
.header .burger3Card__buttons a {
    max-width: 115px;
    min-width: 115px;
    font-size: 14px;
    padding: 5px;
    -ms-flex-preferred-size: 45%;
    flex-basis: 45%;
}
.button--tariffs {
    min-width: 276px;
}
.header .burger3Card__buttons a {
    max-width: 115px;
    min-width: 115px;
    font-size: 14px;
    padding: 5px;
    -ms-flex-preferred-size: 45%;
    flex-basis: 45%;
    margin: 0px 2px;
}
.button--white {
    background-color: #fff;
    color: #104f95;
    border: 1px solid #104f95;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.header .burger3Card__title {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

.burgerBlock1{
    z-index: 2;
}

.burgerBlock2{
    z-index: 1;
}

.burgerBlock3{
    z-index: 0;
}

.burger3Card__wrapper.contentText{
    padding: 0px 20px ;
    text-align: left;
    
}


.burger3Card__wrapper.contentText .titleText{
    text-align: center;
    
}

.burger3Card__wrapper.contentText .priceList {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 25px;
    color: #000;
    padding: 30px 0px;
}

.burger3Card__wrapper.contentText .priceList div.parentPL{
    text-align: left;
    padding: 20px;
}

div.parentPL div {
    margin: 5px 0px;
}

.menu__content {
    text-align: center;
    padding: 0px 20px;
}
p.menu-offer__info {
    font-family: 'museosanscyrl';
}
p.titleMenu {
    text-transform: uppercase;
    margin: 10px;
    font-size: 25px;
    color: #104f95;
}
.formMenuProd, .menuButtonProd, .menu__manager-text {
    display: block;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    width: 100%;
}
.formMenuProd .menu__tel.tel {
    border: 0px;
    font-size: 20px;
    width: 95%;
    border-bottom: 1px solid #c5c5c5;
}

.menuButtonProd .block{
    width: 45%;
}
p.menu-offer__info.block {
    font-size: 12px;
    text-align: left;
}
form#form {
    padding: 0px 20px;
}

.menuBlockManager img {
    width: 70px;
    margin-right: 20px;
}

p.mini {
    font-size: 12px;
    color: #aaa;
}

p.managerMenu {
    font-size: 20px;
}
a.menu-offer__recall-link {
    font-size: 25px;
}


/* ===== ПОПАПЫ  ===== */
.popupBlock{
    width: 100%;
    height: 100vh;
    margin: 0px;
    padding: 0px;
    position: fixed;
    top: 110vh;
    left: 0px;
    background: #003e83bf;
    z-index:999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: perspective(484px) scaleZ(1) rotateX(90deg);
    transition: 0.5s;


}

.popupBlock.activePopup{
    transform: perspective(487px) scaleZ(1) rotateX(0deg);
    display: flex;
    top: 0px;
}

.popupBlock .form {
    background-color: #fff;
    box-shadow: 5px 5px 10px #0f3864;
    padding: 20px;
}

.popupBlock .menu-icon {
    z-index: 5;
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: 0.3s;
}


.popupBlock .menu-icon:hover {
    transform: rotate(180deg);
}

.popupBlock .menu-icon:before {
    top: 48%;
    -webkit-transform: rotate(-45deg) translate(0, -50%);
    -ms-transform: rotate(-45deg) translate(0, -50%);
    transform: rotate(-45deg) translate(0, -50%);
}
.popupBlock .menu-icon:after, .popupBlock .menu-icon:before {
    left: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    background-color: #104f95;
}
.popupBlock .menu-icon:after, .popupBlock .menu-icon:before {
    content: "";
}
.popupBlock .menu-icon:after {
    bottom: 49%;
    -webkit-transform: rotate(45deg) translate(0, 50%);
    -ms-transform: rotate(45deg) translate(0, 50%);
    transform: rotate(45deg) translate(0, 50%);
}

.popupHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 25px;
    border-bottom: 1px solid #104f95;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.popupHeader.hidden{
    display: none;
}
.popupTitle{
    margin-right: 20px;
}

div#popupForm {
    max-width: 700px;
}

.formsPopup {
    padding: 0px;
    width: 45%;
}

.form-application__body form#form {
    display: flex;
    align-items: flex-start;
    padding: 20px 0px;
    justify-content: space-between;
}

.form-application__body .formMenuProd, .menuButtonProd, .menu__manager-text {
    display: block;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
    width: 100%;
}

.form-application__body .menu__tel-wrapper {
    margin: 30px 0px;
    width: 100%;
}

p.formTitle {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #104f95;
}

.menuBlockManager {
    display: flex;
    margin-top: 30px;
    text-align: left;
}

.titleHederPopup {
    text-transform: uppercase;
    font-weight: 600;
    color: #104f95;
}

.form-application__body p.menu-offer__info.block {
    font-size: 16px;
    text-align: left;
    width: 100%;
    margin-top: 20px;
}

button.popupButton {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
}

button.popupButton {
	position: relative;
	display: inline-block;
	padding: 14px 40px;
	background-color: #104f95;
	border-radius: 40px;
	color: #fff;
	text-align: center;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	border: 1px solid transparent;
	font-size: 22px;
	cursor: pointer;
	overflow: hidden;
}

button.popupButton:after {
	content: "";
	display: block;
	width: 20px;
	height: 200px;
	margin-left: 50px;
	background: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, .5)), color-stop(50%, #fff), to(rgba(255, 255, 255, .5)));
	background: -o-linear-gradient(top, rgba(255, 255, 255, .5) 0, #fff 50%, rgba(255, 255, 255, .5) 100%);
	background: linear-gradient(to bottom, rgba(255, 255, 255, .5) 0, #fff 50%, rgba(255, 255, 255, .5) 100%);
	left: -40px;
	top: -100px;
	z-index: 1;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	-webkit-animation: 2s ease-in-out infinite movingFlare;
	animation: 2s ease-in-out infinite movingFlare;
}
@-webkit-keyframes movingFlare {
	0% {
		left: -30px;
		margin-left: 0
	}

	100%,
	30% {
		left: 110%;
		margin-left: 80px
	}
}

@keyframes movingFlare {
	0% {
		left: -30px;
		margin-left: 0
	}

	100%,
	30% {
		left: 110%;
		margin-left: 80px
	}
}

button.popupButton:hover {
	background: #fff;
	color: #104f95;
	border: 1px solid #104f95;
}

.popup__body {
    min-height: 100%;
    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;
}

.popup__content {
    position: relative;
    background-color: #fff;
    color: #104f95;
    text-align: center
}

.popup__title {
    margin-bottom: 10px;
    font-size: 36px;
    font-weight: 300;
    text-align: center
}

.popup-offer__info {
    color: #7f8389;
    width: 450px;
    margin: 0 auto 15px;
}

.popup__manager {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.popup__manager p {
    color: #104f95;
    font-weight: 600;
    font-size: 16px
}

.popup__manager p:nth-child(1) {
    color: #000;
    margin-bottom: 10px
}

.popup__email-wrapper,
.popup__tel-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 35px
}

.popup-offer__title {
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 300
}

.popup__email,
.popup__tel {
    width: 100%;
    margin: 0 auto;
    border-bottom: 1px solid gray;
    border-left: none;
    border-top: none;
    border-right: none;
    text-align: center
}

.js-input.error {
    border: 1px solid red
}

.popup__email::-webkit-input-placeholder,
.popup__tel::-webkit-input-placeholder {
    text-align: center;
    font-size: 18px;
    line-height: 20px;
    color: #7f8389
}

.popup__email::-moz-placeholder,
.popup__tel::-moz-placeholder {
    text-align: center;
    font-size: 18px;
    line-height: 20px;
    color: #7f8389
}

.popup__email:-ms-input-placeholder,
.popup__tel:-ms-input-placeholder {
    text-align: center;
    font-size: 18px;
    line-height: 20px;
    color: #7f8389
}

.popup__email::-ms-input-placeholder,
.popup__tel::-ms-input-placeholder {
    text-align: center;
    font-size: 18px;
    line-height: 20px;
    color: #7f8389
}

.popup__email::placeholder,
.popup__tel::placeholder {
    text-align: center;
    font-size: 18px;
    line-height: 20px;
    color: #7f8389
}

.popup__email:focus,
.popup__tel:focus {
    outline: 0;
    outline-offset: 0
}

.popup-offer__info {
    color: #7f8389;
    width: 450px;
    margin: 0 auto 15px
}

.popup-offer__recall {
    color: #104f95;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 15px
}

.popup-offer__recall-link {
    color: #000;
    font-size: 18px;
    line-height: 20px;
    font-weight: 300;
    display: block;
    margin-bottom: 15px
}

.popup-offer__recall-link:hover {
    text-decoration: underline
}

.form__send--success {
    display: none !important
}

.form__send--success.open {
    display: block !important
}

.poppupMessage{
    text-align: center;
}

.poppupMessage h2 {
    text-transform: uppercase;
    text-align: center;
    color: #104f95;
    font-size: 40px;
    margin-bottom: 10px;
}

.poppupMessage p{
    text-align: center;
}

.poppupMessage .infoMessage {
    font-weight: 600;
    color: #104f95;
}

.popupMailInfo {
    min-width: 474px;
    padding: 10px;
    list-style-type: none;
    margin: 20px;
}

.popupMailInfo li {
    font-size: 20px;
    margin: 5px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 3px 0px;
}