*, *::before, *::after {
	padding: 0;
	margin: 0;
	border: 0;
	box-sizing: border-box;
}


:root { 
    --main-width: 1440px; 
    --width-bnr: calc(var(--main-width) - 40%);
    --color_1: #1d5ab5;
    --color_2: #e60012;
}

a {
	text-decoration: none;
}

ul, ol, li {
    list-style: none;
    color: #adadad;
    font-weight: 500;
    line-height: 1.2;
}

img {
	vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
	font-size: inherit;
	font-weight: inherit;
}

.h1 {
    color: #000;
    font-size: clamp(30px, 5vw, 50px);
    margin-bottom: 30px;
    font-weight: 600;
}

html {
	scroll-behavior: smooth;
	scroll-padding: 100px;
}

html, body {
	height: 100%;
	line-height: 1;
	font-size: 16px;
	color: #fff;
	font-family: 'Arial', sans-serif;
}

body._lock {
	overflow: hidden;
}

::placeholder {
    color: #fff;
    font-size: 18px;
}


input {
    width: 100%;
    height: 50px;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 18px;
    margin-bottom: 15px;
    background: unset;
    color: #fff;
    border: 1px solid #fff;
    outline: none;
}

input:focus {
    box-shadow: 0 0 10px #000;
}


textarea {
    width: 100%;
    height: 70px;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 18px;
    margin-bottom: 15px;
    background: unset;
    resize: vertical;
}

select {
	width: 100%;
    height: 40px;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 15px;
    background: #fff;
}

p {
    font-size: 16px;
    line-height: 1.2;
    color: #000;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 11;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10px;
}

.header__logo.mob {
    display: none;
}

.header__container {
    width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    min-height: 100px;
    align-items: center;
}

.header_wrapper {
    display: flex;
    flex-direction: column;
}

.header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
}
.header__logo img {
    width: 40%;
}
.text__logo {
    font-size: 30px;
    font-weight: 800;
    margin-left: 20px;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, var(--color_1), var(--color_2))
}


.boxes_cont {
    display: flex;
    gap: 1em;
    background: var(--color_1);
    padding: 10px 0;
    padding-left: 40px;
    justify-content: space-between;
    position: relative;
}
.boxes_cont:after {
    content: "";
    border-top: 45px solid var(--color_1);
    border-left: 95px solid transparent;
    position: absolute;
    left: -93px;
    top: 0;
}

.boxes_cont:before {
    content: "";
    height: 45px;
    width: 10000px;
    background: var(--color_1);
    position: absolute;
    top: 0;
    left: 99%;
    z-index: -1;
}

.box_cont {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    transition: 0.3s;
}


.text_cont {
    font-size: 18px;
    color: #fff;
    transition: 0.3s;
}

.box_cont:hover .text_cont {text-decoration: underline;} 

.box_soc {
    display: flex;
    align-items: center;
    gap: 1.5em;
}

.box_soc a:hover img {filter: drop-shadow(2px 4px 6px black);}

.header__menu {
    position: relative;
}
.menu__icon {
	display: none;
}
.menu__body {
    display: flex;
    gap: 1em;
    padding: 20px 0;
}.menu__list {}
.menu__list > li {
	position: relative;
	margin: 0px 0px 0px 20px;
}

