/*  ==========  INFO  ==========  */
    /* laptop: 1200px */
    /* tablet: 960px */
    /* large-mobile: 640px */
    /* mobile: 480px */
    /* mini-mobile: 320px */
/*  ==========  END INFO  ==========  */






/*  ==========  GLOBAL STYLES  ==========  */
*{
	--color-primary: #15334F;
	--color-primary-rgb: 21, 51, 79;
	--color-secondary: ;
	--color-secondary-rgb: ;
    --color-accent: #2572E7;
    --color-accent-rgb: 37, 114, 231;
    --color-background: #f3f3f3;
    --color-border: #CBD5E1;
    --color-dark: #061124;
    
    --color-text-title: #061124;
    --color-text-secondary: #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: 'Geologica', sans-serif;
    --font-secondary: ;

    margin: 0;
    padding: 0;
}
html{scroll-behavior: smooth;}
body{font-family: var(--font-primary);}
img{max-width: 100%; max-height: 100%;}
.mark-text{color: var(--color-accent);}
.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;
}
.container,
.container-2{
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
}
a{text-decoration: none;}

.achor-link{
	display: block;
	opacity: 0;
	width: 100%;
	position: relative;
	top: -100px;
}
@media screen and (max-width: 640px){
	.page-header{font-size: 30px;}
}
@media screen and (max-width: 480px){
	*{cursor: default !important; }
    .adaptive-padding {padding: 0 0;}
	/* .page-header{font-size: 24px; text-align: center; justify-content: center;}
	.page-sub-header{font-size: 16px; text-align: center;} */
}
.fullscreen{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
}
.fullscreen-centered{
    display: flex;
    align-items: center;
    justify-content: center;
}
.blackout{background: rgba(8,25,43,0.8);}
.spliter{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.spliter span{
	font-size: 14px;
	color: var(--color-text-secondary);
}
.spliter::before,
.spliter::after{
	content: '';
	flex: 1;
	height: 1px;
	background-color: var(--color-border);
	display: block;
}
/*  ==========  END GENERAL STYLES  ==========  */





/*  ==========  COMPONENTS STYLES  ==========  */
.heading-group{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
}
.heading-group .page-header{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.heading-group .page-header .title{
    font-size: 34px;
    font-weight: 600;
    font-family: var(--font-secondary);
}
.heading-group .page-header .sub-title{
    font-size: 18px;
    line-height: 140%;
    font-weight: 400;
}
.heading-group .description{
    font-size: 18px;
    line-height: 1.7;
    font-weight: 300;
}
@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 !important;
    }
    .heading-group .page-header .title,
    .heading-group .page-header .sub-title{
        text-align: center;
    }
    .heading-group .description{
        text-align: center;
        font-size: 14px;
    }
}
.button{
    min-width: 45px;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 4px 19px;
    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-color: var(--color-accent);
}
.button.button-first:hover{
    opacity: .85;
}
.button.button-second{
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
}
.button.button-second:hover{
    background-color: var(--color-background);
}
.button.button-third{
    background-color: #eef3f8;
    color: var(--color-accent);
}
.button.button-iconed{
    padding-right: 4px;
}
.button-iconed .icon{
    display: flex;
    justify-content: center;
    align-items: center;

    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: #fff;
    color: var(--color-text-title);
}
.button-iconed .icon svg{
    width: 18px;
    height: 18px;
}


.input-wrap{
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 100%;
    padding: 7px 15px 10px;
    box-sizing: border-box;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    background-color: #fff;
}
.input-wrap.focused{
    border: 2px solid var(--color-accent);
}
.input-wrap.standard{
    border: none;
    padding: 0;
}
.input-wrap .label{
    line-height: 1.5;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    pointer-events: none;

    font-size: 12px;
    color: var(--color-text-title);
}
.input-wrap .label .required{
    color: var(--sistem-red);
}
.input-wrap input, .input-wrap textarea{
    width: 100%;
    padding: 0;
    font-family: var(--font-secondary);
    font-size: 15px;
    outline: none;
    border: none;
}
.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: 0;
    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);
}
.alert-area .alert.no_error{
	color: var(--sistem-green);
}
.alert-area .alert{
	text-align: center;
	font-size: 14px;
}

.radio-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 8px;
}
.radio-wrap input[type=radio] {
    display: none;
}
.radio-wrap .radio-item .item{
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 18px;
    box-sizing: border-box;
    border-radius: 100px;
    border: 1px solid var(--color-border);
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-primary);
    cursor: pointer;
    user-select: none;
}
.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(--color-accent);
}
 
/* Disabled */
.radio-wrap input[type=radio]:disabled + .item{
	opacity: 0.5;
    cursor: not-allowed;
}

#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;
    background-color: #fff;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--color-text-secondary);
}
#breadcrumbs .breadcrumbs-inner a.item{color: #000 !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;
    background-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");
    background-size: contain; /* Чтобы SVG масштабировался внутри элемента */
    background-repeat: no-repeat;
}
#breadcrumbs .breadcrumbs-inner .item:last-child::after{display: none;}

