.content-section .img-box.pull-left {
    margin: 0 100px 80px 0;
}
.content-section ol.list li, .content-section ol.num-list li {
    font-size: 16px;
}
.tel a {
    color: #383838;
}
li.tel a:hover {
    color: #2bb22b;
    text-decoration: underline !important;
}
.structure-content-block {
    margin-bottom: 60px;
}
h2.content__title.no-after::after {
    content: initial;
}
.tarify .tarif {
    box-shadow: 0 0 18px rgba(0, 0, 0, .08);
    background-color: #2097ee;
}
.structure-include-block .tarify {
    padding-top: 0;
    padding-bottom: 0;
}
.members-section a {
    color: #000000;
}
.members-section a:hover {
    color: #2097ee;
    text-decoration: none;
}
.tarif__first-col .image:after {
    content: '';
    background: url(/images/vlnky-list.png);
    width: 300px;
    height: 188px;
    left: 0;
    position: absolute;
    z-index: 9;
}
.subpage-content .content {
    padding-top: 100px;
}
.alert-custom.errors {
    margin-top: 30px;
    display: block;
}
.company-location span img {
    width: 14px;
}
.company-location span i {
    margin-right: 16px;
}
.alert-custom.errors ul {
    -webkit-padding-start: 0;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    padding: 0;
    list-style-type: none;
}
.alert-custom.errors ul li {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: bold;
}
.connect-options h2.no-bottom {
    margin-bottom: 50px;
}
.margined-bottom-100 {
    margin-bottom: 60px;
}
.connect-options .bottom-text {
    margin-top: 0;
}
.alert-custom.errors ul li:before {
    content: initial;
}
.alert-custom.success p {
    font-weight: bold;
    color: white;
}
.connect-options, .content, .tarify {
    padding-top: 100px;
}
table.content__table {
    overflow: auto;
}
.package ul {
    min-height: 100px;
}
.tarif__first-col .image img {
    position: relative;
}
/* top menu */
.main-nav .btn-internet {
    background-color: #e81f2a;
    color: white !important;
}
.main-nav .btn-internet path {
    fill: white !important;
}
.main-nav .btn-internet::before {
    border: 2px solid #b3151e !important;
}
.main-nav .btn-volani {
    background-color: #009440;
    color: white !important;
}
.main-nav .btn-volani path {
    fill: white !important;
}
.main-nav .btn-volani::before {
    border: 2px solid #007a35 !important;
}
.main-nav .btn-televize {
    background-color: #3a5caa;
    color: white !important;
}
.main-nav .btn-televize path {
    fill: white !important;
}
.main-nav .btn-televize::before {
    border: 2px solid #2d4b8c !important;
}
.main-nav .btn-firma {
    background-color: #e3e3e3;
    color: white !important;
    color: #222 !important;
}
.main-nav .btn-firma::before {
    border: 2px solid #aaaaaa !important;
}

header.fixed {
    left: 0;
}
section.offer {
    min-height: 570px;
}
.footer-nav .row {
    justify-content: space-between;
    margin-left: 0;
    margin-right: 0;
}
.footer-nav .row > div p {
    color: white;
    font-size: inherit;
    font-weight: 400;
    line-height: inherit;
}

.new__image {
    background:none;
}

.crew-member__name {
    line-height: 24px;
}

@media (min-width: 1200px) {
    .contact-section__left-side {
        padding-left: 120px;
    }
}
@media (max-width: 1199px) {
    .download-files .download-files__button {
        margin-top: 25px;
    }
    section.why-us {
        padding-bottom: 0;
    }
    .new__image img {
        height: 218px;
        object-fit: cover;
        width: 100%;
    }
    .footer-nav .row {
        flex-wrap: wrap;
    }
    .footer-nav .row > div {
        width: 50%;
    }
}
@media (max-width: 992px) {
    h2.content__title.no-after {
        display: none;
    }
}
@media (max-width: 767px) {
    .footer-nav .row {
        flex-direction: column;
    }
    .footer-nav .row > div {
        width: auto;
        text-align: center;
    }
}
@media (max-width: 540px) {
    .footer-nav {
        margin-top: 0;
    }
    .footer-nav .row {
        justify-content: center;
        flex-direction: column;
    }
    .first-foot {
        text-align: center;
    }
}
.form-control {
    text-transform: none;
}

.dialog {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    inset: 0;
    padding-block: var(--modal-padding-block);
    padding-inline: 4.75rem;
    width: 100%;
    height: 100%;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    max-width: unset;
    max-height: unset
}

@media screen and (max-width: 767px) {
    .dialog {
        padding-block: 3.75rem 1rem;
        padding-inline: 1rem
    }
}

.dialog[open] {
    display: flex;
}

.dialog__backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, .75);
    visibility: hidden;
    opacity: 0;
    transition: 175ms ease-in-out;
    transition-property: visibility, opacity;
    cursor: pointer;
    height: 100dvh;
    width: 100%;
    animation: show-backdrop 175ms ease-out
}

.dialog[open] .dialog__backdrop {
    visibility: visible;
    opacity: 1
}

