/*  ==========  INFO  ==========  */
    /* laptop: 1200px */
    /* tablet: 960px */
    /* large-mobile: 640px */
    /* mobile: 480px */
    /* mini-mobile: 320px */
/*  ==========  END INFO  ==========  */






/*  ==========  GLOBAL STYLES  ==========  */
*{
	--color-primary: #d20005;
	--color-primary-rgb: 210, 0, 5;
	--color-secondary: #31A84C;
    --color-accent: #EF2143;
    --color-background: #101828;
    --color-background-light: #F3F6FE;
    --color-border: rgb(30, 41, 57);
    --color-border-light: #CBD5E1;
    --color-dark: #121212;
    
    --color-text-title: #010110;
    --color-text-secondary: rgb(154, 169, 186); /* #64748B; */

    --sistem-red: #EA4353;
    --sistem-green: #65c466;
    --sistem-orange: #f59b26;
    --sistem-blue: #4A90E2;

	--box-shadow: 0 0 20px rgb(95 125 149 / 12%);

    --font-primary: 'Open Sans', sans-serif;
    --font-secondary: 'Geologica', sans-serif;

    margin: 0;
    padding: 0;
}
html{scroll-behavior: smooth;}
body{
    font-family: var(--font-primary);
    background: #101828;
    color: #fff;
}
img{max-width: 100%; max-height: 100%;}
.mark-text{color: var(--color-primary);}
.text-fill{color: var(--color-text-secondary);}

.pad-16{padding: 16px 0;}
.pad-32{padding: 32px 0;}
.pad-64{padding: 64px 0;}
.pad-top-16{padding-top: 16px;}
.pad-top-32{padding-top: 32px;}
.pad-top-64{padding-top: 64px;}
.pad-bottom-16{padding-bottom: 16px;}
.pad-bottom-32{padding-bottom: 32px;}
.pad-bottom-64{padding-bottom: 64px;}