.not-found{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 50px 15px;
    box-sizing: border-box;
    border-radius: 12px;
    border: 2px dashed var(--color-border);
}
.not-found .image{
    display: flex;
    justify-content: center;
}
.not-found .image svg{
    width: 64px;
    height: 64px;
    color: var(--color-text-secondary);
}
.not-found .title{
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text-title);
    text-align: center;
}
.not-found .description{
    font-size: 15px;
    color: var(--color-text-secondary);
    text-align: center;
}
.not-found .button{
    margin-top: 12px;
    padding: 10px 20px;
}
/*  ==========  END COMPONENTS STYLES  ==========  */





/*  ==========  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;
}
@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 STYLES  ==========  */
header{
    width: 100%;
    background-color: rgba(255 255 255 / 90%);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
}
header .container{
    max-width: 1400px;
}
header .header-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
    box-sizing: border-box;
}
header .logo{
    display: flex;
    align-items: center;
}
header .logo img{height: 40px;}
header .nav-menu{
    display: flex;
    gap: 2px;
}
header .nav-menu .item{
    padding: 8px;
    box-sizing: border-box;
    color: var(--color-text-title);
    font-size: 15px;
    font-weight: 500;
    transition: .3s all;
}
header .nav-menu .item:hover{
    color: var(--color-accent);
}

header .item-dropdown{
    position: relative;
}
header .item-dropdown .item{
    padding: 8px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 6px;
    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: 11;
    padding: 4px;
    box-sizing: border-box;
    /* border: 1px solid var(--color-border); */
    border: 1px solid var(--color-border);
}
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: 15px;
    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);
    color: var(--color-accent);
}
header .header-actions .item-dropdown .dropdown{
    left: unset;
    right: 0;
}
header .header-btn{
    background-color: var(--color-primary) !important;
}
header .header-group{
    display: flex;
    align-items: center;
    gap: 32px;
}
header .header-actions{
    display: flex;
    align-items: center;
    gap: 20px;
}
header .menu-icon{
    display: none;
}
header .nav-menu .secret{
    display: none;
}

@media screen and (max-width: 960px){
    header .menu-icon{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        cursor: pointer;
    }
    header .nav-menu{
        position: absolute;
        top: -400px;
        left: 0;
        flex-direction: column;
        /* background-color: var(--color-dark); */
        background-color: #fff;

        width: 100%;
        z-index: 10;
        padding: 20px 5px;
        box-sizing: border-box;
        /* border: 1px solid var(--color-border); */
        border: 1px solid var(--color-border);
        border-radius: 0 0 8px 0;

        transition: all .2s ease;
    }
    header .nav-menu.active{
        top: 100%;
    }
    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;
    }
}
@media screen and (max-width: 640px){
    header .menu-opened{
        width: 100%;
    }
    header .menu-opened .item{
        text-align: center;
    }
    header .secret{
        display: none;
    }
    header .nav-menu .secret{
        display: flex;
        float: left;
    }
}
/*  ==========  END HEADER STYLES  ==========  */