.dialog__window {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    max-height: calc(100dvh - 2.75rem - 2rem);
    max-width: 52rem;
    position: relative;
    animation: show 175ms ease-out normal
}

.dialog[open] .dialog__window {
    transform: none
}

.dialog__inner {
    padding: 2rem;
    background-color: #fff;
    width: 100%;
    max-height: 100%;
    overflow-y: auto
}

@media screen and (max-width: 991px) {
    .dialog__inner {
        padding: 2.5rem
    }
}

@media screen and (max-width: 575px) {
    .dialog__inner {
        padding: 1.5rem
    }
}

.dialog__body {
    max-height: calc(100dvh - 2 * var(--modal-padding-block));
    overflow: auto
}

.dialog__content {
    padding: 3rem
}

@media screen and (max-width: 767px) {
    .dialog__content {
        padding: 2rem
    }
}

.dialog__content .structure-content *:last-child {
    margin-bottom: 0
}

.dialog__close {
    position: absolute;
    top: 0;
    left: 100%;
    width: 3rem;
    height: 3rem;
    padding: .85rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e81f2a;
    transition: 125ms ease-out;
    transition-property: background-color;
    border: none
}

@media screen and (max-width: 767px) {
    .dialog__close {
        top: auto;
        left: auto;
        right: 0;
        bottom: 100%
    }
}

.dialog__close svg {
    width: 100%;
    height: 100%;
    stroke: #fff;
    stroke-width: 2px;
    transition: inherit;
    transition-property: transform
}

.dialog__close:hover, .dialog__close:active {
    background-color: #e81f2a
}

.dialog__close:hover svg, .dialog__close:active svg {
    transform: rotate(90deg)
}

.dialog--multibanner .dialog__inner {
    padding: 0;
    background: none;
    overflow: initial
}

.dialog-multibanner {
	display: grid;
	grid-template-columns:repeat(2, 1fr);
	gap: 1rem
}

@media screen and (max-width: 767px) {
	.dialog-multibanner {
		grid-template-columns:minmax(0, 1fr)
	}
}

.dialog-multibanner__item:first-child {
	grid-column: -1/1
}

.dialog-banner {
	height: 0;
	padding-bottom: 50%;
	position: relative
}

.dialog-banner > a {
	position: absolute;
	inset: 0
}

.dialog-banner img, .dialog-banner picture {
	position: absolute;
	inset: 0;
	overflow: hidden
}

.dialog-banner__body {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: end
}

.dialog-banner__body .title {
	max-width: 80%;
	align-self: start;
	font-weight: bold;
	font-family: "Sora", sans-serif;
	padding: .4em .8em;
	font-size: 1.15em;
	color: #fff;
	background: #e81f2a
}

.dialog-banner__body .content {
	display: none;
	align-self: start;
	padding: .4em .8em;
	color: #313130;
	background: #fff
}

@media screen and (min-width: 768px) {
	.dialog-banner--main {
		font-size: 1.2em
	}

	.dialog-banner--main .content {
		display: block;
	}
}

.dialog-split .dialog-split__item {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.dialog-split .dialog-split__item > * {
    flex: 1 1 100%;
}
@media screen and (min-width: 768px) {
    .dialog-split .dialog-split__item > * {
        flex: 1 1 50%;
    }
}
.dialog-split .dialog-split__item picture > * {
    max-width: 100%;
}

.dialog-split .dialog-split-banner__body {
    background: #ffffff;
    padding: 2rem;
}
.dialog-split .dialog-split-banner__body > * {
}
.dialog-split .dialog-split-banner__body > .title {
    font-weight: bold;
    font-family: "Sora", sans-serif;
    color: #e81f2a;
    background: none;
    padding: 0;
    font-size: 150%;
    margin-bottom: 1em;
}
.dialog-split .dialog-banner__body > .text {
    padding: 0;
}
.dialog-split .dialog-split-banner__body > .text p {
    color: initial;
    font-size: initial;
    font-weight: initial;
}

.infobar {
    display: none;
    align-items: center;
    justify-content: space-between;
    background: #e81f2a;
    gap: 1rem;
    position: initial;
    border: none;
    width: 100%;
    padding: 0;
}
.infobar[open] {
    display: flex;
}
.infobar::before {
    content: '';
}
.infobar .infobar__content {
    font-weight: bold;
    color: #ffffff;
    padding-block: 0.5em;
}

.infobar__close {
    justify-self: end;
    width: 3rem;
    height: 3rem;
    padding: .85rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e81f2a;
    transition: 125ms ease-out;
    transition-property: background-color;
    border: none
}

@media screen and (max-width: 767px) {
    .infobar__close {
        top: auto;
        left: auto;
        right: 0;
        bottom: 100%
    }
}

.infobar__close svg {
    width: 100%;
    height: 100%;
    stroke: #fff;
    stroke-width: 2px;
    transition: inherit;
    transition-property: transform
}

.infobar__close:hover, .infobar__close:active {
    background-color: #e81f2a
}

.infobar__close:hover svg, .infobar__close:active svg {
    transform: rotate(90deg)
}