.flex-centered{width: 100%;display: flex;justify-content: center;}
.flex-column{display: flex;flex-direction: column;}
.grid-col-1{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
}
.grid-col-2{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.grid-col-3{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}
@media screen and (max-width: 640px){
    .grid-col-3,
    .grid-col-2{grid-template-columns: 1fr;}
}

.container{
    width: 100%;
    max-width: 1220px;
}
.container-2{
    max-width: 900px;
}
a{text-decoration: none;}

.achor-link{
	display: block;
	opacity: 0;
	width: 100%;
	position: relative;
	top: -150px;
}

@media screen and (max-width: 1220px){
    .container,
	.container-2{
		padding-left: 10px;
		padding-right: 10px;
        box-sizing: border-box;
    }
}
.fullscreen{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
}
.blackout{background: rgba(8,25,43,0.8);}
.fullscreen-centered{
    display: flex;
    align-items: center;
    justify-content: center;
}
/*  ==========  END GENERAL SSTYLES  ==========  */





/*  ==========  COMPONENTS SECTION  ==========  */
.heading-group{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.heading-group .page-header{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.heading-group .page-header .title{
    color: #FFF;
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
}
.heading-group .page-header .sub-title{
    color: var(--color-text-secondary);
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
}
.heading-group .description{
    font-size: 18px;
    line-height: 1.7;
}
@media screen and (max-width: 960px){
    .heading-group .page-header .title{
        font-size: 32px;
    }
}
@media screen and (max-width: 640px){
    .heading-group .page-header .title{
        font-size: 22px;
        text-align: center;
    }
    .heading-group .page-header .sub-title{
        text-align: center;
    }
    .heading-group .description{
        font-size: 14px;
        text-align: center;
    }
}
.button{
    min-width: 45px;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 12px;
    box-sizing: border-box;
    border-radius: 8px;
    background-color: var(--color-background);
    border: 1px solid transparent;
    color: #000;
    font-size: 15px;
    font-weight: 500;
	font-family: var(--font-primary);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
	outline: none;
	border: none;
    letter-spacing: .2px;
}
.button:disabled{
	opacity: .5;
}
.button.button-first{
    color: #fff;
    background: linear-gradient(90deg, #E7052A 0%, #FF5470 100%) !important;
}
.button.button-first:hover{
    opacity: .75;
}
.button.button-second{
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
}
.button.button-second:hover{
    background-color: var(--color-background);
}

.input-wrap{
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
}
.input-wrap .required{
    color: var(--sistem-red);
}
.input-wrap .label{
    height: 24px;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;

    font-size: 16px;
}
.input-wrap input, .input-wrap textarea{
    width: 100%;
    height: 52px;
    padding: 0 16px;
    box-sizing: border-box;
    border: 2px solid var(--color-border-light);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 16px;
    background-color: var(--color-background-light);
    outline: none;
}
.input-wrap input:focus{
    border: 2px solid var(--color-accent);
}
.input-wrap input.invalid-input, .input-wrap textarea.invalid-input{border: 2px solid var(--sistem-red) !important}
.input-wrap textarea{
    max-width: 100%;
    min-width: 100%;
    width: 100%;
    padding: 16px;
    height: auto;
}


.alert-area{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 8px;
}
.alert-area .alert.error{
	color: var(--sistem-red) !important;
}
.alert-area .alert.no_error{
	color: var(--sistem-green) !important;
}
.alert-area .alert{
	text-align: center;
	font-size: 14px;
}

.radio-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.radio-wrap input[type=radio] {
    display: none;
}

.radio-wrap .radio-item .item{
    height: 48px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid var(--color-border-light);
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-primary);
    cursor: pointer;
    user-select: none;
    background-color: #fff;
}

.radio-wrap .radio-item .item::before {
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 9px;
    height: 9px;
    border-radius: 14px;
    background-color: #ccc;
}

/* Checked */
/* .radio-wrap input[type=radio]:checked + .item{
    border-color: var(--color-accent);
} */
.radio-wrap input[type=radio]:checked + .item::before{
    background-color: var(--sistem-green);
}
 
/* Disabled */
.radio-wrap input[type=radio]:disabled + .item{
	opacity: 0.5;
    cursor: not-allowed;
}
@media screen and (max-width: 480px) {
    .radio-wrap{
        flex-direction: column;
    }
    .radio-wrap .radio-item .item{
        width: 100%;
    }
}


.checkbox-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.checkbox-wrap input[type="checkbox"] {
    display: none;
}

.checkbox-wrap .checkbox-item .item{
    height: 48px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid var(--color-border-light);
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-primary);
    cursor: pointer;
    user-select: none;
    background-color: #fff;
}

.checkbox-wrap .checkbox-item .item::before {
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border: 1px solid var(--color-border-light);
    border-radius: 4px;
    background-color: var(--color-background);
    background-color: #fff;
}

/* Checked */
/* .checkbox-wrap input[type="checkbox"]:checked + .item{
    border-color: var(--color-accent);
} */
.checkbox-wrap input[type="checkbox"]:checked + .item::before{
    background-color: var(--sistem-green);

    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath d='m232.49 80.49l-128 128a12 12 0 0 1-17 0l-56-56a12 12 0 1 1 17-17L96 183L215.51 63.51a12 12 0 0 1 17 17Z'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}
 
/* Disabled */
.checkbox-wrap input[type="checkbox"]:disabled + .item{
	opacity: 0.5;
    cursor: not-allowed;
}
@media screen and (max-width: 480px) {
    .checkbox-wrap{
        flex-direction: column;
    }
    .checkbox-wrap .checkbox-item .item{
        width: 100%;
    }
}

#breadcrumbs{
    padding: 15px 0;
}
#breadcrumbs .breadcrumbs-inner{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
#breadcrumbs .breadcrumbs-inner .item{
    display: flex;
    align-items: center;
    padding: 8px 15px;
    box-sizing: border-box;
    border: 1px solid var(--color-border);
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    color: var(--color-text-secondary);
}
#breadcrumbs .breadcrumbs-inner a.item{color: #fff !important;}
#breadcrumbs .breadcrumbs-inner a.item:hover{color: var(--color-accent) !important;}
#breadcrumbs .breadcrumbs-inner .item::after{
    content: '';
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
    width: 13px;
    height: 13px;
    mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 256 256'%3E%3Cpath fill='currentColor' d='m181.66 133.66l-80 80a8 8 0 0 1-11.32-11.32L164.69 128L90.34 53.66a8 8 0 0 1 11.32-11.32l80 80a8 8 0 0 1 0 11.32'/%3E%3C/svg%3E");
    mask-size: contain; /* Чтобы SVG масштабировался внутри элемента */
    mask-repeat: no-repeat;
    background-color: #fff;
}
#breadcrumbs .breadcrumbs-inner .item:last-child::after{display: none;}
/*  ==========  END COMPONENTS SECTION  ==========  */