.menu__link {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.menu__link:hover {
	text-decoration: underline;
}

.btn {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background: var(--color_2);
    border-radius: 8px;
    transition: 0.3s;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: fit-content;
}

.btn:hover {
	background: #000;
	color: #fff;
}

.whatsapp {
	width: 46px;
	cursor: pointer;
}

.whatsapp img {
	width: 100%;
}


/* ----------------------------------------------- */ 

body._touch .menu__list > li {
	display: flex;
	align-items: center;
}

body._touch .menu__link {
	flex: 1 1 auto;
}

body._touch .menu__arrow {
	display: block;
	width: 0;
	height: 0;
	margin: 0px 0px 0px 5px;
	transition: transform 0.3s ease 0s;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 10px solid #fff;
}

body._touch .menu__list > li._active:hover .menu__sub-list {
	opacity: 1;
	visibility: visible;
	transform: translate(0px, 0px);
	pointer-events: all;
}

body._touch .menu__list > li._active:hover .menu__arrow {
	transform: rotate(180deg);
}


/* ----------------------------------------------- */


@media (min-width: 1023px) {
	.menu__list {
	    display: flex;
	    align-items: center;
	    justify-content: space-between;
	}
	.menu__list > li {
		padding: 10px 0;
	}
}

@media (max-width: 1023px) {
	.menu__icon {
		z-index: 5;
		display: block;
		position: relative;
		width: 30px;
		height: 18px;
		cursor: pointer;
	}


	.menu__icon span, .menu__icon::before, .menu__icon::after {
	    content: "";
	    left: 0;
	    position: absolute;
	    height: 20%;
	    width: 100%;
	    transition: all 0.3s ease 0s;
	    background-color: #fff;
	    border-radius: 2px;
	}

	.menu__icon::before {
		top: 0;
	}


	.menu__icon::after {
		bottom: 0;
	}

	.menu__icon span {
		top: 50%;
		transform: scale(1.0) translate(0px, -50%);
	}


	.menu__icon._active span {
		transform: scale(0) translate(0px, -50%);

	}

	.menu__icon._active::before {
		top: 50%;
		transform: rotate(-45deg) translate(0px, -20%);
	}

	.menu__icon._active::after {
		top: 50%;
		transform:  rotate(45deg) translate(0px, -50%);
	}

	.circle {
        position: fixed;
        top: 5px;
        right: 20px;
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 20;
        border-radius: 50%;
        background-image: linear-gradient(to right, var(--color_1), var(--color_2));
    }


	.header__container {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.9);
		padding: 100px 30px 30px 30px;
		transition: left 0.3s ease 0s;
		overflow: auto;
		display: flex;
		flex-direction: column;
	}

	.header__container._active {
		left: 0;
	}

    .header__container._active .header__logo,
    .header__container._active .menu__body .btn
     {
        display: none;
    }


	.menu__list > li {
        flex-wrap: wrap;
        margin: 0px 0px 20px 0px;
        text-align: center;
        
    }

    .menu__list > li:not(:last-child) {
        border-bottom: 1px solid #fff;
        padding-bottom: 15px;
    }

	.menu__list > li._active .menu__sub-list {
		display: block;
	}

	.menu__list > li:last-child {
		margin-bottom: 0;
	}



	.menu__link {
		font-size: 24px;
	}
	.menu__sub-list {
		position: relative;
		background-color: #fff;
		flex: 1 1 100%;
		display: none;
	}

	.menu__sub-link {
		font-size: 20px;
		color: #000;
	}
	.tel, .mail  {
		display: block !important;
	}
}

.main {
	width: var(--main-width);
}

.btn.tel {
    background: none;
    position: absolute;
    bottom: -31px;
    right: -95px;
    font-size: 20px;
    transition: 0.3s;
    padding: 15px;
}
.btn.tel:hover {text-decoration: underline;}