/*  ==========  FOOTER STYLES  ==========  */
footer{
    padding: 64px 0 28px;
    background: #151515;
    color: #fff;
}
footer .footer-inner{
    display: grid;
    grid-template-columns: minmax(280px, 1.2fr) 2fr;
    gap: 40px;
    align-items: start;
}
footer .about{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
footer .about .logo{
    display: inline-flex;
    height: 45px;
    filter: brightness(50);
    opacity: .8;
}
footer .about .description{
    color: rgba(255,255,255,.76);
    line-height: 1.5;
    font-size: 15px;
    font-weight: 400;
}
footer .nav-group{
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 24px;
    row-gap: 48px;
}
footer .nav-group .column{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
footer .nav-group .title{
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #fff;
    padding-bottom: 12px;
}
footer .nav-group .item{
    font-weight: 300;
    color: rgba(255,255,255,.72);
    line-height: 1.5;
    transition: color .2s ease, opacity .2s ease;
}
footer .nav-group a.item:hover{
    color: #fff;
}
footer .nav-group .contacts .item{
    display: flex;
    gap: 16px;
}
footer .nav-group .contacts .item .text{
    display: flex;
    flex-direction: column;
}
footer .nav-group .contacts .item .value{
    font-weight: 300;
    color: rgba(255,255,255);
    line-height: 1.5;
    transition: color .2s ease, opacity .2s ease;
}
footer .the-end{
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.14);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-weight: 300;
}
footer .the-end .copyright{
    color: rgba(255,255,255,.56);
    font-size: 14px;
}
footer .the-end .developer a{
    color: var(--sistem-blue);
    padding-bottom: 2px;
}
footer .the-end .developer a:hover{
    border-bottom: 1px solid currentColor;
}
@media screen and (max-width: 960px){
    footer .footer-inner{
        grid-template-columns: 1fr;
    }
    footer .nav-group{
        grid-template-columns: repeat(2, 1fr);
    }
    footer .nav-group .contacts{
        grid-column: 1/3;
    }
}
@media screen and (max-width: 640px){
    footer{
        padding: 42px 0 22px;
    }
    footer .footer-inner{
        gap: 28px;
    }
}

/*  ==========  END FOOTER STYLES  ==========  */





/* ========== FILTERS MODAL STYLES ========== */
.modal-wrap{
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 490px;
    min-height: 200px;
    max-height: 90%;
    padding: 30px 26px 42px;
    box-sizing: border-box;
    border-radius: 12px;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}
.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);
}
.modal-wrap .header .close-item i{color: #000}
.modal-wrap .content{
    display: flex;
    flex-direction: column;
    gap: 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 ========== */





/*  ==========  SERVICES STYLES  ==========  */
.hovered-boxes .hovered-boxes-inner{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--color-border);
    border-right: none;
    border-bottom: none;
}
.hovered-boxes .active-background{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: 0.3s;
    filter: saturate(0);
}
.hovered-boxes .item{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 42px;
    box-sizing: border-box;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.hovered-boxes .item:hover{
    background-color: rgba(var(--color-accent-rgb), 0.1);
}
.hovered-boxes .item:nth-child(5){
    grid-column: 1/3;
}

.hovered-boxes .item .mobile-image{
    display: none;
}
.hovered-boxes .item .title{
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
}
.hovered-boxes .item .sub-title{
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}
.hovered-boxes .item .link{
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    color: var(--color-accent);
    text-decoration: none;
}
.hovered-boxes .link:hover{
    opacity: .5;
}
@media screen and (max-width: 640px){
    .hovered-boxes .hovered-boxes-inner{
        display: flex;
        flex-direction: column;
    }
    .hovered-boxes .item .mobile-image{
        display: block;
        width: 100px;
        filter: saturate(0);
    }
    .hovered-boxes .active-background{display: none;}
    .hovered-boxes .item .title{
        font-size: 20px;
    }
    .hovered-boxes .item .sub-title{
        line-height: 1.3;
    }
}
@media screen and (max-width: 480px){
    .hovered-boxes .box{padding: 40px 20px;}
    .hovered-boxes .mobile-img{
        top: unset; 
        left: unset; 
        bottom: 40px;;
        right: 20px;
    }
}
/*  ==========  END SERVICES STYLES  ==========  */





/*  ==========  NEWS SECTION  ==========  */
#news{
    background: linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
}
.news-inner{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.news-inner .card{
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 100%;
    padding: 28px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(12, 23, 35, .06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    overflow: hidden;
}
.news-inner .card:hover{
    transform: translateY(-4px);
    border-color: rgba(35, 67, 103, .18);
    box-shadow: 0 18px 36px rgba(12, 23, 35, .1);
}
.news-inner .card .image-wrap{
    margin: -28px -28px 0;
    height: 220px;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
}
.news-inner .card .image-wrap img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}
.news-inner .card:hover .image-wrap img{
    transform: scale(1.04);
}
.news-inner .card .meta{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #667085;
}
.news-inner .card .tag{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(35, 67, 103, .08);
    color: #234367;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.news-inner .card .title{
    font-size: 20px;
    line-height: 1.35;
}
.news-inner .link{
    margin-top: auto;
    width: fit-content;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    color: var(--color-accent);
    font-weight: 600;
}
.open-all-wrap{
    display: flex;
    justify-content: center;
    margin-top: 32px;
}
@media screen and (max-width: 960px){
    .news-inner{
        grid-template-columns: 1fr;
    }
}
/*  ==========  END NEWS SECTION  ==========  */





/*  ==========  CALCULATION FORM STYLES  ==========  */
#calculation-section{
    background: #eef3f8;
}
#calculation-section .calculation-section-inner{
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 32px;
    box-sizing: border-box;
    border-radius: 12px;
    background-color: #fff;
}
#calculation-form{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-start;
    gap: 32px;
}
#calculation-form .client-info{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
#calculation-form .client-info .input-wrap{
    width: calc((100% - 20px) / 2);
}
#calculation-form .client-info .col-2{
    width: calc((100% - 20px) / 2);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
#calculation-form .client-info .col-2 .input-wrap{
    width: 100%;
}
#calculation-form .order-info{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#calculation-form .order-info .button-wrap{
    display: flex;
    justify-content: flex-end;
}
@media screen and (max-width: 960px){
    #calculation-form{
        display: flex;
        flex-direction: column;
    }
}
@media screen and (max-width: 480px){
    #calculation-section .calculation-section-inner{
        padding: 20px;
    }
    #calculation-form .client-info .input-wrap{
        width: 100%;
    }
    #calculation-form .client-info .col-2{
        width: 100%;
    }
    #calculation-form .order-info{
        width: 100%;
    }
    #calculation-form .order-info .button-wrap .button{
        width: 100%;
    }
    #calculation-form .order-info .radio-wrap{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}
/*  ==========  END CALCULATION FORM STYLES  ==========  */