/*  ==========  OPEN MORE BUTTON SECTION  ==========  */
.open-all-wrap{
    display: flex;
    align-items: center;
    gap: 12px;
}
.open-all-wrap::before{
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: var(--color-border);
}
.open-all-wrap::after{
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: var(--color-border);
}
.open-all-wrap .button.open-all-button{
    padding: 18px 24px;
    background-color: #fff;
    border: 1px solid var(--color-border);
}
.open-all-wrap .button.open-all-button svg{
    width: 20px;
    height: 20px;
}
.open-all-wrap .button.open-all-button:hover{
    color: var(--color-accent);
}
.open-all-wrap .button.open-all-button:hover svg path{
    transition: all .2s ease;
    stroke: var(--color-accent);
}
/*  ==========  END OPEN MORE BUTTON SECTION  ==========  */





/*  ==========  CONTENT LAYOUTS STYLES  ==========  */
.layout-default{
    display: flex;
    gap: 20px;
}
.layout-default .layout-default-main{
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}
.layout-default .layout-default-bar{
    width: 340px;
    min-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.layout-default .layout-default-bar.sticky-wrap{
    position: sticky;
    top: 130px;
}
.layout-default .layout-default-bar .group{
    padding: 20px 24px;
    background-color: #090e1b;
}
.layout-default .layout-default-bar .group .title{
    padding-bottom: 20px;
    font-size: 22px;
    color: var(--color-black);
    font-weight: 600;
}
@media screen and (max-width: 960px){
    .layout-default{
        display: flex;
        flex-direction: column;
    }
    .layout-default .layout-default-bar,
    .layout-default .layout-default-main{width:100%;}
    .layout-default .layout-default-bar.sticky-wrap{position: unset;}
}
/*  ==========  END CONTENT LAYOUTS STYLES  ==========  */





/*  ==========  HEADER SECTION  ==========  */
header{
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
    /* background-color: #010101; */
    background-color: #fff;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--box-shadow);
    transition: all .3s ease;
}
header .menu-icon{
    display: none;
    color: var(--color-text-title);
}
header .header-inner{
    width: 100%;
    padding: 12px 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .logo{
    height: 50px;
    /* filter: brightness(0) invert(1); */
}
header .nav-menu{
    display: flex;
    align-items: center;
    gap: 2px;
}
header .nav-menu .item{
    padding: 8px;
    box-sizing: border-box;
    font-size: 15px;
    font-weight: 600;
    /* color: #fff; */
    color: var(--color-text-title);
    transition: all .3s ease;
    /* text-transform: uppercase; */
}
header .nav-menu .item:hover{
    color: var(--color-accent);
}
header .nav-menu .header-btn{
    display: none;
}
header .header-actions{
    display: flex;
    align-items: center;
    gap: 12px;
}
header .item-dropdown{
    position: relative;
}
header .item-dropdown .body{
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 16px 8px;
    box-sizing: border-box;
    font-size: 15px;
    font-weight: 500;
    /* color: #fff; */
    color: var(--color-text-title);
    cursor: pointer;
    user-select: none;
    transition: all .3s ease;
}
header .item-dropdown .body:hover{
    color: var(--color-accent);
}
header .item-dropdown .dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    /* background-color: var(--color-dark); */
    background-color: #fff;
    box-shadow: var(--box-shadow);
    border-radius: 8px;
    overflow: hidden;
    /* margin-top: 8px; */
    display: none;
    flex-direction: column;
    min-width: 120px;
    max-width: 320px;
    width: max-content;
    z-index: 10;
    padding: 4px;
    box-sizing: border-box;
    /* border: 1px solid var(--color-border); */
    border: 1px solid var(--color-border-light);
}
header .item-dropdown:hover .dropdown{
    display: flex;
}
header .item-dropdown .dropdown .item{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 500;
    /* color: #fff; */
    color: var(--color-text-title);
    transition: all .3s ease;
    border-radius: 5px;
    text-transform: unset;
}
header .item-dropdown .dropdown .item img{
    width: 20px;
    height: auto;
    object-fit: cover;
}
header .item-dropdown .dropdown .item:hover{
    /* background-color: var(--color-background); */
    background-color: var(--color-background-light);
    color: var(--color-accent);
}
header .header-btn{
    padding: 10px 18px;
}


/* header.scrolled{
    background-color: #fff;
}
header.scrolled .logo{
    filter: none;
}
header.scrolled .nav-menu .item{
    color: var(--color-text-title);
}
header.scrolled .item-dropdown .body{
    color: var(--color-text-title);
}
header.scrolled .item-dropdown .dropdown{
    background-color: #fff;
    border-color: var(--color-border-light);
}
header.scrolled .item-dropdown .dropdown .item{
    color: var(--color-text-title);
}
header.scrolled .item-dropdown .dropdown .item:hover{
    background-color: var(--color-background-light);
    color: var(--color-accent);
} */
@media screen and (max-width: 1200px){
    header .menu-icon{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        cursor: pointer;
    }
    header .nav-menu{
        position: absolute;
        top: 100%;
        left: 0;
        flex-direction: column;
        /* background-color: var(--color-dark); */
        background-color: #fff;

        width: 320px;
        z-index: 10;
        padding: 4px;
        box-sizing: border-box;
        /* border: 1px solid var(--color-border); */
        border: 1px solid var(--color-border-light);
        box-shadow: var(--box-shadow);
        border-radius: 0 0 8px 0;

        visibility: hidden;
        opacity: 0;
    }
    header .nav-menu.active{
        visibility: visible;
        opacity: 1;
    }
    header .nav-menu .item-dropdown{
        width: 100%;
    } 
    header .nav-menu .item-dropdown .dropdown{
        position: relative;
        top: unset;
        left: unset;
        box-shadow: none;
        border: none;
        margin-top: 0;
        width: 100%;
        padding-left: 20px;
        max-width: unset;
    }
    header .nav-menu .item{
        width: 100%;
        padding: 12px;
        border-radius: 5px;
    }
    /* header .nav-menu .item:hover{
        background-color: var(--color-background);
    } */
    
    /* header.scrolled .menu-icon{
        color: var(--color-text-title);
    }
    header.scrolled .nav-menu{
        background-color: #fff;
    } */
}
@media screen and (max-width: 640px){
    header .nav-menu{
        width: 100%;
        border-radius: 0;
    }
    header .header-btn{
        display: none;
    }
    header .nav-menu .header-btn{
        display: flex;
        margin: 15px 0;
    }
    header .item-dropdown .dropdown{
        left: auto;
        right: 0;
    }
}
/*  ==========  END HEADER SECTION  ==========  */





/*  ==========  FOOTER SECTION  ==========  */
footer{
    background-color: var(--color-background);
    padding-top: 40px;
    padding-bottom: 20px;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-secondary);
}
footer .footer-inner{
    display: flex;
    flex-direction: column;
    gap: 32px;
}
footer .content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}
footer .logo{
    height: 45px;
    filter: brightness(0) invert(1);
}
footer .nav-menu{
    flex: 1;
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 8px;
}
footer .nav-menu .item{
    padding: 8px 8px;
    transition: .2s;
    font-weight: 500;
    color: var(--color-text-secondary);
}
footer .nav-menu .item:hover{
    color: var(--color-primary);
}
footer .bottom{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}
footer .bottom .dev a{
    padding: 8px;
    box-sizing: border-box;
    color: var(--sistem-blue);
}
footer .bottom .dev a:hover{
    opacity: .82;
}
@media screen and (max-width: 640px){
    footer .content,
    footer .bottom{
        flex-direction: column;
    }
    footer .nav-menu{
        gap: 0;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 22px;
    }
    footer .nav-menu .item{
        padding: 8px 0;
    }
}
/*  ==========  END FOOTER SECTION  ==========  */





/* ========== FILTERS MODAL STYLES ========== */
.modal-wrap{
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 490px;
    min-height: 200px;
    max-height: 90%;
    padding: 20px 42px;
    box-sizing: border-box;
    border-radius: 12px;
    background-color: #fff;
    overflow: hidden;
    position: relative;
    color: #000
}
.modal-wrap .header{
    display: flex;
    gap: 16px;
    width: 100%;
    height: 35px !important;
    padding-right: 40px;
    box-sizing: border-box;
    position: relative;
}
.modal-wrap .header .name{
    height: 35px;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 20px;
    color: var(--color-text-title);
}
.modal-wrap .header .close-item{
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid var(--color-border-light);
}
.modal-wrap .header .close-item i{color: #000}
.modal-wrap .content{
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}
.modal-wrap .content .text-fill{
    font-size: 14px;
}
.modal-wrap .content .button-first{
    width: 100%;
    height: 50px;
}

@media screen and (max-width: 480px){
    .modal-wrap{
        width: 100%;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 22px 22px 0 0;
        padding: 20px 22px;
    }
}
#modal-order-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
/* ========== END FILTERS MODAL STYLES ========== */





/*  ==========  FOOTER SECTION  ==========  */

/*  ==========  END FOOTER SECTION  ==========  */