.btn.btn_login {
    background: none;
    border: 1px solid #fff;
    text-transform: uppercase;
}
.btn.btn_login:hover {border: 1px solid #717171; color: #717171;}


.bnr {
    display: flex;
    padding-top: 100px;
    justify-content: center;
    align-items: center;
    height: 800px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.bnr .main {
    flex-direction: row;
    height: 100%;
}

.img_1-bnr {
    width: 60%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    z-index: -1;
}

.img_2-bnr {
    width: 40%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 60%;
    z-index: -1;
}

.left_box-dvl {
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    width: 60%;
}
.bnr_main {
    margin-bottom: 50px;
}
.title_bnr {
    font-size: clamp(50px, 3vw, 50px);
    color: #fff;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0px 0px 3px #000, 0px 0px 3px #000;
}
.subtitle_bnr {
    color: #fff;
}
.rigth_box-dvl {
    width: 40%;
    position: absolute;
    left: calc(60% + 30px);
}
.form {
    display: flex;
    flex-direction: column;
    width: 90%;
}
.subtit_form {
    color: #fff;
}
.tit_form {
    color: #fff;
    font-size: clamp(25px, 3vw, 40px);
    font-weight: 600;
    margin: 20px 0;
    line-height: 1;
}

.box_input {
    display: flex;
    gap: 1em;
}


.delivery {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}
.box_h1 {
    display: flex;
    flex-direction: column;
}

.boxes_dvl {
    display: grid;
    gap: 1em;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.box_dvl {
    display: flex;
    flex-direction: column;
    gap: 1em;
    border-radius: 12px;
    background: #f2f2f2;
    padding: 60px 40px 30px 40px;
    transition: 0.3s;
}

.box_dvl:hover.box_1 {
    background: url(../img/dvl_fon_1.webp);
    background-size: cover;
    background-repeat: no-repeat;
}
.box_dvl:hover.box_2 {
    background: url(../img/dvl_fon_1.webp);
    background-size: cover;
    background-repeat: no-repeat;
}
.box_dvl:hover.box_3 {
    background: url(../img/dvl_fon_1.webp);
    background-size: cover;
    background-repeat: no-repeat;
}
.box_dvl:hover.box_4 {
    background: url(../img/dvl_fon_1.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.circle_dvl {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--color_1);
}

.box_dvl:hover .circle_dvl {background: #ffffff}

.circle_dvl img {
    filter: brightness(0) invert(1);
    width: 42px;
}

.box_dvl:hover .circle_dvl img {filter: brightness(1) invert(0);}

.tit_dvl {
    font-size: clamp(20px, 2vw, 35px);
    font-weight: 600;
}
.subtit_dvl {
    font-size: clamp(14px, 2vw, 20px);
    font-weight: 600;
}
.text_dvl {
    font-weight: 600;
    color: var(--color_2);
}

hr {
    width: 100%;
    height: 1px;
    background: #cccccc;
    margin: 20px 0;
}
.link_dvl {
    color: var(--color_1);
    text-transform: uppercase;
    font-weight: 500;
    background: none;
    cursor: pointer;
}

.box_dvl:hover p, .box_dvl:hover .link_dvl {color: #fff}


.bnr_2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 0;
    background: url(../img/bnr_2.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bnr_2 .main {
    display: flex;
    justify-content: flex-end;
}

.box_bnr-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60%;
    gap: 0.5em;
}
.text_bnr_2 {
    font-size: 30px;
    color: #fff;
}
.btn_bnr_2 {
    transition: 0.3s;
    margin-top: 20px;
    background: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
}

.btn_bnr_2:hover {
    box-shadow: 0 0 10px #000;
}


.advantages{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    background: url(../img/adv_fon.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.boxes_adv {
    display: flex;
    justify-content: center;
    column-gap: 1%;
    row-gap: 1em;
    flex-wrap: wrap;
}
.box_adv {
    background: #fff;
    border-radius: 12px;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    gap: 1em;
    transition: 0.3s;

}
.box_adv.big {
    width: 54%;
}
.tit_adv {
    font-size: clamp(25px, 3vw, 40px);
    font-weight: 600;
    text-transform: uppercase;
}
.btn_adv {
    transition: 0.3s;
    width: 48px;
    height: 48px;
    background: url(../img/arrow_red.png);
}

.btn_adv_2 {
    transition: 0.3s;
    width: fit-content;
    height: 48px;
    line-height: 48px;
    background-color: red;
    border-radius: 24px;
    color: white;
    padding: 0px 10px;
}
.btn_adv_2.btn_adv_3 {
    background-color: #3861b4;
}
.box_adv.small {
    width: 45%;
}

.box_adv:hover {
    background: var(--color_1);
    p, li {color: #fff};
    .btn_adv {
        background: url(../img/arrow_trans.png);
    }
}


.our_adv {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 90px 0;
}

.box_our-adv {
    display: grid;
    padding: 20px 0;
    gap: 1%;
    grid-template-columns: 7% 1fr 138px;
    align-items: center;
    cursor: pointer;
    border-top: 1px solid #f2f2f2;
}



.box_our-adv:last-child {
    border-bottom: 1px solid #f2f2f2;
}
.numb {
    color: #cccccc;
    font-size: clamp(20px, 3vw, 60px);
    font-weight: 600;
    transition: 0.3s;
}

.box_our-adv:hover .numb {
    color: var(--color_1);
}

.text_our-adv {
    font-weight: 600;
    font-size: clamp(18px, 3vw, 30px);
}
.box_arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: 0.3s;
}

.box_our-adv:hover .box_arrow {
    transform: rotate(-45deg);
}

.box_our-adv:hover .box_arrow svg>* {
    stroke: var(--color_1);
}

.application {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}
.img_app {
    position: absolute;
    right: 50%;
    z-index: -1;
}
.img_app_2 {
     position: absolute;
    left: 50%;
    z-index: -1;
}
.application .main {
    display: flex;
    justify-content: flex-end;
}
.form_2 {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding-left: 40px;
}

.form_2 input {
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: unset;

}

.form_2 textarea {
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: unset;
    outline: none;
    color: #fff;
}

.form_2 input:focus {
    box-shadow: 0px 5px 7px -5px #000;
}

.form_2 textarea:focus {box-shadow: 0px 5px 7px -5px #000;}

.form_2 .boxes_input {
    display: flex;
    flex-direction: column;
    gap: 1em;
}


.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #040c17;
}
.boxes_footer {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1em;
    padding: 60px 0;
}
.box_footer {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.box_footer p {
    color: #fff;
}

.box_footer .tel {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
}

.box_footer .email {
    font-size: 18px;
    text-decoration: underline;
    color: #fff;
}

.tit_footer {
    font-size: 30px;
    font-weight: 600;
}

.tit_f {
    font-size: 24px;
    font-weight: 600;
}
.box_soc-f {
    display: flex;
    gap: 0.5em;
}

.box_soc-f a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.box_soc-f a:hover {box-shadow: 0 0 10px #fff}

.text_bottom {
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #363d45;
}

/*---------------Модальное окно----------------*/

.modal {
    display: none;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
    background: #000c;

}

.modal.active {
    display: flex;
}

.modal .h1 {
    margin-top: 0px;
}

.modal_box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 600px;
    background: #fff;
    margin: 0 auto;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    z-index: 1001;
    background: var(--color_1);
}

.modal .form_3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;

}

.tit_modal {
    font-size: clamp(18px, 3vw, 30px);
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.modal input {
    margin-bottom: 15px;

}

.modal textarea {border: 1px solid #fff;}

.close_box {
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 20px;
    margin-top: 20px;
    margin-right: 10px;
}

.close {
    display: block;
    width: 20px;
    height: 3px;
    border-radius: 2px;
    background:#fff;
    transform: rotate(45deg);
    cursor: pointer;
}


.close:after {
    content: '';
    display: block;
    width: 20px;
    height: 3px;
    border-radius: 2px;
    background:#fff;
    transform: rotate(270deg);
}


.lock {overflow: hidden;}

.messenger-picker {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 1200;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.messenger-picker.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, calc(-100% - 12px));
}

.messenger-picker:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -7px;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.08);
}

.messenger-picker__item {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--color_1);
    color: #fff;
    font-family: inherit;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.messenger-picker__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(255, 76, 92, 0.28);
}

.messenger-picker__item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.messenger-picker__item span {
    transform: translateY(-1px);
}

.wechat-qr-modal {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.72);
}

.wechat-qr-modal[hidden],
.messenger-picker[hidden] {
    display: none;
}

.wechat-qr-modal__content {
    position: relative;
    width: min(92vw, 420px);
    padding: 24px;
    border-radius: 20px;
    background: #fff;
    text-align: center;
}

.wechat-qr-modal__title {
    margin: 0 0 18px;
    color: var(--color_1);
    font-size: 24px;
    font-weight: 700;
}

.wechat-qr-modal__image {
    display: block;
    width: 100%;
    max-width: 340px;
    height: auto;
    margin: 0 auto;
}

.wechat-qr-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--color_1);
    cursor: pointer;
}

.wechat-qr-modal__close:before,
.wechat-qr-modal__close:after {
    content: '';
    position: absolute;
    left: 9px;
    top: 16px;
    width: 16px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
}

.wechat-qr-modal__close:before {
    transform: rotate(45deg);
}

.wechat-qr-modal__close:after {
    transform: rotate(-45deg);
}

@media screen and (max-width: 480px) {
    .messenger-picker {
        gap: 8px;
        max-width: calc(100vw - 24px);
        padding: 8px;
    }

    .messenger-picker__item {
        width: 42px;
        height: 42px;
        font-size: 21px;
    }

    .messenger-picker__item img {
        width: 22px;
        height: 22px;
    }

    .wechat-qr-modal__content {
        padding: 20px 16px 16px;
    }

    .wechat-qr-modal__title {
        padding: 0 34px;
        font-size: 20px;
    }
}
