.main-sl__btn {
display:none;
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1400px!important;
    }
}
@media (min-width: 1400px) and (max-width: 1920px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1200px!important;
	}
}

/******Header******/
header {
	font-family: Inter, sans-serif;
}

header .header-container-pdn {
	padding-top: 8px;
	padding-bottom: 8px;
}
header .header-container {
	display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
    width: 100%;
	max-width: 1920px;
	margin: 0 auto;
}
header .header-container .header-nav-btns {
    display: flex;
    align-items: center;
    gap: 30px;
}
header .header-container .header-nav-btns .btn-apply {
    display: flex;
    align-items: center;
    justify-content: center;
	text-transform: uppercase;
    width: 190px;
    height: 50px;
    border-radius: 25px;
    background: #FF3D00;
    color: #FFFFFF;
    font-weight: 500;
    cursor: pointer;

	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 16px;
}
header .header-container .header-logo-topmenu .logo_header img {
    height: 35px;
    object-fit: contain;
}
header .header-container .header-nav-topmenu .nav-topmenu ul {
	display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}
header .header-container .header-nav-topmenu .nav-topmenu ul li a {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    color: #000000!important;
    line-height: 140%;
    letter-spacing: 0px;
    text-decoration: none;
}

header .header-container .header-nav-btns .header-search-btn {
    width: 20px;
    height: 20px;
    background-image: url('/local/templates/dial24/images/search-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}
header .header-container .header-nav-btns .header-contact-btn {
    width: 20px;
    height: 20px;
    background-image: url('/local/templates/dial24/images/phone-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
	display: none;
}
/* Скрытый блок по умолчанию */
header .search-block {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}
/* Раскрытый блок */
header .search-block.open {

}
.nav-topmenu .custom-dropdown {
	display: flex;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	margin-top: 0;
	position: absolute;
	min-width: 200px;
	background: #ffffff;
	box-shadow: unset;
	z-index: 1000;
	padding: 5px 0;
	left: 0;
	top: 100%;
	flex-direction: column !important;
	gap: 15px !important;
}
.nav-topmenu .dropdown:hover > .custom-dropdown,
.nav-topmenu .dropdown-item:hover > .custom-dropdown {
	opacity: 1;
	visibility: visible;
	display: flex;
}
.dropdown-item {
	position: relative;
}
.custom-dropdown .custom-dropdown {
	left: 100%;
	top: 0;
	margin-left: 0;
}
.nav-item {
	position: relative;
}
.nav-link {
	display: inline-block;
	padding: 10px 15px!important;
	text-decoration: none;
	transition: color 0.3s ease;
	position: relative;
}
.nav-link:hover {
	color: #FF3D00 !important;
}
.dropdown-icon {
	position: relative;
	padding-right: 15px;
}
.dropdown-icon::after {
	content: "";
	position: absolute;
	right: 0;
	top: 9px;
	transform: translateY(-50%) rotate(45deg);
	width: 7px;
	height: 7px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transition: transform 0.4s ease;
}
.dropdown:hover > .nav-link .dropdown-icon::after {
	transform: translateY(-50%) rotate(225deg);
	top: 10px;
}
.custom-dropdown .dropdown-item a {
	padding: 5px 15px;
	display: block;
	text-align: left !important;
	transition: color 0.3s ease;
}
header .header-container .header-nav-topmenu .nav-topmenu ul li a:hover {
	color: #FF3D00 !important;
}
header .header-container .header-nav-topmenu .nav-topmenu ul li.active a.text-black {
	color: #FF3D00 !important;
}
header .header-container .header-nav-topmenu .nav-topmenu .custom-dropdown li.active a {
	color: #FF3D00 !important;
}
header .header-container .header-logo-topmenu .mob-burger-menu,
nav.nav-mob {
	display: none;
}
@media (min-width: 1440px) and (max-width: 1920px) {
    header .header-container .header-nav-topmenu .nav-topmenu ul {
    	gap: 20px;
	}
	header .header-container .header-nav-btns .btn-apply {
		width: 180px;
		height: 40px;
		font-size: 14px;
	}
	header .header-container .header-nav-topmenu .nav-topmenu ul li a {
		font-size: 14px;
	}
	.dropdown-icon::after {
		top: 6px;
	}
}
@media (max-width: 1440px) {
	header .header-container .header-nav-topmenu .nav-topmenu ul li {
    	font-size: 14px;
	}
	header .header-container .header-nav-topmenu .nav-topmenu ul {
    	gap: 10px;
	}
	header .header-container .header-nav-btns .btn-apply {
		width: 160px;
		height: 40px;
		font-size: 14px;
	}
	.dropdown-icon::after {
		top: 6px;
	}
}

@media (max-width: 1220px) {
	header .header-container .header-nav-topmenu,
	header .header-container .header-nav-btns .btn-apply {
		display: none;
	}
	header .header-container .header-logo-topmenu .mob-burger-menu {
		display: block;
	}
	header .header-container .header-logo-topmenu {
		display: flex;
		align-items: center;
		gap: 30px;
		cursor: pointer;
	}

/******Выдвижное меню в мобильной версии******/
	.no-scroll {
        position: fixed;
        width: 100%;
        overflow: hidden;
    }
	nav.nav-mob {
    	position: fixed;
    	z-index: 100;
		top: 0;
		left: -100%;
		transition: left 0.2s;
    	width: 100%;
    	height: 100%;
		background: white;
		padding: 0 15px;
    	box-sizing: border-box;
		display: block;
    }
	nav.nav-mob .nav-topmenu .navbar-nav {
		display: flex;
		align-items: center;
		gap: 15px;
    }
	nav.nav-mob .navbar-nav .nav-item.active a {
		color: #FF3D00!important;
    }
	nav.nav-mob .navbar-nav .nav-item a:hover {
		color: black!important;
	}
	.nav-topmenu .dropdown:hover > .custom-dropdown,
	.nav-topmenu .dropdown-item:hover > .custom-dropdown {
		opacity: 0;
		visibility: hidden;
	}
    nav.nav-mob ul.navbar-nav li.nav-item .dropdown-icon {
        display: none;
    }
	.nav-mob-header {
		height: 60px;
		position: relative;
    }
    .nav-mob-close {
    	position: absolute;
    	top: 50%;
    	right: 5px;
    	width: 30px;
    	height: 30px;
    	cursor: pointer;
    	transform: translateY(-50%);
    }
	.nav-mob-close::before, .nav-mob-close::after {
    	content: '';
    	position: absolute;
    	width: 100%;
    	height: 1px;
    	background-color: #a5a5a5;
    	top: 50%;
    	left: 0;
    	transform: translateY(-50%);
    }
    .nav-mob-close::before {
    	transform: rotate(45deg);
    }
    .nav-mob-close::after {
    	transform: rotate(-45deg);
    }
	nav.nav-mob ul.navbar-nav li.nav-item a {
		text-decoration: none;
		font-size: 24px;
		font-weight: 500;
	}
/******Конец******/
	header .header-container .header-nav-btns .header-contact-btn {
		display: block;
	}
}
@media (max-width: 768px) {
	header .header-container .header-logo-topmenu .logo_header img {
		height: 25px;
	}
}

footer {
	font-family: Inter, sans-serif;
}
footer .footer-container .footer-form {
	background: #2D2D2D;
	padding: 20px 0;
}
footer .footer-container .footer-form .container::after {
	content: none;
}
footer .footer-container .footer-form .container::before{
	content: none;
}
footer .footer-container .footer-form .container {
	display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 70px;
	padding: 20px 0px;
}
.error__text {
    height: 24px;
    text-align: center;
    color: red;
}
footer .footer-container .footer-info {
	background: #363636;
}
footer .footer-container .footer-info-menu {
	display: grid;
    grid-template-columns: repeat(7, 1fr);
	gap: 20px;
	padding: 40px 0;
	border-bottom: 1px solid #999;
}
footer .footer-container .footer-form-img {
	display: flex;
    align-items: center;
    gap: 20px;
}
footer .footer-container .footer-form-img-text {
	color: #ffffff;
    line-height: 18px;
    font-weight: 600;
    font-size: 15px;
}
footer .footer-container .footer-form-img-tg {
	width: 30px;
    height: 30px;
    background-image: url('/local/templates/dial24/images/telegram.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.footer-form-input {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 600px;
}
.footer-form-input input[type="text"] {
    width: 100%;
    padding: 15px 40px 15px 15px;
    font-size: 16px;
    color: #fff;
    background-color: #3d3d3d;
    border: 1px solid #555;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
	line-height: 12px;
}
.footer-form-input input[type="text"]::placeholder {
    color: #888;
	font-size: 15px;
}
.footer-form-input input[type="text"]:focus {
    border-color: #888;
}
.footer-form-input input[type="email"] {
    width: 100%;
    padding: 15px 40px 15px 15px;
    font-size: 16px;
    color: #fff;
    background-color: #363636;
    border: 1px solid #555;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
	line-height: 12px;
}
.footer-form-input input[type="email"]::placeholder {
    color: #888;
	font-size: 15px;
}
.footer-form-input input[type="email"]:focus {
    border-color: #888;
}
.footer-form-input .arrow-icon {
    position: absolute;
    right: 10px;
    color: #888;
    font-size: 18px;
    background-color: transparent;
    border: 0;
}
.footer-bottom-info {
	display: flex;
    gap: 50px;
    padding: 40px 0;
    font-size: 14px;
    color: #999 !important;
}
.footer-contacts-item {
	display: flex;
	gap: 20px;
}
.footer-info-contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
}
.footer-info-contacts .footer-contacts-item a{
    text-decoration: none;
	color: #ffffff;
}
.footer-info-contacts .footer-contacts-phone {
    font-size: 16px;
    font-weight: 600;
}
.footer-info-contacts .footer-contacts-email {
    font-size: 14px;
    font-weight: 500;
}
.footer-info-contacts .footer-contacts-callbck {
	font-size: 14px;
    color: #999;
	font-weight: 100;
}
@media (max-width: 992px) {
	footer .footer-container .footer-info-menu {
		grid-template-columns: repeat(1, 1fr);
		gap: 10px;
		padding: 40px 0 20px;
 justify-items: left;
	}

	footer .footer-container .footer-form .container {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 20px;
	}
	.footer-form-input {
		max-width: none;
	}
	.footer-form-input input[type="text"] {
		border-radius: 12px;
	}
	footer .footer-container .footer-form {
    	padding: 0;
	}
	.footer-info-contacts .footer-contacts-phone {
		font-size: 20px;
	}
	.footer-bottom-info {
		gap: 10px;
		padding: 20px 0;
		flex-direction: column;
	}
}


.consultation-form-container {
	background: #FD4D15;
	padding: 25px 0;
	margin: 50px auto;
}
.consultation-form-container .consultation-block {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
	gap: 20px;
}
.consultation-form-container .consultation-block .consultation-item:first-child {
    width: 340px;
    height: 240px;
    background-image: url(/local/templates/dial24/images/img-main-figure.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
}
.consultation-form-container .consultation-block .consultation-item:nth-child(2) {
	font-size: 36px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -2px;
    color: #FFFFFF;
    height: calc(100% - 50px);
    display: flex;
    align-items: center;
}
.consultation-form-container .consultation-block .consultation-item-text {
	font-size: 32px;
	font-weight: 400;
	line-height: 35.2px;
	letter-spacing: -2px;
	color: #FFFFFF;
	margin-bottom: 50px;
	padding-top: 15px;
	text-align: center;
}
.consultation-form-container .consultation-block .consultation-item-description {
	font-size: 24px;
	font-weight: 400;
	line-height: 28.8px;
	color: #FFFFFF;
	margin-bottom: 18px;
	text-align: center;
}
.consultation-form-container .consultation-block .consultation-item-btn {
	display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    width: 100%;
    height: 40px;
    border-radius: 25px;
    background: #FFFFFF;
    color: black;
    font-weight: 500;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 12px;
}
.consultation-form-container .consultation-block .consultation-item:last-child {
	display: flex;
    flex-direction: column;
    align-items: center;
	width: 480px;
	height: calc(100% - 50px);
}

.consultation-container-price .consultation-block .consultation-item:first-child {
    width: 240px;
    height: 240px;
    background-image: url(/local/templates/dial24/images/img-figure-price.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
}
.consultation-container-price .consultation-block .consultation-item:nth-child(2) {
	font-size: 55px;
    font-weight: 400;
    line-height: 64px;
    letter-spacing: -2px;
    color: #FFFFFF;
    height: calc(100% - 50px);
    width: 400px;
}
.consultation-container-price .consultation-block .consultation-item-text {
    font-size: 22px;
}
.consultation-container-price .consultation-block .consultation-item-text-nd {
    font-size: 16px;
	color: #FFFFFF;
	margin-bottom: 38px;
    text-align: center;
}
.consultation-container-price .consultation-block .consultation-item-description {
    font-size: 16px;
}
.consultation-container-price .consultation-block .consultation-item:last-child {
    width: 620px;
}
.consultation-container-price .consultation-block .consultation-item-text {
    margin-bottom: 10px;
	letter-spacing: -1px;
}
.consultation-container-price .consultation-block .consultation-item-btn {
    width: 320px;
}
.consultation-container-price .consultation-block .consultation-item:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
}
@media (max-width: 1400px) {
    .consultation-form-container .consultation-block .consultation-item:nth-child(2) {
		font-size: 40px;
		font-weight: 400;
		line-height: 54px;
		letter-spacing: -1px;
		color: #FFFFFF;
		height: calc(100% - 50px);
display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 300px;
	}
	.consultation-form-container .consultation-block .consultation-item:last-child {
		width: 350px;
	}
	.consultation-form-container .consultation-block .consultation-item-text {
		font-size: 28px;
		font-weight: 400;
		line-height: normal;
		letter-spacing: -1px;
		color: #FFFFFF;
		margin-bottom: 10px;
		padding-top: 0px;
	}
.consultation-container-price .consultation-block .consultation-item-text-nd {
    font-size: 16px;
	color: #FFFFFF;
	margin-bottom: 15px;
    text-align: center;
}
	.consultation-form-container .consultation-block .consultation-item-description {
		font-size: 18px;
		line-height: normal;
		margin-bottom: 10px;
	}
	.consultation-form-container .consultation-block .consultation-item:first-child {
		width: 300px;
		height: 200px;
	}
}
@media (max-width: 1200px) {
    .consultation-form-container .consultation-block .consultation-item:nth-child(2) {
		font-size: 30px;
		line-height: 35px;
		height: calc(100% - 20px);
	}
	.consultation-form-container .consultation-block .consultation-item:last-child {
		width: 300px;
		height: calc(100% - 20px);
	}
	.consultation-form-container .consultation-block .consultation-item-text {
		font-size: 24px;
		margin-bottom: 20px;
		padding-top: 0px;
	}
	.consultation-form-container .consultation-block .consultation-item-description {
		font-size: 15px;
		margin-bottom: 10px;
	}
        .consultation-form-container .consultation-block .consultation-item:first-child {
		width: 250px;
		height: 150px;
	}
	.consultation-container-price .consultation-block .consultation-item:first-child {
		width: 240px;
		height: 240px;
	}
	.consultation-form-container {
		margin: 80px auto;
	}
}
@media (max-width: 992px) {
    .consultation-form-container .consultation-block .consultation-item:last-child {
        width: auto;
        height: auto;
    }
    .consultation-form-container .consultation-block .consultation-item:nth-child(2) {
        display: flex;
        align-items: center;
    }
	.consultation-form-container {
		margin: 60px auto;
	}
	.consultation-container-price .consultation-block {
		grid-template-columns: repeat(1, 1fr);
		justify-items: center;
		padding-top: 150px;
    	position: relative;
	}
	.consultation-container-price .consultation-block .consultation-item:nth-child(2) {
        text-align: center;
        width: 250px;
        line-height: normal;
        height: auto;
        position: absolute;
		top: 0;
    }
}
@media (max-width: 768px) {
    .consultation-form-container .consultation-block {
		grid-template-columns: repeat(1, 1fr);
		justify-items: center;
		padding-top: 150px;
    	position: relative;
	}
	.consultation-form-container .consultation-block .consultation-item:nth-child(2) {
        text-align: center;
        width: 250px;
        line-height: normal;
        height: auto;
        position: absolute;
		top: 0;
    }
	.consultation-form-container {
		margin: 40px auto;
	}
}
@media (max-width: 520px) {
    .consultation-form-container .consultation-block .consultation-item:last-child {
        width: 100%;
    }
    .consultation-form-container .consultation-block .consultation-item:first-child {
        width: 200px;
        height: 100px;
        background-position: center;
    }
    .consultation-form-container .consultation-block .consultation-item:nth-child(2) {
        line-height: 35px;
    }
	.consultation-form-container {
		margin: 40px auto;
	}
	.consultation-form-container .consultation-block .consultation-item-text,
    .consultation-container-price .consultation-block .consultation-item-text-nd {
        margin-bottom: 10px;
    }
    .consultation-form-container .consultation-block {
        padding-top: 120px;
    }
	.consultation-container-price .consultation-block .consultation-item-btn {
		width: 100%;
	}
}
header .header-container .header-nav-topmenu .nav-topmenu .dropdown-menu{
	display: none;
}

.show{
	display: block !important;
}
li.nav-item.dropdown {
    display: flex;
    gap: 5px;
}

.bottom-keys-p, .keys-title-p {
    font-weight: bold;
    font-size: 20px;
}

.consent-text" {
color: #000000; 
font-size: 16px; 
line-height: 1.5;
font-family: Arial, sans-serif;
 margin: 0;
}

/* Стили для экранов шириной до 600px */
    @media (max-width: 600px) {
        .consent-text {
            font-size: 14px; /* Уменьшаем размер шрифта на маленьких экранах */
            text-align: center; /* Центрируем текст */
        }

        .consent-text a {
            font-size: 14px; /* Уменьшаем размер шрифта ссылки */
        }
    }

    /* Стили для экранов шириной более 600px */
    @media (min-width: 601px) {
        .consent-text {
            font-size: 16px; /* Оставляем стандартный размер шрифта */
            text-align: left; /* Выравниваем текст по левому краю */
        }

        .consent-text a {
            font-size: 16px; /* Стандартный размер шрифта для ссылки */
        }
    }

.policy-form {
    color: #4E4E4E;
    font-size: 16px;
    line-height: 1.5;
    font-family: Arial, sans-serif;
padding-top: 15px;
}

.policy-form a {
    color: #1E88E5; /* Яркий синий, который хорошо сочетается с серым */
    text-decoration: none;
}

.policy-form a:hover {
    text-decoration: underline;
}


.policy-form a:hover {
    text-decoration: underline;
}
